
/* =============================================
   DHVANI ENTERPRISE — White Theme v2
   Logo Colors: Navy #06122B, Sky #2AA8E8, White #FFF
   ============================================= */

  :root {
    --navy-deep:   #06122B;
    --navy:        #0A1B3D;
    --navy-mid:    #102450;
    --sky:         #2AA8E8;
    --sky-dark:    #1A8FCF;
    --sky-light:   #E8F5FD;
    --sky-mist:    #F0F8FF;

    --bg:          #FFFFFF;
    --bg-soft:     #F7FBFF;
    --bg-card:     #FFFFFF;

    --text-primary:   #06122B;
    --text-secondary: #2E4A6B;
    --text-muted:     #5E7A99;
    --text-light:     #8BAAC4;

    --border:      rgba(42,168,232,0.18);
    --border-card: rgba(42,168,232,0.22);
    --divider:     #D8EAF5;

    --display: 'Barlow Condensed', sans-serif;
    --body:    'Inter', sans-serif;
    --max: 1180px;

    --shadow-sm:  0 2px 8px rgba(6,18,43,0.07);
    --shadow-md:  0 8px 32px rgba(6,18,43,0.10);
    --shadow-lg:  0 20px 60px rgba(6,18,43,0.14);
    --shadow-sky: 0 4px 20px rgba(42,168,232,0.30);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
  }
  img, svg { display: block; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--sky); color: #fff; }
  :focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

  /* ===== TOP BAR ===== */
  .topbar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.68);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 28px; max-width: var(--max); margin: 0 auto;
    font-size: 13px; letter-spacing: 0.02em; flex-wrap: wrap; gap: 8px;
  }
  .topbar a { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.68); transition: color 0.2s; }
  .topbar a:hover { color: var(--sky); }
  .topbar-divider { opacity: 0.3; }
  .topbar-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
  .topbar-status { display: flex; align-items: center; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); }

  .led {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4FC3FF;
    box-shadow: 0 0 0 2px rgba(79,195,255,0.3);
    animation: ledPulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes ledPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(79,195,255,0.3); }
    50%       { box-shadow: 0 0 0 5px rgba(79,195,255,0.1); }
  }

  /* ===== HEADER / NAV ===== */
  header.site {
    background: #fff;
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--divider);
    box-shadow: 0 2px 16px rgba(6,18,43,0.06);
  }
  nav.main {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 28px; max-width: var(--max); margin: 0 auto;
  }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark {
    width: 50px; height: 50px; border-radius: 12px;
    overflow: hidden; flex-shrink: 0;
    border: 2px solid var(--border-card);
    box-shadow: var(--shadow-sky);
  }
  .brand-mark img { width: 100%; height: 100%; object-fit: cover; }
  .brand-name {
    font-family: var(--display); font-size: 21px; font-weight: 800;
    letter-spacing: 0.02em; color: var(--navy-deep); line-height: 1;
  }
  .brand-sub {
    font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--sky); margin-top: 4px; font-weight: 600;
  }
  .navlinks { display: flex; gap: 30px; font-size: 14px; font-weight: 500; }
  .navlinks a {
    color: var(--text-secondary); padding: 4px 0; position: relative; transition: color 0.2s;
  }
  .navlinks a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--sky); border-radius: 2px;
    transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease;
  }
  .navlinks a:hover { color: var(--sky); }
  .navlinks a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--sky); color: #fff; padding: 11px 22px;
    border-radius: 8px; font-weight: 700; font-size: 13.5px;
    letter-spacing: 0.01em; white-space: nowrap;
    box-shadow: var(--shadow-sky); transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--navy); transform: translateY(-1px); }
  .navlinks-wrap { display: flex; align-items: center; gap: 34px; }

  @media (max-width: 780px) { .navlinks { display: none; } .brand-sub { display: none; } }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #0D1F45 55%, #0A2A5C 100%);
    padding: 80px 0 0; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -100px; right: -150px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(42,168,232,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    align-items: center; position: relative; z-index: 1;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sky); font-weight: 700; margin-bottom: 22px;
    background: rgba(42,168,232,0.12); border: 1px solid rgba(42,168,232,0.3);
    padding: 6px 14px; border-radius: 100px;
  }
  h1 {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(42px, 5.5vw, 68px); line-height: 0.96;
    letter-spacing: -0.01em; margin: 0 0 24px;
    text-transform: uppercase; color: #fff;
  }
  h1 span { color: var(--sky); }
  .hero-lede {
    font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.72);
    max-width: 480px; margin: 0 0 40px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 26px; border-radius: 8px; font-weight: 700;
    font-size: 14.5px; letter-spacing: 0.01em; border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: var(--sky); color: #fff; box-shadow: 0 6px 20px rgba(42,168,232,0.4); }
  .btn-primary:hover { background: var(--sky-dark); box-shadow: 0 8px 28px rgba(42,168,232,0.5); }
  .btn-ghost { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
  .btn-ghost:hover { border-color: var(--sky); color: var(--sky); }

  .hero-image-panel {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border: 1px solid rgba(42,168,232,0.2);
  }
  .hero-image-panel img { width: 100%; height: 440px; object-fit: cover; display: block; }
  .hero-image-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(6,18,43,0.88); backdrop-filter: blur(12px);
    border: 1px solid rgba(42,168,232,0.3); border-radius: 12px;
    padding: 14px 18px; color: #fff;
  }
  .hero-badge-title { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); margin-bottom: 3px; }
  .hero-badge-val { font-size: 22px; font-weight: 800; font-family: var(--display); color: #fff; }
  .hero-badge-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }

  /* Floating WhatsApp + Call buttons */
  .float-btns {
    position: fixed; right: 20px; bottom: 100px; z-index: 999;
    display: flex; flex-direction: column; gap: 14px; align-items: center;
  }
  .float-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer; text-decoration: none; position: relative;
  }
  .float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
  .float-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

  .float-whatsapp { background: #25D366; }
  .float-whatsapp svg { fill: #fff; }

  .float-call { background: var(--sky); position: relative; }
  .float-call svg { fill: #fff; }
  /* Ring pulse animation on call button */
  .float-call::before, .float-call::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: var(--sky); opacity: 0.6;
    animation: callRing 2s ease-out infinite;
  }
  .float-call::after { animation-delay: 0.5s; opacity: 0.35; }
  @keyframes callRing {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
  }

  /* Floating label tooltips */
  .float-btn .float-label {
    position: absolute; right: 66px;
    background: var(--navy-deep); color: #fff;
    font-size: 12px; font-weight: 600; white-space: nowrap;
    padding: 5px 10px; border-radius: 6px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s;
  }
  .float-btn .float-label::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent; border-right: none;
    border-left-color: var(--navy-deep);
  }
  .float-btn:hover .float-label { opacity: 1; }

  /* Sticky Bottom Call Bar (mobile) */
  .sticky-call-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
    background: var(--sky);
    padding: 0;
  }
  .sticky-call-inner {
    display: flex;
  }
  .sticky-call-link {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 16px 12px;
    font-weight: 700; font-size: 15px; color: #fff;
    border: none; text-decoration: none;
    transition: background 0.2s;
    position: relative; overflow: hidden;
  }
  .sticky-call-link:first-child {
    background: var(--sky);
    border-right: 1px solid rgba(255,255,255,0.25);
  }
  .sticky-call-link:last-child { background: #25D366; }
  .sticky-call-link:hover { filter: brightness(1.08); }

  /* Ripple on sticky call */
  .sticky-call-link::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.18);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
  }
  .sticky-call-link:active::after { transform: scaleX(1); }

  /* Phone icon pulse */
  .sticky-call-link .phone-icon {
    animation: phoneBounce 2s ease-in-out infinite;
  }
  @keyframes phoneBounce {
    0%, 100% { transform: rotate(0deg); }
    10%       { transform: rotate(-15deg); }
    20%       { transform: rotate(15deg); }
    30%       { transform: rotate(0deg); }
  }

  @media (max-width: 768px) {
    .sticky-call-bar { display: block; }
    .float-btns { display: none; }
  }

  /* ===== TRUST BAR ===== */
  .tickrule {
    height: 12px; width: 100%;
    background-image: repeating-linear-gradient(to right, rgba(42,168,232,0.25) 0 1px, transparent 1px 14px);
  }
  .trust-bar {
    background: var(--sky-light);
    border-bottom: 3px solid var(--sky);
    padding: 20px 0;
  }
  .trust-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 28px; border-right: 1px solid var(--border);
    font-size: 14px; font-weight: 600; color: var(--navy-deep);
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--sky); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
  }
  @media (max-width: 600px) {
    .trust-item { padding: 8px 16px; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
    .trust-inner { justify-content: flex-start; }
  }

  /* ===== SECTION SCAFFOLDING ===== */
  section { padding: 90px 0; }
  .section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 30px; margin-bottom: 56px; flex-wrap: wrap;
  }
  .section-tag {
    display: inline-block; font-size: 11.5px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--sky); font-weight: 700; margin-bottom: 12px;
    background: var(--sky-light); border: 1px solid var(--border);
    padding: 5px 14px; border-radius: 100px;
  }
  h2 {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(30px, 4vw, 46px); line-height: 1;
    letter-spacing: -0.01em; text-transform: uppercase; color: var(--navy-deep);
  }
  .section-note { font-size: 15px; color: var(--text-muted); max-width: 340px; line-height: 1.6; }

  /* ===== ABOUT ===== */
  .about { background: var(--bg-soft); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
  .about-text-side p { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin: 0 0 18px; }
  .about-image-side {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border-card);
  }
  .about-image-side img { width: 100%; height: 360px; object-fit: cover; display: block; }
  .about-image-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(6,18,43,0.80) 0%, transparent 100%);
    padding: 24px;
  }
  .about-image-overlay p { color: #fff; font-size: 14px; font-weight: 600; }
  .stat-rail { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
  .stat-cell {
    background: #fff; border: 1px solid var(--border-card);
    border-radius: 12px; padding: 22px 20px; box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .stat-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .stat-num { font-family: var(--display); font-weight: 800; font-size: 40px; color: var(--sky); line-height: 1; }
  .stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 8px; font-weight: 600; }

  /* ===== SERVICES ===== */
  .services { background: var(--bg); }
  .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  @media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

  .service-card {
    background: var(--bg-card); border-radius: 18px;
    border: 1px solid var(--border-card); overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  }
  .service-card:hover {
    border-color: var(--sky); transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(42,168,232,0.16);
  }
  /* Service card image band */
  .service-img-band {
    width: 100%; height: 200px; overflow: hidden; position: relative;
  }
  .service-img-band img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
  }
  .service-card:hover .service-img-band img { transform: scale(1.05); }
  .service-img-num {
    position: absolute; top: 14px; right: 14px;
    background: rgba(6,18,43,0.75); backdrop-filter: blur(8px);
    color: var(--sky); font-family: var(--display);
    font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
    padding: 4px 10px; border-radius: 6px;
    border: 1px solid rgba(42,168,232,0.3);
  }
  /* SVG illustration band for services without photos */
  .service-svg-band {
    width: 100%; height: 200px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .service-svg-band .svc-num-badge {
    position: absolute; top: 14px; right: 14px;
    background: rgba(6,18,43,0.75); backdrop-filter: blur(8px);
    color: var(--sky); font-family: var(--display);
    font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
    padding: 4px 10px; border-radius: 6px;
    border: 1px solid rgba(42,168,232,0.3);
  }

  .service-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
  .service-card h3 {
    font-family: var(--display); font-weight: 700; font-size: 22px;
    text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 10px; color: var(--navy-deep);
  }
  .service-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-muted); margin: 0 0 20px; flex: 1; }
  .service-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--divider);
  }
  .btn-service {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .btn-service svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 2;
  }
  /* Shimmer / Sweep reflection animation on hover */
  .btn-service::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    z-index: 1;
  }
  .btn-service:hover::after {
    animation: btnShine 0.85s ease-in-out;
  }
  @keyframes btnShine {
    0% { left: -100%; }
    100% { left: 120%; }
  }
  .btn-service.btn-call {
    background: #2AA8E8;
    color: #fff;
    border: 1px solid #2AA8E8;
  }
  .btn-service.btn-call:hover {
    background: var(--navy-deep);
    color: #fff;
    border-color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42, 168, 232, 0.4);
  }
  .btn-service.btn-whatsapp {
    background: #075E54;
    color: #fff;
    border: 1px solid #075E54;
  }
  .btn-service.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  }
  .btn-service:hover svg {
    animation: serviceIconShake 0.6s ease-in-out;
  }
  @keyframes serviceIconShake {
    0%, 100% { transform: scale(1) rotate(0deg); }
    20% { transform: scale(1.15) rotate(-15deg); }
    40% { transform: scale(1.15) rotate(15deg); }
    60% { transform: scale(1.15) rotate(-10deg); }
    80% { transform: scale(1.15) rotate(10deg); }
  }
  @media (max-width: 440px) {
    .service-actions {
      flex-direction: column;
      gap: 10px;
    }
  }

  /* ===== WHY CHOOSE US ===== */
  .why { background: var(--navy-deep); padding: 90px 0; }
  .why .section-tag { color: var(--sky); background: rgba(42,168,232,0.12); border-color: rgba(42,168,232,0.25); }
  .why h2 { color: #fff; }
  .why .section-note { color: rgba(255,255,255,0.6); }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  @media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
  .why-cell {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(42,168,232,0.15);
    border-radius: 14px; padding: 28px 22px;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
  }
  .why-cell:hover { background: rgba(42,168,232,0.09); border-color: rgba(42,168,232,0.4); transform: translateY(-3px); }
  .why-check {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(42,168,232,0.18); border: 1.5px solid rgba(42,168,232,0.4);
    color: var(--sky); display: flex; align-items: center; justify-content: center;
    font-weight: 800; margin-bottom: 18px; font-size: 15px;
  }
  .why-cell h4 { font-family: var(--display); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; color: #fff; }

  /* ===== PROCESS ===== */
  .process { background: var(--bg-soft); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
  .process-rail { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
  @media (max-width: 980px) { .process-rail { grid-template-columns: 1fr; } }
  .process-rail::before {
    content: ''; position: absolute; top: 23px; left: 0; right: 0;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--sky) 0 8px, transparent 8px 16px);
    opacity: 0.22; z-index: 0;
  }
  @media (max-width: 980px) {
    .process-rail::before { top: 0; bottom: 0; left: 23px; right: auto; width: 2px; height: auto;
      background: repeating-linear-gradient(to bottom, var(--sky) 0 8px, transparent 8px 16px); }
  }
  .process-step { position: relative; z-index: 1; background: var(--bg-soft); }
  @media (max-width: 980px) { .process-step { display: flex; gap: 18px; align-items: flex-start; } }
  .process-index {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--sky); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-weight: 800; font-size: 18px;
    margin-bottom: 18px; flex-shrink: 0; box-shadow: var(--shadow-sky);
  }
  .process-step h4 { font-family: var(--display); font-size: 17px; font-weight: 700; text-transform: uppercase; margin: 0 0 8px; color: var(--navy-deep); }
  .process-step p { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }

  /* ===== QA BAND ===== */
  .qa { background: linear-gradient(135deg, var(--sky) 0%, #1a8fcf 55%, var(--navy) 100%); color: #fff; }
  .qa-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
  @media (max-width: 760px) { .qa-inner { grid-template-columns: 1fr; gap: 28px; } }
  .qa .section-tag { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
  .qa h2 { color: #fff; }
  .qa p { font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,0.82); font-weight: 400; }

  /* ===== SERVICE AREAS + MAP ===== */
  .areas { background: var(--bg); border-top: 1px solid var(--divider); }
  .areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
  @media (max-width: 760px) { .areas-grid { grid-template-columns: 1fr; } }
  .area-card {
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: 16px; padding: 36px 26px; text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  }
  .area-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(42,168,232,0.14); border-color: var(--sky); }
  .area-pin {
    width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%;
    background: var(--sky-light); border: 2px solid var(--border);
    color: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 22px;
  }
  .area-card h4 { font-family: var(--display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--navy-deep); }

  /* Map embed */
  .map-wrap {
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-md); border: 1px solid var(--border-card);
    position: relative;
  }
  .map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }
  @media (max-width: 768px) { .map-wrap iframe { height: 260px; } }

  /* Office Address Bar */
  .address-bar-map {
    background: var(--sky-light);
    border: 1px solid rgba(42,168,232,0.25);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    color: var(--navy-deep);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
  }
  .address-bar-map strong {
    color: var(--sky-dark);
    font-family: var(--display);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.05em;
  }

  /* ===== CONTACT ===== */
  .contact { background: var(--bg-soft); border-top: 1px solid var(--divider); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
  .contact-card {
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: 16px; padding: 34px; box-shadow: var(--shadow-md);
  }
  .contact-list { list-style: none; }
  .contact-list li { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--divider); font-size: 14.5px; }
  .contact-list li:last-child { border-bottom: none; }
  .contact-list dt { color: var(--text-muted); }
  .contact-list dd { font-weight: 700; text-align: right; color: var(--navy-deep); }
  .contact-list a:hover { color: var(--sky); }
  .contact h2 { margin-bottom: 18px; }
  .contact-copy { font-size: 15.5px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 32px; max-width: 440px; }
  .contact-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
  .contact .btn-ghost { border-color: rgba(6,18,43,0.2); color: var(--navy-deep); }
  .contact .btn-ghost:hover { border-color: var(--sky); color: var(--sky); }

  /* ===== FOOTER ===== */
  footer { background: var(--navy-deep); color: rgba(255,255,255,0.5); padding: 36px 0; border-top: 3px solid var(--sky); }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; }
  .footer-logo { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; }
  .footer-logo img { width: 100%; height: 100%; object-fit: cover; }
  .footer-tagline { font-family: var(--display); text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; font-size: 14px; color: #fff; }
  .footer-tagline span { color: var(--sky); }
  .footer-copy { font-size: 12.5px; }
  .footer-links { display: flex; gap: 18px; font-size: 13px; }
  .footer-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .footer-links a:hover { color: var(--sky); }

  /* Padding to avoid sticky bar overlap on mobile */
  @media (max-width: 768px) {
    body { padding-bottom: 60px; }
    section { padding: 60px 0; }
    .hero { padding-top: 50px; }
  }
