@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --teal: #5DB0A8;
  --teal-dark: #489A92;
  --teal-light: #8ECEC8;
  --navy: #143860;
  --navy-dark: #0C2840;
  --navy-light: #1A4A78;
  --white: #ffffff;
  --off-white: #F5F8FA;
  --gray-50: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #b8962e;
  --whatsapp: #25d366;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--navy); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.2; font-family: 'Playfair Display', serif; }
.section-title span { color: var(--teal); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 48px; max-width: 600px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s ease; text-decoration: none; font-family: 'Montserrat', sans-serif; }
.btn-gold { background: var(--teal); color: var(--white); }
.btn-gold:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(93,176,168,0.5); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(93,176,168,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-float { animation: floatPop 2.5s ease-in-out infinite; position: relative; }
.btn-float:hover { animation: none; transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 40px rgba(93,176,168,0.5); }
.btn-outline.btn-float:hover { box-shadow: 0 16px 40px rgba(255,255,255,0.2); }
.btn-gold.btn-float { animation: tealFloat 2.5s ease-in-out infinite; }
.btn-gold.btn-float:hover { animation: none; transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 40px rgba(93,176,168,0.6); }
@keyframes floatPop {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 4px 15px rgba(93,176,168,0.25); }
  50% { transform: translateY(-8px) scale(1.03); box-shadow: 0 16px 35px rgba(93,176,168,0.45); }
}
@keyframes tealFloat {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 4px 20px rgba(93,176,168,0.3); }
  50% { transform: translateY(-10px) scale(1.04); box-shadow: 0 20px 40px rgba(93,176,168,0.5); }
}
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(93,176,168,0.4); } 50% { box-shadow: 0 0 0 12px rgba(93,176,168,0); } }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 56px; width: auto; border-radius: 6px; }
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.logo-text small { display: block; font-size: 0.65rem; font-weight: 400; color: var(--gray-600); letter-spacing: 0.5px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.88rem; font-weight: 500; color: var(--navy-light); transition: color 0.2s; position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--teal); transition: width 0.3s; }
.nav a:hover, .nav a.active { color: var(--teal); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta { background: var(--teal); color: var(--white) !important; padding: 10px 24px !important; border-radius: 50px; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; transform: translateY(-1px); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.mobile-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #143860 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background: url('../images/hero-bg.jpg') center/cover no-repeat; opacity: 0.3; z-index: 0; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,56,96,0.92) 0%, rgba(12,40,64,0.8) 50%, rgba(20,56,96,0.88) 100%); z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(93,176,168,0.2); backdrop-filter: blur(10px); padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(93,176,168,0.3); color: var(--teal-light); font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px; text-transform: uppercase; }
.hero-title { font-size: 3.4rem; font-weight: 800; line-height: 1.1; margin-bottom: 16px; font-family: 'Playfair Display', serif; }
.hero-title span { color: var(--teal); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 520px; line-height: 1.8; font-family: 'Montserrat', sans-serif; font-weight: 300; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-family: 'Montserrat', sans-serif; font-weight: 400; }
.hero-trust-item svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--teal); }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* Glassmorphism Card */
.glass-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 48px 40px; width: 100%; max-width: 440px; box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.glass-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(93,176,168,0.12), transparent 70%); pointer-events: none; }
.glass-card-icon { width: 72px; height: 72px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; position: relative; }
.glass-card-icon svg { width: 72px; height: 72px; filter: drop-shadow(0 4px 12px rgba(93,176,168,0.3)); }
.glass-card-title { color: var(--white); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; text-align: center; font-family: 'Playfair Display', serif; letter-spacing: -0.5px; }
.glass-card-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 32px; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 300; line-height: 1.7; }
.glass-card-actions { display: flex; flex-direction: column; gap: 14px; }
.glass-btn { display: flex; align-items: center; gap: 14px; width: 100%; padding: 16px 24px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; color: var(--white); font-size: 0.95rem; font-weight: 500; font-family: 'Montserrat', sans-serif; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; position: relative; overflow: hidden; }
.glass-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(93,176,168,0.15), transparent); opacity: 0; transition: opacity 0.4s; }
.glass-btn:hover { background: rgba(93,176,168,0.2); border-color: var(--teal); transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 20px rgba(93,176,168,0.15); }
.glass-btn:hover::before { opacity: 1; }
.glass-btn svg { width: 24px; height: 24px; flex-shrink: 0; stroke: var(--teal); transition: transform 0.3s; }
.glass-btn:hover svg { transform: scale(1.1); }
.glass-btn span { position: relative; z-index: 1; }

