
  :root {
    --indigo: #27187e;
    --indigo-dark: #1a105a;
    --indigo-mid: #1e1465;
    --indigo-hover: #32209e;
    --blue: #758bfd;
    --blue-light: #9aaafe;
    --periwinkle: #aeb8fe;
    --periwinkle-bg: #eef0ff;
    --platinum: #f1f2f6;
    --platinum-dark: #e2e4ef;
    --orange: #ff8600;
    --orange-light: #ffa033;
    --orange-pale: #fff4e6;
    --white: #fff;
    --text-dark: #0f0d2e;
    --text-body: #3d3a6b;
    --text-muted: #6e6a9e;
    --text-dim: #9d9abe;
    --border: #dddff0;
    --border-light: #eceef8;
    --green: #10b981;
    --red: #ef4444;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(39, 24, 126, 0.07);
    --shadow-md: 0 6px 24px rgba(39, 24, 126, 0.10);
    --shadow-lg: 0 16px 48px rgba(39, 24, 126, 0.13);
    --shadow-blue: 0 8px 32px rgba(117, 139, 253, 0.25);
    --shadow-ora: 0 8px 32px rgba(255, 134, 0, 0.30);
    --font-display: var(--font-poppins), 'Poppins', sans-serif;
    --font-body: var(--font-poppins), 'Poppins', sans-serif;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

html {
  scroll-padding-top: 140px; /* urgency-bar + navbar-top + services-nav height */
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 120px;
  }
}

  body {
     font-family: var(--font-poppins), 'Poppins', sans-serif !important;
    background: var(--white);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x:  hidden;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  main {
    flex: 1 0 auto;
  }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
p, span, a, li, div, button, input, select, textarea, label {
  font-family: var(--font-poppins), 'Poppins', sans-serif !important;
}
  a {
    color: inherit;
    text-decoration: none ! important;
  }

  ul {
    list-style: none;
    padding: 0;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* Container */
  .container {
    max-width: 1350px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
  }

  @media (max-width: 575px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }
  }

  /* Typography Helpers */
  .s-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
  }

  .s-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
  }

  .s-title {
    font-family: var(--font-body) ! important;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .s-title span {
    color: var(--orange);
  }

  .s-title em {
    font-style: normal;
    color: var(--indigo);
  }

  .s-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
  }

  /* Buttons */
  .btn-s {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
    white-space: nowrap;
    text-decoration: none;
  }

  .btn-s:hover {
    transform: translateY(-2px);
  }

  .btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-ora);
  }

  .btn-primary:hover {
    background: var(--orange-light);
    color: var(--white);
  }

  .btn-indigo {
    background: var(--indigo);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(39, 24, 126, .3);
  }

  .btn-indigo:hover {
    background: var(--indigo-hover);
    color: var(--white);
  }

  .btn-outline {
    background: transparent;
    color: var(--indigo);
    border: 2px solid var(--border);
  }

  .btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  .btn-wa {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  }

  .btn-wa:hover {
    background: #1ebe5d;
    color: var(--white);
  }

  .btn-white-s {
    background: var(--white);
    color: var(--indigo);
    box-shadow: var(--shadow-md);
  }

  .btn-white-s:hover {
    box-shadow: var(--shadow-lg);
    color: var(--indigo);
  }

  .btn-lg {
    padding: 16px 34px;
    font-size: 1.02rem;
    border-radius: 10px;
  }

  .btn-full {
    width: 100%;
  }

  /* Urgency Bar */
  .urgency-bar {
    background: var(--indigo);
    color: rgba(255, 255, 255, .9);
    text-align: center;
    padding: 10px 20px;
    font-size: .83rem;
    font-weight: 600;
    letter-spacing: .02em;
  }

  .urgency-bar strong {
    color: var(--orange-light);
  }

  .urgency-bar i {
    color: var(--orange);
    margin-right: 6px;
  }

 .navbar-top {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, .97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--indigo);
    letter-spacing: -.01em;
  }

  .logo span {
    color: var(--orange);
  }

  .logo sub {
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--blue);
    vertical-align: super;
    margin-left: 4px;
    text-transform: uppercase;
  }

  .nav-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: .75rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-right: 6px;
  }

  .nav-phone strong {
    color: var(--indigo);
    font-size: .95rem;
  }

  .nav-btns {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  @media (max-width: 640px) {
    .nav-btns {
      display: none !important;
    }
  }

  /* HERO */
  .hero { position: relative; overflow: hidden; }
  .hero-content { position: relative; z-index: 2; padding: 100px 0 70px; }
  .hero-left { display: flex; flex-direction: column; justify-content: center; }
  .hero-right { position: relative; z-index: 2; display: flex; justify-content: center; padding-top: 100px; }
  .hero-img-frame-fill {
    position: relative;
    min-height: 500px;
    width: 100%;
  }

  @media (max-width: 991px) {
    .hero-img-frame-fill {
      min-height: 300px;
    }
  }
  .hero-main-img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px 20px 0 0; display: block; box-shadow: -8px 12px 48px rgba(39,24,126,.18); }
  @media(max-width:991px) {
    .hero-right { order: -1; padding-top: 50px; }
    .hero-main-img { height: 300px; }
    .hero-content { padding: 40px 0 60px; text-align: center; }
    .hero-ctas, .hero-trust { justify-content: center !important; }
  }
  .hf-card-a { 
  position: absolute; 
  bottom: 40px;
  left: -22px; 
  background: var(--white); 
  border-radius: 14px; 
  padding: 14px 18px; 
  box-shadow: 0 8px 32px rgba(39,24,126,.14); 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  animation: floatY 3s ease-in-out infinite; 
  z-index: 5; 
  border: 1px solid var(--border-light); 
}

