/*
Theme Name: JJ Commercial Cleaning Corp
Theme URI: https://jjcommercialcleaning.com
Author: Ismail Touati
Description: Custom WordPress theme for J&J Commercial Cleaning Corp.
Version: 1.0
Text Domain: jj-theme
*/


/* =========================
   JJ HEADER
========================= */
.jj-header{
  background:#fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 26px rgba(0,0,0,.08);
}

.jj-header-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 28px;
}

/* Logo */
.jj-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.jj-logo img{
  height: 85px;              /* adjust ONLY if needed */
  width: auto;
  display:block;
}

/* Nav */
.jj-nav{
  display:flex;
  align-items:center;
  gap: 36px;
  white-space: nowrap;
}

.jj-nav-link{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;          /* ✅ was 700 */
  color: #0f2340;
  text-decoration:none;
  font-size: 16px;           /* ✅ was 18px */
}
.jj-nav-link:hover{
  opacity: .8;
}

/* Call Now */
.jj-call{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;          /* ✅ was 800 */
  color:#0f2340;
  text-decoration:none;
  font-size: 16px;           /* ✅ was 18px */
}
.jj-phone{
  font-size: 16px;           /* ✅ was 18px */
  line-height: 1;
}

/* CTA Button */
.jj-quote-btn{
  background: #2f79ff;
  color:#fff;
  padding: 14px 24px;        /* ✅ slightly smaller */
  border-radius: 12px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;          /* ✅ was 900 */
  text-decoration:none;
  font-size: 16px;           /* ✅ was 18px */
  box-shadow: 0 14px 30px rgba(47,121,255,.28);
}
.jj-quote-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(47,121,255,.32);
}

/* Small screens */
@media (max-width: 980px){
  .jj-header-inner{ flex-wrap: wrap; }
  .jj-nav{ flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
  .jj-logo img{ height: 58px; }
  .jj-nav-link, .jj-call, .jj-quote-btn{ font-size: 15px; } /* ✅ slightly smaller */
  .jj-quote-btn{ padding: 12px 18px; }
}






/* =========================
   HOME HERO
========================= */
.jj-hero{
  background: radial-gradient(1200px 600px at 30% 10%, rgba(47,121,255,.12), transparent 55%),
              radial-gradient(900px 520px at 70% 30%, rgba(250,197,80,.14), transparent 52%),
              #f4f7fb;
  padding: 56px 0 70px;
}

.jj-hero-inner{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  align-items:center;
  gap: 46px;
}

/* Left */
.jj-hero-title{
  margin: 0 0 18px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(44px, 4.4vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #0f2340;
}

.jj-hero-sub{
  margin: 0 0 26px;
  max-width: 640px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(15,35,64,.62);
}

/* Buttons */
.jj-hero-actions{
  display:flex;
  gap: 18px;
  align-items:center;
  margin-bottom: 34px;
}

.jj-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  border-radius: 12px;
  text-decoration:none;
  padding: 16px 26px;
  font-size: 18px;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap;
}

.jj-btn-primary{
  background: #2f79ff;
  color:#fff;
  box-shadow: 0 16px 34px rgba(47,121,255,.25);
}
.jj-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(47,121,255,.30);
}

