/* ===== DR. B. KUMAR CLINIC — STYLESHEET (Hostinger/Static) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --navy:       #0D1B3E;
  --teal:       #0A9396;
  --teal-dark:  #077d80;
  --teal-light: #e6f7f7;
  --teal-10:    rgba(10,147,150,0.10);
  --teal-20:    rgba(10,147,150,0.20);
  --white:      #ffffff;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-400:  #94a3b8;
  --slate-500:  #64748b;
  --slate-600:  #475569;
  --slate-900:  #0f172a;
  --border:     #e4e8ef;
  --radius:     0.5rem;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: #fff; color: var(--navy); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* UTILITY BAR */
.utility-bar { background: var(--teal); color: #fff; padding: 0.45rem 1.25rem; font-size: 0.8rem; font-weight: 500; display: flex; align-items: center; justify-content: space-between; }
.utility-bar .left, .utility-bar .right { display: flex; align-items: center; gap: 0.4rem; }
.utility-bar svg { width: 13px; height: 13px; }
@media(max-width:640px){ .utility-bar { justify-content: center; } .utility-bar .right { display: none; } }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 1.25rem; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0; }
.logo-name { font-weight: 800; font-size: 1rem; color: var(--navy); line-height: 1.1; }
.logo-sub { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { font-size: 0.875rem; font-weight: 500; color: var(--slate-600); transition: color .2s; }
nav a:hover { color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.btn-outline { display: inline-flex; align-items: center; gap: 0.4rem; border: 1.5px solid var(--teal); color: var(--teal); padding: 0.48rem 1rem; border-radius: var(--radius); font-size: 0.82rem; font-weight: 600; transition: all .2s; }
.btn-outline:hover { background: var(--teal-light); }
.btn-primary { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--teal); color: #fff; padding: 0.52rem 1.1rem; border-radius: var(--radius); font-size: 0.82rem; font-weight: 700; transition: all .2s; box-shadow: 0 2px 8px var(--teal-20); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-primary svg, .btn-outline svg { width: 15px; height: 15px; }
@media(max-width:768px){ nav { display: none; } }
@media(max-width:480px){ .btn-outline { display: none; } }

/* HERO */
.hero { background: linear-gradient(to bottom, var(--slate-50), #fff); padding: 4rem 1.25rem 5rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 160px; background: var(--teal-10); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--teal-10); border: 1px solid var(--teal-20); color: var(--teal); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.35rem 0.85rem; border-radius: 99px; margin-bottom: 1.5rem; }
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; color: var(--slate-900); margin-bottom: 1.25rem; }
.hero p { font-size: 1.1rem; color: var(--slate-600); margin-bottom: 2rem; font-weight: 500; line-height: 1.7; }
.hero-cta { display: inline-flex; align-items: center; justify-content: center; background: var(--teal); color: #fff; padding: 1rem 2rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 800; letter-spacing: 0.04em; box-shadow: 0 4px 20px var(--teal-20); transition: all .2s; margin-bottom: 2rem; }
.hero-cta:hover { background: var(--teal-dark); transform: translateY(-2px); }
.hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 500; color: var(--slate-600); }
.hero-meta-item svg { width: 18px; height: 18px; color: var(--teal); }
.hero-image-wrap { position: relative; }
.hero-image-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--teal-20), transparent); border-radius: 2.5rem; transform: rotate(3deg); z-index: 0; }
.hero-image-card { position: relative; z-index: 1; background: #fff; padding: 0.5rem; border-radius: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.hero-image-card img { width: 100%; border-radius: 2rem; object-fit: cover; object-position: top; aspect-ratio: 4/5; }
.hero-float-badge { position: absolute; bottom: 1.5rem; left: -1.5rem; z-index: 2; background: #fff; border-radius: 0.75rem; padding: 0.6rem 1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; color: var(--navy); border: 1px solid var(--border); white-space: nowrap; }
.hero-float-badge .dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }
@media(max-width:768px){ .hero { padding: 2.5rem 1.25rem 3.5rem; } .hero-grid { grid-template-columns: 1fr; gap: 2rem; } .hero-image-wrap { order: -1; max-width: 300px; margin: 0 auto; } .hero-float-badge { left: 0; bottom: 0.5rem; } .hero-image-card img { aspect-ratio: 3/4; } }

/* CTA BANNER */
.cta-banner { background: var(--teal); color: #fff; padding: 2.5rem 1.25rem; text-align: center; }
.cta-banner h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta-banner p { opacity: .9; margin-bottom: 1.5rem; }
.btn-white { display: inline-flex; align-items: center; background: #fff; color: var(--teal); padding: 0.75rem 1.75rem; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; transition: all .2s; box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.2); }

/* ABOUT */
.about { padding: 5rem 1.25rem; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-inner { position: relative; z-index: 1; width: 260px; height: 260px; margin: 0 auto; }
.about-image-inner img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 50%; border: 4px solid #fff; box-shadow: var(--shadow-lg); }
.about-image-ring { position: absolute; inset: -12px; border: 3px solid var(--teal-20); border-radius: 50%; }
.about-image-wrap { position: relative; }
.section-tag { display: inline-block; color: var(--teal); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.about h2 { font-size: 2rem; font-weight: 800; color: var(--slate-900); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.about-qual { background: var(--slate-50); border-radius: var(--radius); padding: 0.9rem 1.1rem; margin-bottom: 0.875rem; display: flex; align-items: flex-start; gap: 0.75rem; border: 1px solid var(--border); }
.about-qual svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.about-qual strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.about-qual span { font-size: 0.82rem; color: var(--slate-600); }
@media(max-width:768px){ .about-grid { grid-template-columns: 1fr; gap: 2rem; } .about-image-inner { width: 200px; height: 200px; } }

/* SERVICES */
.lab-section { padding: 5rem 1.25rem; background: #fff; border-top: 1px solid var(--border); }
.lab-section .section-header p { color: var(--slate-500); margin-top: 0.5rem; font-size: 0.95rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.lab-banner { background: var(--navy); border-radius: 1rem; padding: 1.5rem 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.lab-banner-left { display: flex; align-items: center; gap: 1rem; }
.lab-banner-icon { width: 48px; height: 48px; border-radius: 0.75rem; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lab-banner-icon svg { width: 24px; height: 24px; color: #ffb499; }
.lab-banner-left strong { display: block; color: #fff; font-size: 1.05rem; font-weight: 800; }
.lab-banner-left span { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

.lab-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.875rem; margin-bottom: 2rem; }
.lab-feature { background: var(--teal-light); border: 1px solid var(--teal-20); border-radius: 0.75rem; padding: 1.1rem 0.75rem; text-align: center; font-size: 0.82rem; font-weight: 700; color: var(--teal-dark); }
.lab-feature .icon { font-size: 1.5rem; margin-bottom: 0.4rem; }

.lab-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.875rem; }

.services { padding: 5rem 1.25rem; background: var(--slate-50); border-top: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--slate-900); letter-spacing: -0.02em; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.875rem; margin-bottom: 2.5rem; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem 0.875rem; text-align: center; font-size: 0.84rem; font-weight: 600; color: var(--navy); transition: all .2s; box-shadow: var(--shadow-sm); }
.service-card:hover { border-color: var(--teal); background: var(--teal-light); color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); }
.service-card .icon { font-size: 1.5rem; margin-bottom: 0.4rem; }

/* BOOKING */
.booking-section { padding: 5rem 1.25rem; background: #fff; position: relative; }
.booking-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, var(--teal-10) 0%, transparent 70%); pointer-events: none; }
.booking-section .section-header { position: relative; }
.booking-section .section-header p { color: var(--slate-500); margin-top: 0.5rem; font-size: 0.95rem; }
.booking-card { max-width: 720px; margin: 0 auto; background: #fff; border-radius: 1.25rem; box-shadow: 0 8px 40px rgba(0,0,0,.12); border: 1px solid var(--border); overflow: hidden; position: relative; z-index: 1; }
.booking-header { background: var(--teal-10); border-bottom: 1px solid var(--teal-20); padding: 1.5rem 2rem; }
.booking-header h2 { font-size: 1.3rem; font-weight: 800; color: var(--teal); }
.booking-header p { font-size: 0.82rem; color: var(--slate-500); margin-top: 0.2rem; }

/* Progress */
.progress-wrap { margin-top: 1.25rem; }
.progress-bar { display: flex; align-items: center; max-width: 320px; }
.step-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; transition: all .3s; }
.step-dot.active { background: var(--teal); color: #fff; box-shadow: 0 2px 8px var(--teal-20); }
.step-dot.done { background: var(--teal-20); color: var(--teal); }
.step-dot.pending { background: var(--slate-100); color: var(--slate-400); }
.step-line { height: 4px; flex: 1; margin: 0 0.5rem; border-radius: 2px; }
.step-line.done { background: var(--teal-20); }
.step-line.pending { background: var(--slate-100); }
.step-labels { display: flex; justify-content: space-between; max-width: 320px; margin-top: 0.35rem; }
.step-labels span { font-size: 0.68rem; font-weight: 600; color: var(--slate-400); }
.step-labels span.active { color: var(--teal); }

.booking-body { padding: 2rem; }
@media(max-width:560px){ .booking-body { padding: 1.25rem; } }

/* Step content */
.step-title { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 1rem; }
.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media(max-width:500px){ .type-grid { grid-template-columns: 1fr; } }
.type-btn { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1rem; border-radius: 0.75rem; border: 1.5px solid var(--border); background: #fff; text-align: left; transition: all .2s; cursor: pointer; box-shadow: var(--shadow-sm); }
.type-btn:hover { border-color: var(--teal); background: var(--teal-light); }
.type-btn .type-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.type-btn .type-desc { font-size: 0.73rem; color: var(--slate-500); margin-top: 2px; }
.type-btn svg { width: 16px; height: 16px; color: var(--slate-400); flex-shrink: 0; }
.type-btn:hover .type-name { color: var(--teal); }
.type-btn:hover svg { color: var(--teal); }

.sel-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--teal-10); border-radius: 0.5rem; padding: 0.4rem 0.85rem; font-size: 0.82rem; font-weight: 600; color: var(--teal); margin-bottom: 1.25rem; }
.step2-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.link-btn { font-size: 0.75rem; color: var(--slate-500); font-weight: 500; background: none; border: none; text-decoration: underline; cursor: pointer; }
.field-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 600; color: var(--slate-500); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; }
.field-label svg { width: 14px; height: 14px; }

/* Date scroll */
.date-scroll { display: flex; overflow-x: auto; gap: 0.5rem; padding-bottom: 0.75rem; margin-bottom: 1.25rem; }
.date-scroll::-webkit-scrollbar { height: 4px; }
.date-scroll::-webkit-scrollbar-thumb { background: var(--slate-200); border-radius: 2px; }
.date-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 68px; height: 80px; border-radius: 0.75rem; border: 1.5px solid var(--border); background: #fff; cursor: pointer; flex-shrink: 0; transition: all .2s; }
.date-btn:hover { border-color: var(--teal); background: var(--teal-light); }
.date-btn.sel { border-color: var(--teal); background: var(--teal); color: #fff; }
.date-btn .dday { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400); margin-bottom: 2px; }
.date-btn.sel .dday { color: rgba(255,255,255,.8); }
.date-btn .dnum { font-size: 1.3rem; font-weight: 800; }
.date-btn .dmon { font-size: 0.6rem; color: var(--slate-400); }
.date-btn.sel .dmon { color: rgba(255,255,255,.8); }

/* Time slots */
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 0.5rem; margin-bottom: 0.5rem; }
.slot-btn { padding: 0.5rem 0.25rem; border-radius: 0.5rem; border: 1.5px solid var(--border); background: #fff; font-size: 0.78rem; font-weight: 600; color: var(--navy); cursor: pointer; transition: all .2s; text-align: center; }
.slot-btn:hover { border-color: var(--teal); background: var(--teal-light); color: var(--teal); }
.slot-btn.sel { border-color: var(--teal); background: var(--teal); color: #fff; }

/* Patient form */
.summary-box { background: var(--slate-50); border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.875rem 1.1rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
@media(max-width:480px){ .summary-box { grid-template-columns: 1fr; } }
.s-label { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-400); margin-bottom: 2px; }
.s-val { font-weight: 700; color: var(--navy); font-size: 0.85rem; }
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:480px){ .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-size: 0.78rem; font-weight: 600; color: var(--slate-600); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 0.65rem 0.875rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 0.875rem; color: var(--navy); background: #fff; outline: none; transition: border-color .2s; -webkit-appearance: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-10); }
.form-field textarea { resize: vertical; min-height: 75px; }
.field-err { font-size: 0.72rem; color: #dc2626; font-weight: 500; min-height: 1rem; }
.consent-row { display: flex; align-items: flex-start; gap: 0.75rem; background: var(--slate-50); border-radius: 0.5rem; padding: 0.875rem; border: 1px solid var(--border); }
.consent-row input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--teal); flex-shrink: 0; margin-top: 3px; cursor: pointer; }
.consent-row label { font-size: 0.8rem; color: var(--slate-600); cursor: pointer; }
.consent-row strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.submit-btn { width: 100%; padding: 1rem; border-radius: var(--radius); background: var(--teal); color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; transition: all .2s; box-shadow: 0 2px 12px var(--teal-20); margin-top: 1.25rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.submit-btn:hover:not(:disabled) { background: var(--teal-dark); transform: translateY(-1px); }
.submit-btn:disabled { opacity: .65; cursor: not-allowed; }

/* Success */
.success-wrap { text-align: center; padding: 2rem 1rem; }
.success-icon { width: 64px; height: 64px; background: var(--teal-10); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.success-icon svg { width: 32px; height: 32px; color: var(--teal); }
.success-wrap h2 { font-size: 1.5rem; font-weight: 800; color: var(--slate-900); margin-bottom: 0.4rem; }
.success-wrap > p { color: var(--slate-500); margin-bottom: 1.25rem; }
.appt-code { font-size: 0.95rem; font-weight: 700; color: var(--slate-600); background: var(--slate-100); border-radius: 0.5rem; padding: 0.35rem 1rem; display: inline-block; margin-bottom: 1.25rem; font-family: monospace; }
.success-details { background: var(--slate-50); border-radius: 0.75rem; padding: 1rem; margin-bottom: 1.5rem; text-align: left; border: 1px solid var(--border); }
.success-details .row { display: flex; justify-content: space-between; padding: 0.35rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.success-details .row:last-child { border-bottom: none; }
.success-details .row span:first-child { color: var(--slate-500); }
.success-details .row span:last-child { font-weight: 700; color: var(--navy); }
.success-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.btn-wa { background: #25D366; color: #fff; padding: 0.65rem 1.4rem; border-radius: var(--radius); font-weight: 700; font-size: 0.875rem; transition: all .2s; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-wa:hover { background: #1da851; }
.btn-wa svg { width: 16px; height: 16px; }
.btn-again { background: var(--slate-100); color: var(--slate-700); padding: 0.65rem 1.25rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer; }
.btn-again:hover { background: var(--slate-200); }

/* LOCATION */
.location-section { padding: 5rem 1.25rem; background: var(--slate-50); border-top: 1px solid var(--border); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.location-info h2 { font-size: 2rem; font-weight: 800; color: var(--slate-900); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.contact-card { background: #fff; border-radius: 0.75rem; padding: 0.875rem 1.1rem; border: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 0.75rem; box-shadow: var(--shadow-sm); }
.contact-card .ci { width: 36px; height: 36px; background: var(--teal-10); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .ci svg { width: 18px; height: 18px; color: var(--teal); }
.contact-card strong { display: block; font-size: 0.75rem; font-weight: 700; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-card span, .contact-card a { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.contact-card a:hover { color: var(--teal); }
.map-wrap { border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); height: 360px; background: var(--slate-200); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
@media(max-width:768px){ .location-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-section { padding: 5rem 1.25rem; background: #fff; border-top: 1px solid var(--border); }
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-card { background: #fff; border-radius: 1rem; box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; text-align: left; background: none; font-size: 0.93rem; font-weight: 600; color: var(--slate-900); cursor: pointer; transition: color .2s; gap: 0.75rem; }
.faq-q:hover { color: var(--teal); }
.faq-q.open { color: var(--teal); }
.faq-q .chev { width: 18px; height: 18px; color: var(--slate-400); transition: transform .3s; flex-shrink: 0; }
.faq-q.open .chev { transform: rotate(180deg); color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 200px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; color: var(--slate-600); font-size: 0.9rem; line-height: 1.7; }

/* FINAL CTA */
.final-cta { padding: 6rem 1.25rem; background: var(--teal); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.1), transparent 70%); }
.final-cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; letter-spacing: -0.02em; position: relative; }
.final-cta p { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.btn-final { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: var(--teal); padding: 1rem 2.5rem; border-radius: 99px; font-weight: 800; font-size: 1rem; letter-spacing: 0.04em; box-shadow: 0 4px 24px rgba(0,0,0,.2); transition: all .2s; position: relative; }
.btn-final:hover { transform: scale(1.04); box-shadow: 0 8px 36px rgba(0,0,0,.25); }

/* FOOTER */
footer { background: var(--slate-900); color: #cbd5e1; padding: 4rem 1.25rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand-logo .logo-icon { background: var(--teal); }
.footer-brand-logo .logo-name { color: #fff; }
.footer-brand-logo .logo-sub { color: var(--teal); }
.footer-desc { font-size: 0.84rem; line-height: 1.7; color: #94a3b8; margin-bottom: 1rem; }
.footer-disc { font-size: 0.73rem; color: #64748b; line-height: 1.6; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #e2e8f0; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.84rem; color: #94a3b8; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-col .clist { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col .clist li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.81rem; color: #94a3b8; }
.footer-col .clist li svg { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.footer-col .clist a { color: #94a3b8; }
.footer-col .clist a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: #64748b; }
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; } }

/* MOBILE BAR */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,.1); padding: 0.6rem 1rem env(safe-area-inset-bottom); }
.mobile-bar-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
.mbar-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.4rem; border-radius: var(--radius); font-size: 0.62rem; font-weight: 700; gap: 0.2rem; cursor: pointer; border: none; transition: all .15s; }
.mbar-btn svg { width: 20px; height: 20px; }
.mbar-call { background: var(--teal-light); color: var(--teal); }
.mbar-wa { background: #dcfce7; color: #16a34a; }
.mbar-book { background: var(--teal); color: #fff; }
.mbar-call:hover { background: var(--teal); color: #fff; }
.mbar-wa:hover { background: #25D366; color: #fff; }
.mbar-book:hover { background: var(--teal-dark); }
@media(max-width:768px){ .mobile-bar { display: block; } body { padding-bottom: 80px; } }