@media(max-width:991px) { 
  .hf-card-a { 
    bottom: 20px; 
  } 
}
  .hf-card-b { position: absolute; top: 100px; right: -16px; background: var(--orange); border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-ora); animation: floatY 3.6s ease-in-out infinite reverse; z-index: 5; }
  @keyframes floatY { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-7px) } }
  .hf-stars { color: var(--orange); font-size: .82rem; }
  .hf-score { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--indigo); line-height: 1; }
  .hf-lbl { font-size: .7rem; color: var(--text-muted); }
  .hf-b-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
  .hf-b-lbl { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .1em; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1.5px solid var(--periwinkle); border-radius: 100px; padding: 6px 16px 6px 8px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
  .live-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 3px rgba(74,222,128,.3); animation: blink 2s infinite; flex-shrink: 0; }
  @keyframes blink { 0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,.3) } 50% { box-shadow: 0 0 0 7px rgba(74,222,128,.08) } }
  .hero-eyebrow span { font-size: .8rem; font-weight: 700; color: var(--indigo); }
  .hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 2.4rem); font-weight: 500; line-height: 1.15; color: var(--text-dark); letter-spacing: -.02em; margin-bottom: 20px; }
  .hero-title em { font-style: normal; color: var(--orange); }
  .hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; line-height: 1.75; margin-bottom: 20px; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; margin-top: 12px; }
  .hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
  .hero-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1.5px solid var(--border); border-radius: 100px; padding: 5px 13px; font-size: .78rem; font-weight: 700; color: var(--text-body); box-shadow: var(--shadow-sm); }
  .hero-pill i { color: var(--orange); }