/* Emotional Section */
.emotional { background: var(--off-white); }
.emotional-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.emotional-card { background: var(--white); padding: 40px 32px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); transition: all 0.4s ease; border: 1px solid var(--gray-100); }
.emotional-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.emotional-icon { font-size: 2.8rem; margin-bottom: 16px; }
.emotional-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.emotional-card p { color: var(--gray-600); font-size: 0.92rem; }

/* Treatments */
.treatments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.treatment-card { background: var(--white); border-radius: var(--radius); padding: 0 0 24px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all 0.4s ease; cursor: pointer; position: relative; overflow: hidden; }
.treatment-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--navy-light)); transform: scaleX(0); transition: transform 0.4s; z-index: 1; }
.treatment-card:hover::before { transform: scaleX(1); }
.treatment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.treatment-img { width: 100%; height: 200px; object-fit: cover; object-position: center; display: block; margin-bottom: 16px; }
.treatment-card h3 { padding: 0 16px; }
.treatment-card p { padding: 0 16px; }
.treatment-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(93,176,168,0.1), rgba(93,176,168,0.05)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
.treatment-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.treatment-card p { font-size: 0.82rem; color: var(--gray-400); }

/* Google Rating */
.rating { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: var(--white); position: relative; overflow: hidden; }
.rating-inner { text-align: center; }
.rating-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 16px; }
.rating-stars svg { width: 36px; height: 36px; }
.rating-number { font-size: 3.5rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.rating-label { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.rating-count { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.rating-logos { display: flex; justify-content: center; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.rating-logo-item { text-align: center; }
.rating-logo-item svg { width: 32px; height: 32px; margin-bottom: 6px; }
.rating-logo-item span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* Doctors */
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.doctor-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all 0.4s ease; }
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.doctor-img { height: 260px; background: linear-gradient(135deg, var(--gray-100), var(--gray-50)); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.doctor-info { padding: 24px; }
.doctor-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.doctor-spec { color: var(--teal); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.doctor-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* Technology */
.tech { background: var(--off-white); }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tech-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all 0.3s; }
.tech-card:hover { border-color: var(--teal); }
.tech-icon { font-size: 2.2rem; margin-bottom: 12px; }
.tech-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tech-card p { font-size: 0.82rem; color: var(--gray-400); }

/* Branches */
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.branch-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all 0.4s ease; }
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.branch-map { height: 180px; background: var(--gray-100); }
.branch-map iframe { width: 100%; height: 100%; border: 0; }
.branch-info { padding: 20px 24px 24px; }
.branch-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.branch-info h3 svg { display: inline; vertical-align: middle; margin-right: 4px; }
.branch-addr { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 4px; }
.branch-phone { font-size: 0.85rem; color: var(--teal); font-weight: 600; }
.branch-links { display: flex; gap: 10px; margin-top: 14px; }
.branch-links a { font-size: 0.8rem; padding: 8px 18px; border-radius: 50px; font-weight: 500; }

/* Appointment Form Section */
.appointment-section { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); position: relative; overflow: hidden; }
.appointment-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(93,176,168,0.12), transparent 60%); }
.appointment-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.appointment-text { color: var(--white); }
.appointment-text .section-title { color: var(--white); }
.appointment-text .section-subtitle { color: rgba(255,255,255,0.65); }
.appointment-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.appointment-feature { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.appointment-feature svg { flex-shrink: 0; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-xl); }
.form-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-100); border-radius: 10px; font-size: 0.9rem; font-family: inherit; transition: border-color 0.3s; background: var(--off-white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-btn { width: 100%; padding: 14px; font-size: 1rem; justify-content: center; background: var(--teal); color: var(--white); border: none; border-radius: 50px; font-weight: 700; transition: all 0.3s; font-family: 'Montserrat', sans-serif; }
.form-btn:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(93,176,168,0.4); }

/* Footer */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text small { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; stroke: var(--teal) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--teal); }

