/* ── TOKENS ─────────────────────────────────────────────── */
    :root {
      --blue-900: #003580;
      --blue-700: #0056b3;
      --blue-100: #e8f0fb;
      --blue-50:  #f0f6ff;
      --orange:   #ff8c00;
      --orange-dk:#e07a00;
      --white:    #ffffff;
      --bg:       #f8f9fa;
      --gray-100: #eef0f3;
      --gray-400: #9ca3af;
      --gray-600: #4b5563;
      --gray-800: #1f2937;
      --radius:   12px;
      --shadow:   0 4px 24px rgba(0,86,179,.10);
      --shadow-lg:0 8px 40px rgba(0,86,179,.16);
    }

    /* ── RESET & BASE ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--gray-800);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; outline: none; }

    /* ── TYPOGRAPHY ─────────────────────────────────────────── */
    .display { font-family: 'DM Serif Display', serif; }

    /* ── UTILS ──────────────────────────────────────────────── */
    .container { width: 90%; max-width: 1140px; margin: 0 auto; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--orange); color: var(--white);
      padding: 14px 28px; border-radius: 50px;
      font-weight: 700; font-size: .95rem; letter-spacing: .3px;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(255,140,0,.35);
    }
    .btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,140,0,.45); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); color: var(--blue-700);
      border: 2px solid var(--blue-700);
      padding: 12px 26px; border-radius: 50px;
      font-weight: 600; font-size: .95rem;
      transition: all .2s;
    }
    .btn-secondary:hover { background: var(--blue-700); color: var(--white); }

    /* ── SCROLL ANIMATION ───────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ═══════════════════════════════════════════════════════════
       NAV
    ═══════════════════════════════════════════════════════════ */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--gray-100);
      transition: box-shadow .3s;
    }
    #navbar.scrolled { box-shadow: var(--shadow); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo .sun-icon {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; flex-shrink: 0;
    }
    .nav-logo-text { line-height: 1.2; }
    .nav-logo-text .name { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--blue-900); }
    .nav-logo-text .tel { font-size: .78rem; color: var(--gray-600); }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray-600); transition: color .2s; }
    .nav-links a:hover { color: var(--blue-700); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-call {
      display: flex; align-items: center; gap: 7px;
      background: var(--blue-700); color: var(--white);
      padding: 9px 18px; border-radius: 50px;
      font-weight: 600; font-size: .85rem;
      transition: background .2s;
    }
    .nav-call:hover { background: var(--blue-900); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all .3s; }

    /* ═══════════════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════════════ */
    #hero {
      padding-top: 68px;
      background: linear-gradient(135deg, #003580 0%, #0056b3 55%, #1a7ee6 100%);
      position: relative; overflow: hidden;
      min-height: 100vh; display: flex; align-items: center;
    }
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
    }
    /* Decorative sunburst */
    #hero::after {
      content: '';
      position: absolute; right: -180px; top: -180px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,140,0,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center; padding: 80px 0;
      position: relative; z-index: 1;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
      padding: 6px 16px; border-radius: 50px; color: #ffd580;
      font-size: .82rem; font-weight: 600; letter-spacing: .5px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      color: var(--white); line-height: 1.2;
      margin-bottom: 20px;
    }
    .hero-title em { color: #ffd580; font-style: italic; }
    .hero-subtitle {
      font-size: 1.05rem; color: rgba(255,255,255,.85);
      max-width: 480px; margin-bottom: 36px; line-height: 1.75;
    }
    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .hero-stats {
      display: flex; gap: 28px; margin-top: 48px;
      padding-top: 32px; border-top: 1px solid rgba(255,255,255,.2);
    }
    .hero-stat .num {
      font-family: 'DM Serif Display', serif; font-size: 1.9rem; color: var(--white); line-height: 1;
    }
    .hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 4px; }

    /* Right: Appointment card */
    .hero-card {
      background: var(--white); border-radius: 20px;
      padding: 36px 32px; box-shadow: var(--shadow-lg);
    }
    .hero-card h3 {
      font-family: 'DM Serif Display', serif; font-size: 1.5rem;
      color: var(--blue-900); margin-bottom: 6px;
    }
    .hero-card p { font-size: .9rem; color: var(--gray-600); margin-bottom: 24px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block; font-size: .83rem; font-weight: 600;
      color: var(--gray-800); margin-bottom: 6px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%; padding: 11px 14px; border-radius: 8px;
      border: 1.5px solid var(--gray-100); font-size: .92rem;
      font-family: inherit; color: var(--gray-800); background: var(--bg);
      transition: border-color .2s, box-shadow .2s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none; border-color: var(--blue-700);
      box-shadow: 0 0 0 3px rgba(0,86,179,.12);
    }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .btn-submit {
      width: 100%; padding: 14px; border-radius: 10px;
      background: var(--orange); color: var(--white);
      font-weight: 700; font-size: 1rem;
      transition: background .2s, transform .15s;
      box-shadow: 0 4px 16px rgba(255,140,0,.35);
      margin-top: 8px;
    }
    .btn-submit:hover { background: var(--orange-dk); transform: translateY(-1px); }
    .form-note { text-align: center; font-size: .78rem; color: var(--gray-400); margin-top: 12px; }
    .form-note span { color: #25d366; font-weight: 600; }

    /* ═══════════════════════════════════════════════════════════
       TRUST BAR
    ═══════════════════════════════════════════════════════════ */
    #trust {
      background: var(--white); border-bottom: 1px solid var(--gray-100);
      padding: 22px 0;
    }
    .trust-row {
      display: flex; align-items: center; justify-content: center;
      gap: 40px; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 10px;
      font-size: .9rem; color: var(--gray-600); font-weight: 500;
    }
    .trust-item .icon { font-size: 1.4rem; }
    .trust-item strong { color: var(--blue-900); }

    /* ═══════════════════════════════════════════════════════════
       SOCIAL PROOF / REVIEWS
    ═══════════════════════════════════════════════════════════ */
    #reviews {
      padding: 90px 0;
      background: var(--blue-50);
    }
    .section-label {
      font-size: .78rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--blue-900); line-height: 1.25; margin-bottom: 16px;
    }
    .section-sub { font-size: 1rem; color: var(--gray-600); max-width: 520px; }
    .review-rating-hero {
      display: flex; align-items: center; gap: 20px;
      margin-top: 36px; margin-bottom: 56px;
      padding: 28px 32px; background: var(--white);
      border-radius: 16px; box-shadow: var(--shadow);
      max-width: 400px;
    }
    .rating-big {
      font-family: 'DM Serif Display', serif; font-size: 4rem;
      color: var(--blue-900); line-height: 1;
    }
    .stars { font-size: 1.5rem; letter-spacing: 2px; }
    .rating-label { font-size: .87rem; color: var(--gray-600); margin-top: 4px; }

    /* Carousel */
    .carousel-wrap { position: relative; overflow: hidden; }
    .carousel-track {
      display: flex; gap: 20px;
      transition: transform .5s ease;
    }
    .review-card {
      background: var(--white); border-radius: var(--radius);
      padding: 28px 24px; box-shadow: var(--shadow);
      flex: 0 0 calc(33.33% - 14px);
      min-width: 0;
    }
    .review-card .stars-sm { font-size: 1rem; margin-bottom: 12px; }
    .review-card .quote { font-size: .93rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
    .review-card .reviewer { display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-700), var(--orange));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 1rem; color: var(--white); flex-shrink: 0;
    }
    .reviewer-name { font-weight: 600; font-size: .9rem; color: var(--gray-800); }
    .reviewer-time { font-size: .78rem; color: var(--gray-400); }
    .carousel-controls {
      display: flex; gap: 10px; margin-top: 28px; justify-content: center;
    }
    .carousel-btn {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--gray-100);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--blue-700); cursor: pointer;
      transition: all .2s;
    }
    .carousel-btn:hover { background: var(--blue-700); color: var(--white); border-color: var(--blue-700); }
    .carousel-dots {
      display: flex; gap: 8px; align-items: center; margin: 0 16px;
    }
    .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--gray-100); transition: background .3s, transform .3s;
      cursor: pointer;
    }
    .dot.active { background: var(--blue-700); transform: scale(1.3); }

    /* ═══════════════════════════════════════════════════════════
       WHY CHOOSE US
    ═══════════════════════════════════════════════════════════ */
    #why { padding: 90px 0; background: var(--white); }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center; margin-top: 48px;
    }
    .why-features { display: flex; flex-direction: column; gap: 28px; }
    .feature-item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 22px; border-radius: var(--radius);
      transition: box-shadow .2s, transform .2s;
    }
    .feature-item:hover {
      box-shadow: var(--shadow); transform: translateX(4px);
      background: var(--bg);
    }
    .feature-icon {
      width: 54px; height: 54px; border-radius: 14px;
      background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; flex-shrink: 0;
    }
    .feature-icon.orange-bg {
      background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    }
    .feature-text h4 { font-weight: 700; color: var(--blue-900); margin-bottom: 6px; font-size: 1rem; }
    .feature-text p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

    /* Illustration panel */
    .why-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .why-visual-card {
      background: linear-gradient(135deg, #003580 0%, #0056b3 100%);
      border-radius: 20px; padding: 44px 36px; text-align: center;
      color: var(--white); position: relative; overflow: hidden;
      width: 100%;
    }
    .why-visual-card::before {
      content: '';
      position: absolute; right: -60px; bottom: -60px;
      width: 200px; height: 200px; border-radius: 50%;
      background: rgba(255,140,0,.2);
    }
    .why-visual-card .big-emoji { font-size: 5rem; margin-bottom: 20px; display: block; }
    .why-visual-card h3 {
      font-family: 'DM Serif Display', serif; font-size: 1.6rem;
      margin-bottom: 10px;
    }
    .why-visual-card p { font-size: .92rem; opacity: .85; line-height: 1.7; margin-bottom: 24px; }
    .doc-name {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.15); border-radius: 50px;
      padding: 8px 18px; font-size: .88rem;
    }
    .cert-badges {
      display: flex; gap: 12px; justify-content: center;
      margin-top: 20px; flex-wrap: wrap;
    }
    .cert-badge {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      padding: 6px 14px; border-radius: 50px;
      font-size: .78rem; font-weight: 600; letter-spacing: .3px;
    }

    /* ═══════════════════════════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════════════════════════ */
    #services { padding: 90px 0; background: var(--bg); }
    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .service-card {
      background: var(--white); border-radius: var(--radius);
      padding: 30px 22px; text-align: center;
      box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
      border-top: 4px solid transparent;
    }
    .service-card:hover {
      transform: translateY(-6px); box-shadow: var(--shadow-lg);
      border-top-color: var(--orange);
    }
    .service-card .emoji { font-size: 2.4rem; margin-bottom: 14px; display: block; }
    .service-card h4 { font-weight: 700; color: var(--blue-900); font-size: .97rem; margin-bottom: 8px; }
    .service-card p { font-size: .84rem; color: var(--gray-600); line-height: 1.55; }

    /* ═══════════════════════════════════════════════════════════
       LOCATION
    ═══════════════════════════════════════════════════════════ */
    #location { padding: 90px 0; background: var(--white); }
    .location-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: start; margin-top: 48px;
    }
    .location-details { display: flex; flex-direction: column; gap: 20px; }
    .loc-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px; background: var(--bg); border-radius: var(--radius);
    }
    .loc-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--blue-100); display: flex; align-items: center;
      justify-content: center; font-size: 1.3rem; flex-shrink: 0;
    }
    .loc-item h5 { font-weight: 700; color: var(--blue-900); margin-bottom: 4px; font-size: .9rem; }
    .loc-item p { font-size: .87rem; color: var(--gray-600); line-height: 1.5; }
    .loc-item a { color: var(--blue-700); font-weight: 600; }
    .map-wrapper {
      border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg);
      aspect-ratio: 4/3; background: var(--bg);
    }
    .map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

    /* Directions CTA */
    .directions-cta {
      display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px;
    }

    /* ═══════════════════════════════════════════════════════════
       BOTTOM APPOINTMENT
    ═══════════════════════════════════════════════════════════ */
    #book {
      padding: 80px 0;
      background: linear-gradient(135deg, #003580 0%, #0056b3 100%);
      text-align: center;
    }
    #book h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
    #book p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .book-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-whatsapp {
      display: inline-flex; align-items: center; gap: 10px;
      background: #25d366; color: var(--white);
      padding: 14px 28px; border-radius: 50px;
      font-weight: 700; font-size: .95rem;
      box-shadow: 0 4px 16px rgba(37,211,102,.4);
      transition: all .2s;
    }
    .btn-whatsapp:hover { background: #1da855; transform: translateY(-2px); }

    /* ═══════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════ */
    footer {
      background: var(--gray-800); color: rgba(255,255,255,.7);
      padding: 48px 0 24px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 48px; margin-bottom: 36px;
    }
    .footer-brand .name { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
    .footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
    .footer-col h6 { font-weight: 700; color: var(--white); margin-bottom: 16px; font-size: .9rem; letter-spacing: .3px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; font-size: .87rem; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 20px; display: flex; justify-content: space-between;
      align-items: center; flex-wrap: gap; font-size: .82rem;
    }
    .ssl-note {
      display: inline-flex; align-items: center; gap: 6px;
      color: #6ee7b7; font-size: .8rem;
    }

    /* ═══════════════════════════════════════════════════════════
       STICKY CALL STRIP (mobile)
    ═══════════════════════════════════════════════════════════ */
    .sticky-call {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
      background: var(--white); padding: 12px 20px;
      box-shadow: 0 -4px 20px rgba(0,0,0,.12);
      gap: 10px;
    }
    .sticky-call a {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px; border-radius: 10px; font-weight: 700; font-size: .9rem;
    }
    .sticky-call .call-btn { background: var(--blue-700); color: var(--white); }
    .sticky-call .wa-btn { background: #25d366; color: var(--white); }

    /* ═══════════════════════════════════════════════════════════
       MOBILE NAV OVERLAY
    ═══════════════════════════════════════════════════════════ */
    .mobile-menu {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: var(--white);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 1.3rem; font-weight: 600; color: var(--blue-900); }
    .mobile-menu .close-btn {
      position: absolute; top: 20px; right: 20px; font-size: 2rem;
      background: none; border: none; cursor: pointer; color: var(--gray-600);
    }

    /* ═══════════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 40px; }
      .hero-card { max-width: 520px; }
      .why-grid { grid-template-columns: 1fr; }
      .why-visual { order: -1; }
      .location-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .sticky-call { display: flex; }
      body { padding-bottom: 68px; }
      .review-card { flex: 0 0 calc(100% - 0px); }
    }

    @media (max-width: 600px) {
      .hero-stats { gap: 20px; }
      .form-row { grid-template-columns: 1fr; }
      .why-visual-card .big-emoji { font-size: 3.5rem; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }

    /* Pulse animation for CTA */
    @keyframes pulse-ring {
      0% { box-shadow: 0 0 0 0 rgba(255,140,0,.6); }
      70% { box-shadow: 0 0 0 14px rgba(255,140,0,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,140,0,0); }
    }
    .btn-pulse { animation: pulse-ring 2s infinite; }