/* TRUST BAR */
  .trust-bar { background: var(--platinum); border-bottom: 1px solid var(--border); }
  .trust-inner { display: flex; flex-wrap: wrap; justify-content: space-between; }
  .trust-item { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 180px; padding: 22px 20px; border-right: 1px solid var(--border); }
  .trust-item:last-child { border-right: none; }
  .trust-icon { width: 44px; height: 44px; background: var(--periwinkle-bg); border: 1.5px solid var(--periwinkle); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--indigo); flex-shrink: 0; }
  .trust-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text-dark); }
  .trust-text span { font-size: .75rem; color: var(--text-dim); }
  @media(max-width:768px) { .trust-item { border-right: none; border-bottom: 1px solid var(--border); } }

  /* SECTIONS */
  .section { padding: 80px 0; }
  .section-light { background: var(--platinum); }
  .section-white { background: var(--white); }

  /* ABOUT WRAP */
  .about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  @media(max-width:860px) { .about-wrap { grid-template-columns: 1fr; gap: 36px; } }
  .about-img { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
  .about-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
  .about-img-tag { position: absolute; bottom: 20px; left: 20px; background: var(--white); border-radius: var(--radius-md); padding: 14px 20px; box-shadow: var(--shadow-md); }
  .about-img-tag strong { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--indigo); line-height: 1; }
  .about-img-tag span { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

  /* SVC GRID / CARDS */
  .svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(345px,100%),1fr)); gap: 20px; }
  .svc-grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(420px,100%),1fr)); gap: 30px; }
  .svc-card { background: var(--white); border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; transition: transform .22s, border-color .22s, box-shadow .22s; position: relative; overflow: hidden; }
  .svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--periwinkle)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
  .svc-card:hover { transform: translateY(-5px); border-color: var(--periwinkle); box-shadow: var(--shadow-blue); }
  .svc-card:hover::before { transform: scaleX(1); }
  .svc-icon { width: 54px; height: 54px; background: var(--periwinkle-bg); border: 2px solid var(--periwinkle); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--indigo); margin-bottom: 18px; }
  .svc-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
  .svc-card > p { font-size: .86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
  .svc-features { display: flex; flex-direction: column; gap: 8px; }
  .svc-features li { display: flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 600; color: var(--text-body); }
  .svc-features li i { color: var(--green); font-size: .72rem; flex-shrink: 0; }
  .svc-badge-featured { position: absolute; top: 16px; right: 16px; background: var(--orange); color: var(--white); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 3px 9px; border-radius: 5px; }

  /* TYPE BLOCKS */
  .type-block { background: var(--white); border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }
  .type-block-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
  @media(max-width:680px) { .type-block-cols { grid-template-columns: 1fr; } }
  .type-block h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
  .type-block > p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px; }
  .type-block h3 { font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: var(--indigo); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }

  /* WHY CARDS */
  .why-grid2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
      gap: 20px;
    }
    .why-grid1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
      gap: 20px;
    }
  .why-card { background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; transition: transform .22s, border-color .22s, box-shadow .22s; }
  .why-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--periwinkle) !important;
  box-shadow: var(--shadow-blue) !important;
}

  .why-icon { width: 52px; height: 52px; background: var(--periwinkle-bg); border: 2px solid var(--periwinkle); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--indigo); margin-bottom: 16px; }
  .why-card span { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; display: block; }
  .why-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.7; }

  /* PANNE CARDS */
  .pannes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px,100%),1fr)); gap: 16px; }
  .panne-card { background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 22px; transition: border-color .2s, box-shadow .2s; }
  .panne-card:hover {
  border-color: var(--periwinkle) !important;
  box-shadow: var(--shadow-sm) !important;
}
  .panne-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
  .panne-icon { width: 40px; height: 40px; background: #fff1f1; border: 1.5px solid #fecaca; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: .9rem; flex-shrink: 0; }
  .panne-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
  .panne-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

  /* COVERAGE BANNER */
  .coverage-banner { background: linear-gradient(135deg, var(--indigo), var(--indigo-mid)); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; color: var(--white); }
  .coverage-banner i { font-size: 1.4rem; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
  .coverage-banner strong { font-size: .95rem; font-weight: 700; }
  .coverage-banner span { font-size: .79rem; color: rgba(255,255,255,.9); line-height: 1.6; }

  /* MAINT IMG */
  .maint-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
  .maint-img { width: 100%; height: 460px; object-fit: cover; display: block; }
  .maint-img-badge { position: absolute; bottom: 24px; left: 24px; background: var(--white); border-radius: var(--radius-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); animation: floatY 3s ease-in-out infinite; }
  .maint-img-badge-icon { width: 40px; height: 40px; background: var(--periwinkle-bg); border: 1.5px solid var(--periwinkle); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--indigo); font-size: 1.1rem; flex-shrink: 0; }
  .maint-img-badge-num { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
  .maint-img-badge-lbl { font-size: .72rem; color: var(--text-muted); }
  .maint-img-pill { position: absolute; top: 24px; right: 24px; background: var(--indigo); color: var(--white); border-radius: 100px; padding: 8px 16px; font-size: .78rem; font-weight: 600; display: flex; align-items: center; gap: 7px; box-shadow: 0 4px 16px rgba(39,24,126,.3); }
  @media(max-width:575px) { .maint-img { height: 280px; } .maint-img-badge { bottom: 12px; left: 12px; padding: 10px 14px; } .maint-img-pill { top: 12px; right: 12px; font-size: .7rem; } }

  /* CTA BAND */
  .cta-band { background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 60%, #2d1f8a 100%); border-radius: var(--radius-xl); overflow: hidden; position: relative; }
  .cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 22px 22px; }
  .cta-band-inner { position: relative; z-index: 1; padding: 70px 60px; text-align: center; }
  .cta-band-inner h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.5rem); font-weight: 700; color: var(--white); margin-bottom: 18px; line-height: 1.2; }
  .cta-band-inner h2 span { color: var(--orange); }
  .cta-band-inner p { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 32px; line-height: 1.75; }
  .cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 22px; }
  .urgency-note { font-size: .82rem; color: rgba(255,255,255,.55); }
  .urgency-note strong { color: rgba(255,255,255,.85); }

  /* PROCESS STEPS */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .process-connector {
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--periwinkle), var(--blue), var(--periwinkle));
  }

  .p-step {
    text-align: center;
    padding: 0 16px;
  }

  .p-step-num {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 2.5px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--indigo);
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-blue);
    transition: background .2s, color .2s;
  }

  .p-step:hover .p-step-num {
    background: var(--indigo);
    color: var(--white);
    border-color: var(--indigo);
  }

  .p-step h4 {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .p-step p {
    font-size: .82rem;
    color: var(--text-muted);
  }

  @media(max-width:650px) {
    .process-steps {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .process-connector {
      display: none;
    }
  }

  /* COVERAGE GRID */
  .coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px,100%),1fr)); gap: 16px; }
  .cov-card { background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 22px 20px; transition: border-color .2s, box-shadow .2s; }
  .cov-card:hover {
  border-color: var(--periwinkle) !important;
  box-shadow: var(--shadow-sm) !important;
}
  .cov-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .cov-icon { width: 36px; height: 36px; background: var(--indigo); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .85rem; flex-shrink: 0; }
  .cov-card-head span { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
  .cov-cities { display: flex; flex-wrap: wrap; gap: 6px; }
  .cov-city { font-size: .75rem; font-weight: 600; background: var(--periwinkle-bg); border: 1px solid var(--periwinkle); color: var(--indigo); padding: 3px 9px; border-radius: 5px; }

  /* REVIEWS */
  .reviews-top { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 44px; }
  .score-num { font-family: var(--font-display); font-size: 5rem; font-weight: 800; color: var(--indigo); line-height: 1; }
  .score-stars { display: flex; gap: 3px; color: var(--orange); font-size: 1.1rem; margin-bottom: 5px; }
  .score-sub { font-size: .82rem; color: var(--text-muted); }
  .google-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1.5px solid var(--border); border-radius: 100px; padding: 8px 16px; font-size: .82rem; color: var(--text-body); font-weight: 600; box-shadow: var(--shadow-sm); }
  .g-dot { width: 22px; height: 22px; border-radius: 50%; background: conic-gradient(#4285F4 0 90deg,#34A853 90deg 180deg,#FBBC05 180deg 270deg,#EA4335 270deg); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .65rem; color: white; }
  .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px,100%),1fr)); gap: 16px; }
  .r-card { background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 22px; transition: border-color .2s, box-shadow .2s; }
 .r-card:hover {
  border-color: var(--periwinkle) !important;
  box-shadow: var(--shadow-md) !important;
}
  .r-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .r-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .88rem; color: var(--white); flex-shrink: 0; }
  .r-name { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
  .r-stars { color: var(--orange); font-size: .78rem; margin: 2px 0; }
  .r-date { font-size: .72rem; color: var(--text-dim); }
  .r-text { font-size: .86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
  .r-verified { font-size: .72rem; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 5px; }

  /* CONTACT */
  .c-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
  .c-method { display: flex; align-items: center; gap: 14px; background: var(--platinum); border: 1.5px solid var(--border-light); border-radius: var(--radius-md); padding: 16px 20px; transition: border-color .2s; text-decoration: none; }
  .c-method:hover { border-color: var(--blue); }
  .c-method-ico { width: 42px; height: 42px; background: var(--periwinkle-bg); border: 1.5px solid var(--periwinkle); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--indigo); flex-shrink: 0; }
  .c-method strong { display: block; font-size: .92rem; color: var(--text-dark); }
  .c-method span { font-size: .78rem; color: var(--text-dim); }
  .c-form { background: var(--white); border: 2px solid var(--border-light); border-radius: var(--radius-xl); padding: 38px; box-shadow: var(--shadow-lg); }
  @media(max-width:576px) { .c-form { padding: 24px 16px; } }
  .c-form h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 26px; }
  .f-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
  .f-group label { font-size: .75rem; font-weight: 700; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }
  .f-group input, .f-group select, .f-group textarea { background: var(--platinum); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; color: var(--text-dark); font-family: var(--font-body); font-size: .93rem; outline: none; transition: border-color .2s, background .2s; width: 100%; }
  .f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--blue); background: var(--white); }
  .f-group select { appearance: none; cursor: pointer; }
  .f-group textarea { resize: vertical; min-height: 80px; }
  .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media(max-width:480px) { .f-row { grid-template-columns: 1fr; } }
  .f-privacy { font-size: .72rem; color: var(--text-dim); text-align: center; margin-top: 12px; }
  .f-privacy i { color: var(--green); margin-right: 4px; }

  /* FAQ */
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media(max-width:680px) { .faq-grid { grid-template-columns: 1fr; } }
  .faq-item { background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s; }
  .faq-item[open] { border-color: var(--periwinkle); }
  .faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: .9rem; color: var(--text-dark); transition: color .2s; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--indigo); }
  .faq-item summary i { color: var(--blue); font-size: .75rem; transition: transform .25s; flex-shrink: 0; }
  .faq-item[open] summary i { transform: rotate(45deg); }
  .faq-body { padding: 0 20px 18px; font-size: .86rem; color: var(--text-muted); line-height: 1.72; }
  /* Services Navigation - Desktop First */
  .services-nav {
  background: var(--indigo);
  border-bottom: 1px solid rgba(255, 255, 255, .08);

}

  .services-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    padding: 0;
  }

  .services-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    width: 100%;
  }

  .services-nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    color: rgba(255, 255, 255, .85);
    font-size: .86rem;
    font-weight: 600;
    font-family: var(--font-display);
    text-decoration: none;
    transition: all .2s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
  }

  .services-nav-list a i {
    font-size: .82rem;
    opacity: .8;
  }

  .services-nav-list a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
  }

  .services-nav-list a.active {
    color: var(--orange-light);
    border-bottom-color: var(--orange);
    background: rgba(255, 255, 255, .04);
  }

  .services-nav-list a.active i {
    opacity: 1;
    color: var(--orange);
  }

  /* Hamburger button - hidden on desktop */
  .services-nav-toggle {
    display: none;
  }

  /* Mobile Styles (≤991px) */
  @media (max-width: 991px) {

    
    .services-nav-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 12px 16px;
      background: transparent;
      border: 0;
      color: #fff;
      font-family: var(--font-display);
      font-size: .95rem;
      font-weight: 700;
      cursor: pointer;
    }
    
    .services-nav-toggle-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--orange-light);
    }
    
    .services-nav-toggle-label i {
      color: var(--orange);
      font-size: 1rem;
    }
    
    .services-nav-toggle-icon {
      position: relative;
      display: inline-block;
      width: 26px;
      height: 20px;
      flex-shrink: 0;
    }
    
    .services-nav-toggle-icon span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2.5px;
      background: #fff;
      border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease;
    }
    
    .services-nav-toggle-icon span:nth-child(1) { top: 3px; }
    .services-nav-toggle-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .services-nav-toggle-icon span:nth-child(3) { bottom: 3px; }
    
    .services-nav-toggle.is-open .services-nav-toggle-icon span:nth-child(1) {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
    }
    
    .services-nav-toggle.is-open .services-nav-toggle-icon span:nth-child(2) {
      opacity: 0;
    }
    
    .services-nav-toggle.is-open .services-nav-toggle-icon span:nth-child(3) {
      bottom: auto;
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
    }
    
    .services-nav-inner {
      display: block !important;
      padding: 0 !important;
    }
    
    .services-nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      padding: 6px 0 10px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }
    
    .services-nav-list.is-open {
      display: flex;
    }
    
    .services-nav-list a {
      display: flex !important;
      align-items: center;
      gap: 12px;
      width: 100%;
      padding: 13px 18px !important;
      font-size: .92rem !important;
      border-bottom: 0 !important;
      border-left: 3px solid transparent;
      white-space: normal;
    }
    
    .services-nav-list a i {
      font-size: 1rem !important;
      width: 22px;
      text-align: center;
      opacity: 1;
    }
    
    .services-nav-list a span.lbl-long {
      display: inline !important;
    }
    
    .services-nav-list a.active {
      border-bottom: 0 !important;
      border-left-color: var(--orange);
      background: rgba(255, 255, 255, .06);
    }
    
    .services-nav-list a:hover {
      background: rgba(255, 255, 255, .08);
    }
  }

  /* Hide long labels on very small screens */
  @media (max-width: 640px) and (min-width: 992px) {
    .services-nav-list a span.lbl-long {
      display: none;
    }
  }

  /* Section */
  .section {
    padding: 50px 0;
  }

  .section-light {
    background: var(--platinum);
  }

  .section-white {
    background: var(--white);
  }

  /* ── FOOTER ── */
  .footer {
    background: var(--indigo-dark);
    color: rgba(255, 255, 255, .65);
    padding: 64px 0 32px;
    flex-shrink: 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  @media(max-width:860px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }

    .cta {
      text-align: center;
    }
  }

  @media(max-width:480px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
  }

  .footer-logo span {
    color: var(--orange);
  }

  .footer-brand p {
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .f-socials {
    display: flex;
    gap: 10px;
  }

  .f-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    transition: background .2s, color .2s;
  }

  .f-social-btn:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
  }

  .footer h5 {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 16px;
  }

  .footer ul li {
    margin-bottom: 9px;
  }

  .footer ul a {
    font-size: .86rem;
    color: rgba(255, 255, 255, .55);
    transition: color .2s;
  }

  .footer ul a:hover {
    color: var(--white);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
  }