/* Floating WhatsApp */
.floating-whatsapp { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s ease; cursor: pointer; animation: float 3s ease-in-out infinite; }
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.floating-whatsapp svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Page Banner */
.page-banner { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 140px 0 60px; text-align: center; color: var(--white); position: relative; }
.page-banner h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.page-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--teal); }

/* Treatment Detail */
.treatment-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.treatment-detail-visual { background: var(--off-white); border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; overflow: hidden; }
.treatment-detail-img { width: 100%; height: 400px; object-fit: cover; object-position: center; border-radius: var(--radius-lg); display: block; }
.treatment-detail-icon { font-size: 5rem; margin-bottom: 20px; }
.treatment-detail h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.treatment-detail p { color: var(--gray-600); margin-bottom: 20px; line-height: 1.8; }
.treatment-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.treatment-benefit { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--navy); }
.treatment-benefit svg { flex-shrink: 0; }

/* Branch Detail */
.branch-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.branch-detail-map { border-radius: var(--radius); overflow: hidden; height: 400px; }
.branch-detail-map iframe { width: 100%; height: 100%; border: 0; }
.branch-detail-info h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.branch-detail-info p { color: var(--gray-600); margin-bottom: 12px; }
.branch-detail-meta { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.branch-detail-meta li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--gray-600); }
.branch-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: rgba(93,176,168,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: 0.88rem; color: var(--gray-600); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { height: 260px; background: linear-gradient(135deg, var(--gray-100), var(--gray-50)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: transform 0.4s; cursor: pointer; }
.gallery-item:hover { transform: scale(1.03); }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: all 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Treatment Carousel */
.treatment-carousel { position: relative; overflow: hidden; }
.treatment-slides { display: flex; transition: transform 0.5s ease; }
.treatment-slide { min-width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gray-200); border: none; cursor: pointer; transition: background 0.3s; }
.carousel-dot.active { background: var(--teal); }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; font-size: 1.2rem; }
.carousel-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
@media (max-width: 768px) { .treatment-slide { grid-template-columns: repeat(2, 1fr); } }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .glass-card { margin: 0 auto; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .appointment-inner { grid-template-columns: 1fr; }
  .treatment-detail-grid { grid-template-columns: 1fr; }
  .branch-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .emotional-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; gap: 16px; box-shadow: var(--shadow-lg); }
  .nav.open { display: flex; }
  .mobile-toggle { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .section { padding: 48px 0; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .treatment-img { height: 160px; }
  .doctors-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .emotional-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .treatment-benefits { grid-template-columns: 1fr; }
  .treatment-detail-img { height: 280px; }
  .page-banner h1 { font-size: 1.8rem; }
  .hero-trust { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* === Sticky Mobile Appointment Bar === */
.sticky-appt-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); padding: 10px 16px; z-index: 9999; align-items: center; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.sticky-appt-bar .sa-phone { color: var(--white); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.sticky-appt-bar .sa-phone svg { width: 16px; height: 16px; color: var(--teal-light); }
.sticky-appt-bar .sa-btn { flex: 1; background: var(--teal); color: var(--white); border: none; border-radius: 8px; padding: 10px 16px; font-size: 0.82rem; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; transition: background 0.2s; font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px; }
.sticky-appt-bar .sa-btn:hover { background: var(--teal-dark); }
.sticky-appt-bar .sa-btn svg { width: 16px; height: 16px; vertical-align: middle; margin-right: 6px; }
@media (max-width: 768px) { .sticky-appt-bar { display: flex; } body { padding-bottom: 60px; } }

/* === FAQ Accordion === */
.faq-section { background: var(--white); padding: 80px 0; }
.faq-list { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--teal-light); }
.faq-q { width: 100%; background: var(--off-white); border: none; padding: 16px 20px; text-align: left; font-size: 0.92rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: 'Montserrat', sans-serif; transition: background 0.2s; }
.faq-q::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--teal); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { background: var(--gray-50); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 16px; }
.faq-a div { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* === Interactive Branch Map === */
.branches-map-section { margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--gray-100); }
.branches-map-section .section-title { margin-bottom: 8px; }
.branches-map-layout { display: grid; grid-template-columns: 200px 1fr; gap: 20px; margin-top: 20px; }
.branches-map-nav { display: flex; flex-direction: column; gap: 6px; }
.bmp-btn { background: var(--white); border: 2px solid var(--gray-100); border-radius: 10px; padding: 10px 14px; font-size: 0.8rem; font-weight: 600; color: var(--gray-600); cursor: pointer; transition: all 0.2s; font-family: 'Montserrat', sans-serif; display: flex; align-items: center; gap: 8px; text-align: left; }
.bmp-btn span { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); flex-shrink: 0; transition: background 0.2s; }
.bmp-btn:hover { border-color: var(--teal-light); color: var(--teal); }
.bmp-btn:hover span { background: var(--teal-light); }
.bmp-btn.active { border-color: var(--teal); color: var(--teal); background: rgba(93,176,168,0.06); }
.bmp-btn.active span { background: var(--teal); }
.branches-map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 400px; }
#gmaps-canvas { width: 100%; height: 400px; }
@media (max-width: 768px) {
  .branches-map-layout { grid-template-columns: 1fr; }
  .branches-map-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .bmp-btn { flex: 1; min-width: calc(33% - 4px); text-align: center; justify-content: center; padding: 8px 10px; font-size: 0.72rem; }
  #gmaps-canvas { height: 280px; }
}