.jj-btn-outline{
  background:#fff;
  color:#0f2340;
  border: 2px solid rgba(15,35,64,.14);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.jj-btn-outline:hover{
  transform: translateY(-1px);
}

/* Feature cards row */
.jj-hero-features{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 680px;
}

.jj-feature{
  background:#fff;
  border: 1px solid rgba(15,35,64,.08);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height: 120px;
}

.jj-dot{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.jj-dot-blue{ background:#2f79ff; }
.jj-dot-gold{ background:#f2bf4a; }

.jj-feature-text{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  color:#0f2340;
  font-size: 16px;
  line-height: 1.2;
}

/* Right image */
.jj-hero-right{
  display:flex;
  justify-content:flex-end;
}
.jj-hero-img{
  width: 100%;
  max-width: 860px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  display:block;
}

/* Responsive */
@media (max-width: 980px){
  .jj-hero-inner{ grid-template-columns: 1fr; }
  .jj-hero-right{ justify-content: center; }
  .jj-hero-features{ grid-template-columns: repeat(2, 1fr); }
}




/* =========================
   SECTION 2: SERVICES
========================= */
.jj-services{
  background:#fff;
  padding: 74px 0 84px;
}

.jj-services-head{
  text-align:center;
  margin-bottom: 34px;
}

.jj-services-title{
  margin: 0 0 8px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.3px;
  color:#0f2340;
}

.jj-services-sub{
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2px;
  color: rgba(47,121,255,.75);
}

.jj-services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1160px;
  margin: 0 auto;
}

.jj-service-card{
  background:#f4f7fb;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 14px 26px rgba(15,35,64,.10);
}

.jj-service-img img{
  width:100%;
  height: 182px;
  object-fit: cover;
  display:block;
}

.jj-service-body{
  padding: 20px 22px 22px;
}

.jj-mini{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.jj-mini-blue{ background:#2f79ff; }
.jj-mini-gold{ background:#f2bf4a; }

.jj-service-name{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 16px;
  color:#0f2340;
}

.jj-service-desc{
  margin: 0 0 14px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(15,35,64,.55);
  max-width: 92%;
}

.jj-service-link{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 11px;
  color:#2f79ff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 6px;
}

.jj-service-link span{
  font-size: 14px;
  transform: translateY(1px);
}

.jj-service-link:hover{
  opacity:.85;
}

/* Responsive */
@media (max-width: 980px){
  .jj-services-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .jj-services-grid{ grid-template-columns: 1fr; }
}






/* =========================
   SECTION 4: WHY CHOOSE 
========================= */
.jj-why{
  padding: 70px 0 90px;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(255,255,255,.08), transparent 55%),
    radial-gradient(1200px 650px at 50% 0%, rgba(0,0,0,.18), transparent 60%),
    #0c2440;
}

.jj-why-head{
  text-align:center;
  margin-bottom: 34px;
}

.jj-why-title{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 34px;
  color:#fff;
}

.jj-why-sub{
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}

.jj-why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 44px auto 0;
}

.jj-why-card{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 26px 20px 22px;
  text-align:center;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
}

.jj-why-icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 16px;
  font-size: 22px;
  color:#fff;
}

.jj-why-blue{ background:#2f79ff; }
.jj-why-gold{ background:#f2bf4a; color:#0b1a2b; }

.jj-why-card-title{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  color:#fff;
}

.jj-why-card-text{
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  max-width: 92%;
  margin-left:auto;
  margin-right:auto;
}

.jj-why-foot{
  margin: 40px auto 0;
  max-width: 980px;
  text-align:center;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
}

/* Responsive */
@media (max-width: 1100px){
  .jj-why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .jj-why-grid{ grid-template-columns: 1fr; }
}


/* =========================
   SECTION 5: CTA BAND
========================= */
.jj-cta-band{
  background: #4d97ff;
  padding: 54px 0 56px;
}

.jj-cta-band-inner{
  text-align:center;
}

.jj-cta-title{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.08;
  color:#fff;
}

.jj-cta-sub{
  margin: 0 auto 18px;
  max-width: 760px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(255,255,255,.9);
}

.jj-cta-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 16px;
  margin: 18px 0 14px;
}

.jj-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 11px;
  text-decoration:none;
  transition: transform .15s ease, opacity .15s ease;
  white-space: nowrap;
}

.jj-cta-btn:hover{ transform: translateY(-1px); }

.jj-cta-btn-light{
  background:#fff;
  color:#2f79ff;
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.jj-cta-btn-outline{
  background: transparent;
  color:#fff;
  border: 1px solid rgba(255,255,255,.85);
}

.jj-cta-foot{
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 9.5px;
  color: rgba(255,255,255,.9);
}

/* Responsive */
@media (max-width: 560px){
  .jj-cta-actions{ flex-direction: column; }
}



/* =========================
   SECTION 6: FAQ 
========================= */
.jj-faq{
  background:#fff;
  padding: 70px 0 86px;
}

.jj-faq-head{
  text-align:center;
  margin-bottom: 26px;
}

.jj-faq-title{
  margin: 0 0 8px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.2px;
  color:#0f2340;
}

.jj-faq-sub{
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(47,121,255,.75);
}

/* Wrapper centered like screenshot */
.jj-faq-wrap{
  max-width: 720px;
  margin: 34px auto 0;
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.jj-faq-item{
  background:#f4f7fb;
  border-radius: 10px;
  border: 1px solid rgba(15,35,64,.12);
  box-shadow: 0 10px 22px rgba(15,35,64,.10);
  overflow:hidden;
}

/* Question row */
.jj-faq-q{
  width:100%;
  border:0;
  cursor:pointer;
  background: transparent;
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  text-align:left;

  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 13px;
  color:#0f2340;
}

.jj-faq-arrow{
  color:#2f79ff;
  font-size: 18px;
  line-height: 1;
  transition: transform .18s ease;
}

/* Answer */
.jj-faq-a{
  display:none;
  padding: 0 18px 16px 18px;

  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(15,35,64,.55);
}

/* Open state */
.jj-faq-item.is-open .jj-faq-a{
  display:block;
}
.jj-faq-item.is-open .jj-faq-arrow{
  transform: rotate(180deg);
}



/* =========================
   FOOTER
========================= */
.jj-footer2{
  background: #0c2440;
  color: rgba(255,255,255,.86);
  padding: 54px 0 30px;
}

.jj-footer2-inner{
  display:grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
  gap: 70px;
  align-items:start;
}

/* Brand col */
.jj-foot-logo{
  width: 270px;
  height: auto;
  display:block;
  margin-bottom: 16px;
}

.jj-foot-desc{
  margin: 0 0 18px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}

/* Social icons squares */
.jj-foot-social{
  display:flex;
  gap: 14px;
}

.jj-social{
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .2px;
}

.jj-social:hover{ opacity:.85; }

/* Titles */
.jj-foot-title{
  margin: 6px 0 16px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 22px;
  color:#fff;
}

/* Lists */
.jj-foot-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.jj-foot-list a{
  text-decoration:none;
  color: rgba(255,255,255,.82);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.jj-foot-list a:hover{ opacity:.85; }

/* Contact */
.jj-foot-contact{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.jj-contact-row{
  display:flex;
  align-items:center;
  gap: 14px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: rgba(255,255,255,.86);
}

.jj-contact-row a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}
.jj-contact-row a:hover{ opacity:.85; }

.jj-ci{
  width: 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: #2f79ff; /* blue icons */
}

/* Divider line */
.jj-foot-divider{
  margin: 46px 0 22px;
  height: 1px;
  background: rgba(255,255,255,.12);
}

/* Bottom row */
.jj-foot-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding-bottom: 6px;
}

.jj-foot-copy{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

.jj-foot-legal{
  display:flex;
  gap: 34px;
}

.jj-foot-legal a{
  text-decoration:none;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255,255,255,.72);
}
.jj-foot-legal a:hover{ opacity:.85; }

/* Responsive */
@media (max-width: 1100px){
  .jj-footer2-inner{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .jj-foot-logo{ width: 240px; }
}
@media (max-width: 640px){
  .jj-footer2-inner{ grid-template-columns: 1fr; }
  .jj-foot-bottom{ flex-direction: column; align-items:flex-start; }
}






/* =========================
   SERVICES PAGE (SLIM + FANCY)
========================= */
.jj-services-hero{
  position: relative;
  padding: 72px 0 70px;
  background: #f4f7fb;
  overflow: hidden;
}

/* Background image */
.jj-services-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("./images/services-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: .18;              /* ✅ low opacity image */
  z-index: 0;
}

/* Gradient overlay (fade RIGHT -> LEFT, low opacity) */
.jj-services-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to left,
    rgba(244,247,251,.82) 0%,
    rgba(244,247,251,.55) 45%,
    rgba(244,247,251,.20) 100%
  );
  opacity: .85;              /* ✅ keep low-ish so image still visible */
  z-index: 0;
}

/* Content above overlay */
.jj-services-hero-inner{
  position: relative;
  z-index: 1;
}

/* Heading area */
.jj-services-hero-head{
  text-align:center;
  margin-bottom: 30px;
}

.jj-services-hero-title{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;          /* ✅ slim fancy (not 900) */
  font-size: 42px;
  letter-spacing: -0.4px;
  color:#0f2340;
}

.jj-services-hero-sub{
  margin: 0 auto 18px;
  max-width: 760px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;          /* ✅ not bold */
  font-size: 14px;
  color: rgba(15,35,64,.62);
}

/* Actions: reuse buttons but keep them slim */
.jj-services-hero-actions{
  display:flex;
  justify-content:center;
  gap: 16px;
}

/* Grid on page (same cards size as home) */
.jj-services-page-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1160px;
  margin: 34px auto 0;
}

/* Keep cards visible */
.jj-services-page-grid .jj-service-card{
  background:#f4f7fb;
  border: 1px solid rgba(15,35,64,.10);
}

@media (max-width: 980px){
  .jj-services-page-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .jj-services-page-grid{ grid-template-columns: 1fr; }
  .jj-services-hero-title{ font-size: 34px; }
}








/* =========================
   ABOUT PAGE
========================= */
.jj-about-hero{
  position: relative;
  padding: 92px 0 96px;
}

.jj-about-hero-inner{
  position: relative;
}

.jj-about-hero-content{
  max-width: 820px;
}

.jj-about-hero-title{
  margin: 0 0 12px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800; /* slim fancy */
  font-size: 46px;
  line-height: 1.08;
  color:#fff;
  letter-spacing: -0.5px;
}

.jj-about-hero-sub{
  margin: 0 0 22px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 720px;
}

.jj-about-hero-actions{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* About section */
.jj-about-section{
  background:#fff;
  padding: 70px 0 80px;
}

.jj-about-grid{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items:start;
}

.jj-about-title{
  margin: 0 0 12px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  color:#0f2340;
}

.jj-about-p{
  margin: 0 0 14px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(15,35,64,.62);
}

.jj-about-bullets{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.jj-about-bullet{
  background:#f4f7fb;
  border: 1px solid rgba(15,35,64,.10);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color:#0f2340;
}

/* Right card */
.jj-about-card{
  background:#f4f7fb;
  border: 1px solid rgba(15,35,64,.10);
  border-radius: 14px;
  padding: 22px 22px;
  box-shadow: 0 14px 26px rgba(15,35,64,.08);
}

.jj-about-card-title{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color:#0f2340;
}

.jj-about-card-p{
  margin: 0 0 18px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(15,35,64,.62);
}

.jj-about-mini-cta{
  display:inline-flex;
  text-decoration:none;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  color:#2f79ff;
}

.jj-about-mini-cta:hover{ opacity:.85; }

/* About why trust */
.jj-about-why{
  background:#fff;
  padding: 10px 0 80px;
}

.jj-about-why-head{
  text-align:center;
  margin-bottom: 26px;
}

.jj-about-why-title{
  margin: 0 0 8px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  color:#0f2340;
}

.jj-about-why-sub{
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(47,121,255,.75);
}

.jj-about-why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.jj-about-why-item{
  background:#f4f7fb;
  border: 1px solid rgba(15,35,64,.10);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 14px 26px rgba(15,35,64,.08);
  text-align:left;
}

.jj-about-why-item h4{
  margin: 12px 0 8px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;
  color:#0f2340;
}

.jj-about-why-item p{
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(15,35,64,.62);
}

@media (max-width: 980px){
  .jj-about-grid{ grid-template-columns: 1fr; }
  .jj-about-why-grid{ grid-template-columns: 1fr; }
  .jj-about-hero-title{ font-size: 36px; }
}








/* =========================
   CONTACT PAGE (SLICK + FANCY)
========================= */

/* HERO */
.jj-contact-hero{
  position: relative;
  padding: 92px 0 88px;
  overflow: hidden;
}

.jj-contact-hero-inner{
  position: relative;
}

.jj-contact-hero-content{
  max-width: 860px;
}

.jj-contact-hero-badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .4px;
  margin-bottom: 14px;
}

.jj-contact-hero-title{
  margin: 0 0 12px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.05;
  color:#fff;
  letter-spacing: -0.6px;
}

.jj-contact-hero-sub{
  margin: 0 0 20px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
  max-width: 720px;
}

.jj-contact-hero-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* CONTENT */
.jj-contact-section{
  background:#fff;
  padding: 54px 0 86px;
}

.jj-contact-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items:start;
}

/* LEFT CARD */
.jj-contact-card{
  background:#f4f7fb;
  border: 1px solid rgba(15,35,64,.10);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 26px rgba(15,35,64,.08);
}

.jj-contact-card-title{
  margin: 0 0 8px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color:#0f2340;
}

.jj-contact-card-sub{
  margin: 0 0 16px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(15,35,64,.62);
}

/* RIGHT SIDE */
.jj-contact-side{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.jj-contact-info{
  background:#f4f7fb;
  border: 1px solid rgba(15,35,64,.10);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 26px rgba(15,35,64,.08);
}

.jj-contact-side-title{
  margin: 0 0 14px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color:#0f2340;
}

.jj-contact-row2{
  display:flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(15,35,64,.08);
}
.jj-contact-row2:first-of-type{ border-top: 0; padding-top: 0; }

.jj-ci2{
  width: 24px;
  color:#2f79ff;
  font-size: 16px;
}

.jj-contact-label{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: rgba(15,35,64,.55);
  margin-bottom: 3px;
}

.jj-contact-value{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color:#0f2340;
}

.jj-contact-value a{
  color:#0f2340;
  text-decoration:none;
}
.jj-contact-value a:hover{ opacity:.85; }

/* MAP */
.jj-contact-map{
  background:#f4f7fb;
  border: 1px solid rgba(15,35,64,.10);
  border-radius: 16px;
  overflow:hidden;
  height: 320px;
  box-shadow: 0 14px 26px rgba(15,35,64,.08);
}

.jj-map-placeholder{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  gap: 10px;
}

.jj-map-pill{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47,121,255,.12);
  border: 1px solid rgba(47,121,255,.18);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  color:#2f79ff;
}

.jj-map-hint{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(15,35,64,.55);
}

/* CF7 (keep it sleek) */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,35,64,.18);
  background:#fff;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  outline: none;
}

.wpcf7 textarea{
  min-height: 130px;
  resize: vertical;
}

.wpcf7 input[type="submit"]{
  width: 100%;
  margin-top: 10px;
  background:#2f79ff;
  color:#fff;
  border:0;
  border-radius: 12px;
  padding: 12px 18px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 13px;
  cursor:pointer;
}

.wpcf7 input[type="submit"]:hover{ opacity:.92; }

/* Responsive */
@media (max-width: 980px){
  .jj-contact-grid{ grid-template-columns: 1fr; }
  .jj-contact-hero-title{ font-size: 36px; }
}