/* ── SERVICE GRID — IMAGE VERSION ── */
.svc-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
  padding-top: 28px;
}

.svc-img-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .22s, border-color .22s, box-shadow .22s;
  position: relative;
}

.svc-img-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--periwinkle) !important;
  box-shadow: var(--shadow-blue) !important;
}

.svc-img-wrap {
  position: relative;
  overflow: hidden;
}

.svc-img-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.svc-img-card:hover .svc-img-photo {
  transform: scale(1.04);
}

.svc-img-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
}

.svc-img-body {
  padding: 22px 24px 24px;
}

.svc-img-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.svc-img-body > p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.svc-img-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--periwinkle));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.svc-img-card:hover::after {
  transform: scaleX(1);
}

/* ── CTA SECTION ── */
.cta {
  background: var(--orange-pale);
  border-top: 3px solid var(--orange);
  padding: 48px 0;
}

/* ── GALLERY ── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.gf-btn {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.gf-btn:hover,
.gf-btn.active {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-light);
  transition: transform .28s, box-shadow .28s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 16, 90, .82) 0%, rgba(27, 16, 90, .2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity .28s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 6px;
  width: fit-content;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.gallery-location {
  font-size: .72rem;
  color: rgba(255, 255, 255, .65);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallery-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .25s, transform .25s;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(15, 13, 46, .92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
  animation: lbIn .2s ease;
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

.lightbox-caption {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.lightbox-caption-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.lightbox-caption-tag {
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: background .2s, color .2s;
}

.lightbox-close:hover {
  background: var(--indigo);
  color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.lightbox-nav:hover { background: var(--indigo); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

@media (max-width: 700px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

/* ── SAHEL PRIORITY SECTION ── */
.sahel-intro {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--indigo) 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.sahel-intro::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(117,139,253,.15);
}