/* === EMI Banner === */
.hero-emi { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; padding: 10px 20px; background: rgba(255,255,255,0.08); border-radius: 50px; backdrop-filter: blur(8px); flex-wrap: wrap; }
.emi-item { display: flex; align-items: center; gap: 6px; }
.emi-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.emi-label { color: var(--white); font-size: 0.78rem; font-weight: 600; white-space: nowrap; }
.emi-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }
@media (max-width: 480px) { .hero-emi { gap: 10px; padding: 8px 14px; } .emi-label { font-size: 0.7rem; } .emi-divider { display: none; } }

/* === Testimonials Section === */
.testimonials { background: var(--off-white); padding: 80px 0; }
.testimonial-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.testimonial-ba h3, .testimonial-reviews h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 20px; }
.testimonial-slider { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--gray-100); }
.testimonial-slider .ba-pair { display: none; width: 100%; height: 100%; }
.testimonial-slider .ba-pair.active { display: flex; }
.testimonial-slider .ba-pair img { width: 50%; height: 100%; object-fit: cover; }
.testimonial-slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
.ts-prev, .ts-next { background: var(--navy); color: var(--white); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.ts-prev:hover, .ts-next:hover { background: var(--teal); }
.testimonial-ba-more { text-align: center; margin-top: 16px; }
.tr-grid { display: flex; flex-direction: column; gap: 16px; }
.tr-card { background: var(--white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--teal); }
.tr-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 6px; }
.tr-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 8px; font-style: italic; }
.tr-author strong { font-size: 0.82rem; color: var(--navy); display: block; }
.tr-author span { font-size: 0.76rem; color: var(--gray-400); }
.tr-google { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 12px 16px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.tr-google svg { flex-shrink: 0; }
.tr-google span { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); }
.tr-google .btn { margin-left: auto; }
.testimonial-videos { margin-top: 50px; }
.testimonial-videos h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); text-align: center; margin-bottom: 24px; }
.tv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tv-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); text-align: center; }
.tv-placeholder { aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: transform 0.3s; }
.tv-placeholder:hover { transform: scale(1.03); }
.tv-placeholder span { color: var(--white); font-size: 0.75rem; opacity: 0.85; font-weight: 500; }
.tv-card p { padding: 10px; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
@media (max-width: 768px) { .testimonial-layout { grid-template-columns: 1fr; } .tv-grid { grid-template-columns: 1fr; } }

/* === Chatbot Widget === */
.chatbot-btn { position: fixed; bottom: 100px; left: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--teal); border: none; cursor: pointer; z-index: 999; box-shadow: 0 4px 20px rgba(93,176,168,0.4); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.chatbot-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(93,176,168,0.5); }
.chatbot-btn svg { width: 26px; height: 26px; color: var(--white); }
.chatbot-btn .close-icon { display: none; }
.chatbot-btn.open .chat-icon { display: none; }
.chatbot-btn.open .close-icon { display: block; }
.chatbot-panel { position: fixed; bottom: 170px; left: 24px; width: 340px; max-height: 520px; background: var(--white); border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,0.18); z-index: 998; display: none; flex-direction: column; overflow: hidden; animation: slideUp 0.35s ease; }
.chatbot-panel.open { display: flex; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chatbot-header { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.chatbot-header-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.chatbot-header-icon svg { width: 18px; height: 18px; color: var(--white); }
.chatbot-header-text { flex: 1; }
.chatbot-header-text h4 { font-size: 0.9rem; color: var(--white); font-weight: 700; font-family: 'Playfair Display', serif; margin: 0; }
.chatbot-header-text span { font-size: 0.68rem; color: rgba(255,255,255,0.8); }
.chatbot-body { padding: 12px 14px; overflow-y: auto; flex: 1; max-height: 320px; display: flex; flex-direction: column; gap: 0; }
.chat-messages { display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 88%; padding: 10px 14px; border-radius: 14px; font-size: 0.84rem; line-height: 1.5; animation: msgIn 0.25s ease; word-wrap: break-word; }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg.user { align-self: flex-end; background: var(--teal); color: var(--white); border-bottom-right-radius: 4px; }
.chat-msg.bot { align-self: flex-start; background: var(--off-white); color: var(--gray-800); border-bottom-left-radius: 4px; }
.chat-msg strong { color: var(--navy); }
.chat-msg.bot strong { color: var(--teal-dark); }
.chat-msg .chat-whatsapp-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; background: #25d366; color: var(--white); padding: 7px 14px; border-radius: 8px; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.chat-msg .chat-whatsapp-link:hover { background: #1ebe5c; }
.typing-indicator { display: flex; align-items: center; gap: 4px; padding: 10px 14px; align-self: flex-start; background: var(--off-white); border-radius: 14px; border-bottom-left-radius: 4px; margin-top: 4px; }
.typing-indicator span { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-400); animation: typingDot 1.4s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); } 30% { opacity: 1; transform: scale(1); } }
.chatbot-footer { padding: 10px 14px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; }
.chatbot-footer-input { flex: 1; border: 1.5px solid var(--gray-100); border-radius: 20px; padding: 8px 14px; font-size: 0.82rem; font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s; }
.chatbot-footer-input:focus { border-color: var(--teal); }
.chatbot-footer-send { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; flex-shrink: 0; }
.chatbot-footer-send:hover { background: var(--teal-dark); }
.chatbot-footer-send svg { width: 16px; height: 16px; color: var(--white); }
.chatbot-footer-note { font-size: 0.62rem; color: var(--gray-400); text-align: center; padding: 6px 14px 8px; border-top: 1px solid var(--gray-50); }
.chatbot-footer-note a { color: var(--gray-400); }
@media (max-width: 480px) { .chatbot-panel { left: 12px; right: 12px; width: auto; bottom: 160px; max-height: 460px; } .chatbot-btn { left: 12px; bottom: 90px; } }

/* === Before & After Slider === */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; margin-top: 40px; }
.ba-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ba-label { padding: 16px 20px 0; font-size: 1.1rem; font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; letter-spacing: 0.3px; }
.ba-container { position: relative; width: 100%; height: 320px; overflow: hidden; cursor: ew-resize; user-select: none; -webkit-user-select: none; margin-top: 12px; background: var(--gray-100); }
.ba-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; -webkit-user-drag: none; }
.ba-after { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; border-right: 3px solid var(--white); }
.ba-tag { position: absolute; top: 12px; padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; pointer-events: none; }
.ba-tag-before { left: 12px; background: rgba(20,56,96,0.85); color: var(--white); }
.ba-tag-after { right: 12px; background: rgba(93,176,168,0.9); color: var(--white); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%); cursor: ew-resize; z-index: 10; display: flex; align-items: center; justify-content: center; }
.ba-handle::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: var(--white); transform: translateX(-50%); box-shadow: 0 0 8px rgba(0,0,0,0.3); }
.ba-handle-icon { width: 40px; height: 40px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,0.25); z-index: 2; transition: transform 0.2s ease; border: 2px solid var(--teal); }
.ba-handle-icon svg { width: 20px; height: 20px; }
.ba-container:active .ba-handle-icon { transform: scale(1.1); }
.ba-desc { padding: 16px 20px 20px; font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }
@media (max-width: 480px) { .ba-grid { grid-template-columns: 1fr; gap: 24px; } .ba-container { height: 260px; } }

@media (max-width: 480px) {
  .treatments-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .treatment-card { padding: 20px 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-title { font-size: 1.8rem; }
  .container { padding: 0 16px; }
}