.sahel-intro::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,134,0,.12);
}

.sahel-intro-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--orange);
  flex-shrink: 0;
  position: relative; z-index: 1;
}

.sahel-intro-text { flex: 1; min-width: 220px; position: relative; z-index: 1; }

.sahel-intro-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.sahel-intro-text h3 span { color: var(--orange); }

.sahel-intro-text p {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin: 0;
}

.sahel-intro-cta { position: relative; z-index: 1; }

.sahel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media(max-width: 768px) { .sahel-grid { grid-template-columns: 1fr; } }
@media(min-width: 769px) and (max-width: 1024px) { .sahel-grid { grid-template-columns: 1fr 1fr; } }

.sahel-gov-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}

.sahel-gov-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--periwinkle) !important;
  box-shadow: var(--shadow-blue) !important;
}
.sahel-gov-header {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sahel-gov-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--orange);
  flex-shrink: 0;
}

.sahel-gov-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.sahel-gov-count {
  margin-left: auto;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}

.sahel-cities-list {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sahel-city-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--text-body);
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background .15s;
}

.sahel-city-row:hover { background: var(--periwinkle-bg); }

.sahel-city-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.sahel-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-pale);
  border: 1.5px solid var(--orange);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add these to globals.css */

/* ── TYPES GRID (moustiquaire) ── */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}

.type-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}

.type-card:hover {
  transform: translateY(-4px);
  border-color: var(--periwinkle);
  box-shadow: var(--shadow-blue);
}

.type-card-icon {
  width: 48px;
  height: 48px;
  background: var(--periwinkle-bg);
  border: 2px solid var(--periwinkle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--indigo);
  margin-bottom: 16px;
}

.type-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
}

.type-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.type-card p {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CRITERIA GRID (moustiquaire) ── */
.criteria-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.criteria-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--platinum);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.criteria-num {
  width: 32px;
  height: 32px;
  background: var(--indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

/* ── ABOUT ITEM (used in rideau-metallique) ── */
.about-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--platinum);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.about-item-icon {
  width: 36px;
  height: 36px;
  background: var(--indigo);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0;
}

.about-item span {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
  display: block;
}

.about-item p {
  font-size: .82rem;
  color: var(--text-muted);
}

 .breadcrumb-bar {
      background: var(--periwinkle-bg, #eef0ff);
      border-bottom: 1px solid var(--border-light, #eceef8);
      padding: 14px 0;
      font-size: .85rem;
    }
    .breadcrumb-bar ol {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-wrap: wrap; gap: 8px;
      align-items: center;
    }
    .breadcrumb-bar li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted, #6e6a9e); }
    .breadcrumb-bar a { color: var(--indigo, #27187e); text-decoration: none; font-weight: 600; }
    .breadcrumb-bar a:hover { color: var(--orange, #ff8600); }
    .breadcrumb-bar li:not(:last-child)::after {
      content: '›'; margin-left: 8px; color: var(--text-dim, #9d9abe); font-weight: 700;
    }
    .breadcrumb-bar li:last-child { color: var(--text-dark, #0f0d2e); font-weight: 700; }

    /* ── Article prose (matches site tone, uses brand vars) ── */
    .prose { max-width: 820px; margin: 0 auto; }
    .prose p {
      font-size: 1.04rem;
      line-height: 1.85;
      color: var(--text-body, #3d3a6b);
      margin: 0 0 18px;
    }
    .prose p strong { color: var(--indigo, #27187e); font-weight: 700; }
    .prose h2.prose-h2 {
      font-family: var(--font-display, 'Poppins', sans-serif);
      font-weight: 800;
      font-size: clamp(1.55rem, 3vw, 2.05rem);
      color: var(--indigo, #27187e);
      margin: 52px 0 18px;
      line-height: 1.25;
      letter-spacing: -.3px;
      position: relative;
      padding-bottom: 14px;
    }
    .prose h2.prose-h2::after {
      content: ''; position: absolute; left: 0; bottom: 0;
      width: 56px; height: 4px; background: var(--orange, #ff8600); border-radius: 2px;
    }
    .prose h3.prose-h3 {
      font-family: var(--font-display, 'Poppins', sans-serif);
      font-weight: 700;
      font-size: 1.18rem;
      color: var(--indigo-dark, #1a105a);
      margin: 30px 0 10px;
    }
    .prose ul.prose-list {
      list-style: none; padding: 0; margin: 0 0 22px;
      display: grid; gap: 6px;
    }
    .prose ul.prose-list li {
      position: relative; padding: 6px 0 6px 34px;
      color: var(--text-body, #3d3a6b);
      font-size: 1rem;
    }
    .prose ul.prose-list li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free'; font-weight: 900;
      position: absolute; left: 0; top: 8px;
      width: 22px; height: 22px;
      background: var(--orange-pale, #fff4e6); color: var(--orange, #ff8600);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: .8rem;
    }

    /* Two-column lists on wide screens for long enumerations */
    .prose ul.prose-list.two-col {
      grid-template-columns: 1fr;
    }
    @media (min-width: 720px) {
      .prose ul.prose-list.two-col { grid-template-columns: 1fr 1fr; column-gap: 24px; }
    }

    /* ── Phone CTA callouts (high conversion) ── */
    .phone-cta-card {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
      gap: 18px;
      margin: 32px 0;
      padding: 22px 26px;
      background: linear-gradient(135deg, #fff 0%, var(--periwinkle-bg, #eef0ff) 100%);
      border: 1px solid var(--border, #dddff0);
      border-left: 5px solid var(--orange, #ff8600);
      border-radius: var(--radius-md, 14px);
      box-shadow: var(--shadow-sm, 0 2px 8px rgba(39,24,126,.07));
    }
    .phone-cta-card .pcc-text {
      flex: 1 1 260px;
      font-family: var(--font-display, 'Poppins', sans-serif);
      color: var(--indigo, #27187e);
      font-weight: 700;
      font-size: 1.05rem;
      line-height: 1.4;
    }
    .phone-cta-card .pcc-text i { color: var(--orange, #ff8600); margin-right: 8px; }
    .phone-cta-card .pcc-actions { display: flex; flex-wrap: wrap; gap: 10px; }

    /* ── Areas chip grid (Grand Tunis) ── */
    .areas-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 10px; margin: 18px 0 28px;
    }
    .area-chip {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 14px;
      background: #fff;
      border: 1px solid var(--border-light, #eceef8);
      border-radius: var(--radius-sm, 8px);
      font-weight: 600; font-size: .94rem;
      color: var(--indigo-dark, #1a105a);
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .area-chip:hover {
      transform: translateY(-2px);
      border-color: var(--orange-light, #ffa033);
      box-shadow: var(--shadow-sm, 0 2px 8px rgba(39,24,126,.07));
    }
    .area-chip i { color: var(--orange, #ff8600); font-size: .9rem; }

    /* ── Why-choose mini cards ── */
 
    .why-card {
      padding: 22px;
      background: #fff;
      border: 1px solid var(--border-light, #eceef8);
      border-radius: var(--radius-md, 14px);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .why-card:hover {
      transform: translateY(-3px);
      border-color: var(--orange-light, #ffa033);
      box-shadow: var(--shadow-md, 0 6px 24px rgba(39,24,126,.10));
    }
    .why-card .why-ico {
      width: 44px; height: 44px;
      background: var(--orange-pale, #fff4e6);
      color: var(--orange, #ff8600);
      border-radius: 12px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 12px;
    }
    .why-card h3 {
      font-family: var(--font-display, 'Poppins', sans-serif);
      font-weight: 700; font-size: 1.05rem;
      color: var(--indigo, #27187e);
      margin: 0 0 6px;
    }
    .why-card p { margin: 0; font-size: .95rem; color: var(--text-body, #3d3a6b); line-height: 1.6; }

    /* ── Mobile sticky call bar ── */
    .mobile-call-bar {
      display: none;
      position: fixed; left: 0; right: 0; bottom: 0;
      z-index: 95;
      background: var(--indigo, #27187e);
      padding: 10px 12px;
      box-shadow: 0 -6px 20px rgba(0,0,0,.15);
      gap: 8px;
    }
    .mobile-call-bar a {
      flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 8px;
      font-family: var(--font-display, 'Poppins', sans-serif);
      font-weight: 700; font-size: .92rem;
      border-radius: 10px;
      text-decoration: none;
      color: #fff;
    }
    .mobile-call-bar .mcb-call { background: var(--orange, #ff8600); }
    .mobile-call-bar .mcb-wa   { background: #16a34a; }
    @media (max-width: 768px) {
      .mobile-call-bar { display: flex; }
      body { padding-bottom: 72px; }
      .wa-float { bottom: 84px !important; }
    }

    /* ── Small final-CTA block ── */
    .final-cta {
      margin-top: 50px;
      padding: 36px 28px;
      background: linear-gradient(135deg, var(--indigo, #27187e) 0%, var(--indigo-dark, #1a105a) 100%);
      color: #fff;
      border-radius: var(--radius-lg, 22px);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(255,134,0,.25), transparent 50%);
      pointer-events: none;
    }
    .final-cta > * { position: relative; }
    .final-cta h2 {
      font-family: var(--font-display, 'Poppins', sans-serif);
      font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem);
      margin: 0 0 10px;
    }
    .final-cta p { margin: 0 0 20px; color: rgba(255,255,255,.85); font-size: 1rem; }
    .final-cta .fc-actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 14px;
      margin: 28px 0;
    }

    .gallery-item {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.06);
    }

    .gallery-item .g-tag {
      position: absolute;
      left: 12px;
      bottom: 12px;
      background: rgba(39, 24, 126, .9);
      color: #fff;
      font-size: .78rem;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 6px;
      backdrop-filter: blur(8px);
    }

    .type-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: var(--radius-md);
      margin-bottom: 18px;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin: 30px 0;
    }

    .stat-card {
      background: #fff;
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 24px 18px;
      text-align: center;
      transition: transform .2s, box-shadow .2s;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--periwinkle);
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--indigo);
      line-height: 1;
    }

    .stat-num span {
      color: var(--orange);
    }

    .stat-lbl {
      font-size: .82rem;
      color: var(--text-muted);
      margin-top: 6px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .mobile-call-bar {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 95;
      background: var(--indigo);
      padding: 10px 12px;
      box-shadow: 0 -6px 20px rgba(0, 0, 0, .15);
      gap: 8px;
    }

    .mobile-call-bar a {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 8px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: .92rem;
      border-radius: 10px;
      text-decoration: none;
      color: #fff;
    }

    .mobile-call-bar .mcb-call {
      background: var(--orange);
    }

    .mobile-call-bar .mcb-wa {
      background: #16a34a;
    }

    @media (max-width: 768px) {
      .mobile-call-bar {
        display: flex;
      }

      body {
        padding-bottom: 72px;
      }

      .wa-float {
        bottom: 84px !important;
      }
    }

    /* ── URGENT BADGE (used in rideau-metallique/tunis) ── */
.urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.urgent-badge i {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ── BIZ GRID (business types - rideau-metallique) ── */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.biz-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.biz-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange-light);
  box-shadow: var(--shadow-sm);
}

.biz-ico {
  width: 46px;
  height: 46px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.biz-card span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--indigo);
}
 

/* Hero image frame - FIXED */
.hero-img-frame {
  position: relative;
  width: 100%;
}

/* When using fill, parent MUST have height */
.hero-img-frame-fill {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-main-img {
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero-img-frame-fill {
    height: 300px;
  }
}

/* ── GALLERY ITEM with fill Image ── */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}


.wa-btn {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.8rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
      transition: transform .2s, box-shadow .2s;
      animation: waPulse 2.5s infinite;
    }

.wa-btn:hover {
      transform: scale(1.12);
      color: #fff;
      box-shadow: 0 8px 30px rgba(37, 211, 102, .65);
    }

@keyframes waPulse {

0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5)
      }

50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5), 0 0 0 14px rgba(37, 211, 102, .12)
      }
    }

.wa-tooltip {
      position: absolute;
      right: 74px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--text-dark);
      color: #fff;
      font-size: .78rem;
      font-weight: 700;
      padding: 7px 13px;
      border-radius: 6px;
      white-space: nowrap;
      border: 1px solid rgba(37, 211, 102, .3);
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
}
.wa-float:hover .wa-tooltip {
      opacity: 1;
    }

.reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }