/* ===== SMILECARE DENTAL CLINIC - PREMIUM STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #112040;
  --navy-light: #1a3055;
  --teal: #1eb8a0;
  --teal-light: #2dd4b8;
  --teal-pale: rgba(30,184,160,0.12);
  --gold: #c9a84c;
  --gold-light: #e8c56a;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-100: #f0f4f8;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-light: #64748b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --shadow-teal: 0 8px 32px rgba(30,184,160,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { font-size: 1rem; color: var(--text-mid); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy); }
.text-center { text-align: center; }
.hidden { display: none; }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-teal { background: var(--teal-pale); color: var(--teal); border: 1px solid rgba(30,184,160,0.3); }
.badge-gold { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }

.section-header { margin-bottom: 56px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; color: var(--text-dark); }
.section-header p { max-width: 580px; font-size: 1.08rem; color: var(--text-light); }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(30,184,160,0.35); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(10,22,40,0.97); backdrop-filter: blur(16px); padding: 12px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 40px; height: 40px; }
.logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.logo-text span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.93rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(30,184,160,0.12); }
.nav-links .nav-admin { opacity: 0.4; font-size: 0.82rem; }
.nav-links .nav-admin:hover { opacity: 0.7; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: var(--navy); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(30,184,160,0.12) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(30,184,160,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(30,184,160,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 140px 0 80px; position: relative; z-index: 1; }
.hero-badge { margin-bottom: 20px; }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--teal-light); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 480px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--teal-light); }
.trust-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-main { background: linear-gradient(135deg, rgba(26,48,85,0.9), rgba(17,32,64,0.95)); border: 1px solid rgba(30,184,160,0.2); border-radius: var(--radius-lg); padding: 32px; width: 100%; max-width: 420px; backdrop-filter: blur(12px); box-shadow: var(--shadow-lg), 0 0 80px rgba(30,184,160,0.08); }
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-card-icon { width: 48px; height: 48px; background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.hero-card-icon svg { width: 26px; height: 26px; color: var(--teal); }
.hero-card-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.hero-card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.hero-services-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.hero-svc-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px; }
.hero-svc-icon { font-size: 1.4rem; margin-bottom: 6px; }
.hero-svc-name { font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.hero-svc-price { font-size: 0.75rem; color: var(--teal); }
.hero-availability { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(30,184,160,0.1); border-radius: 10px; border: 1px solid rgba(30,184,160,0.2); }
.avail-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse-dot 2s infinite; }
.avail-text { font-size: 0.85rem; color: var(--teal-light); font-weight: 500; }
.hero-floating-badge { position: absolute; top: -20px; right: -20px; background: var(--gold); color: var(--white); border-radius: var(--radius-md); padding: 14px 18px; box-shadow: 0 8px 24px rgba(201,168,76,0.35); text-align: center; }
.float-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; display: block; }
.float-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; }

@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.6;transform:scale(1.3)} }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy-mid); border-top: 1px solid rgba(30,184,160,0.15); border-bottom: 1px solid rgba(30,184,160,0.15); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 10px; }
.trust-bar-item svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }
.trust-bar-text { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; position: relative; }
.about-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, rgba(30,184,160,0.3) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.about-img-placeholder svg { width: 80px; height: 80px; color: var(--teal); opacity: 0.6; }
.about-img-placeholder p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.about-stat-card { position: absolute; bottom: -24px; right: -24px; background: var(--white); border-radius: var(--radius-md); padding: 20px 24px; box-shadow: var(--shadow-md); }
.about-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--teal); }
.about-stat-label { font-size: 0.82rem; color: var(--text-light); }
.about-content .badge { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 20px; color: var(--text-light); }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-mid); }
.about-points li::before { content: ''; width: 20px; height: 20px; background: var(--teal); mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 2px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { width: 56px; height: 56px; background: var(--teal-pale); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon-wrap svg { width: 28px; height: 28px; color: var(--teal); }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 20px; }
.service-meta { display: flex; align-items: center; justify-content: space-between; }
.service-duration { font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.service-price { font-weight: 700; color: var(--teal); font-size: 0.95rem; }
.service-card .badge { margin-bottom: 16px; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px; text-align: center; transition: var(--transition); }
.why-card:hover { background: rgba(30,184,160,0.08); border-color: rgba(30,184,160,0.25); }
.why-icon { width: 64px; height: 64px; background: var(--teal-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-icon svg { width: 32px; height: 32px; color: var(--teal); }
.why-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ===== PROCESS ===== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0; position: relative; }
.process-steps::after { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); z-index: 0; }
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); box-shadow: 0 0 0 8px rgba(30,184,160,0.15); }
.step-item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step-item p { font-size: 0.88rem; color: var(--text-light); }

/* ===== DOCTORS ===== */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.doctor-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.doctor-img { aspect-ratio: 1; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, rgba(30,184,160,0.3) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.doctor-img svg { width: 72px; height: 72px; color: rgba(30,184,160,0.7); }
.doctor-info { padding: 24px; }
.doctor-info h3 { margin-bottom: 4px; font-size: 1.15rem; }
.doctor-title { font-size: 0.82rem; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.doctor-specialty { font-size: 0.88rem; color: var(--text-light); margin-bottom: 12px; }
.doctor-exp { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-light); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-card { border-radius: var(--radius-md); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.gallery-visual { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, rgba(30,184,160,0.25) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; transition: var(--transition); }
.gallery-card:hover .gallery-visual { transform: scale(1.03); }
.gallery-visual svg { width: 48px; height: 48px; color: rgba(30,184,160,0.7); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.9), transparent); opacity: 0; transition: var(--transition); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.gallery-cat-badge { position: absolute; top: 12px; left: 12px; }

/* Before/After specific */
.before-after-card .gallery-visual { display: grid; grid-template-columns: 1fr 1fr; }
.ba-half { flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.ba-before { background: rgba(100,116,139,0.3); }
.ba-after { background: rgba(30,184,160,0.2); }
.ba-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; align-items: start; }
.pricing-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px 32px; position: relative; transition: var(--transition); }
.pricing-card.popular { border-color: var(--teal); box-shadow: var(--shadow-teal); transform: translateY(-8px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); padding: 4px 20px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; white-space: nowrap; }
.pricing-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.pricing-period { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
.pricing-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-200); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-mid); }
.pricing-features li::before { content: ''; width: 18px; height: 18px; background: var(--teal); mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars span { color: var(--gold); font-size: 1.1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--teal), var(--navy-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-location { font-size: 0.82rem; color: var(--text-light); }
.author-service { font-size: 0.78rem; color: var(--teal); font-weight: 600; margin-top: 2px; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--teal-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.92rem; color: rgba(255,255,255,0.6); }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; gap: 16px; }
.faq-question h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--teal); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer p { font-size: 0.93rem; color: var(--text-light); line-height: 1.8; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, rgba(30,184,160,0.3) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-img svg { width: 56px; height: 56px; color: rgba(30,184,160,0.6); }
.blog-img-cat { position: absolute; top: 12px; left: 12px; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { font-size: 0.88rem; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 6px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info h2 { margin-bottom: 8px; }
.contact-info p { margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--teal-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 22px; height: 22px; color: var(--teal); }
.contact-detail-label { font-size: 0.82rem; color: var(--text-light); margin-bottom: 2px; }
.contact-detail-val { font-weight: 600; font-size: 0.95rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.hour-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.93rem; color: var(--text-dark); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-pale); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-success { display: none; text-align: center; padding: 24px; background: rgba(30,184,160,0.1); border-radius: var(--radius-md); border: 1px solid rgba(30,184,160,0.3); }
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--teal); margin: 0 auto 12px; }

/* ===== MAP ===== */
.map-section { background: var(--navy); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(30,184,160,0.2); }
.map-placeholder { height: 380px; background: linear-gradient(135deg, rgba(17,32,64,0.95), rgba(10,22,40,1)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; position: relative; }
.map-placeholder svg { width: 56px; height: 56px; color: var(--teal); opacity: 0.7; }
.map-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.map-pin-animation { position: relative; }
.map-pin-animation::after { content: ''; position: absolute; top: 50%; left: 50%; width: 60px; height: 60px; background: rgba(30,184,160,0.15); border-radius: 50%; transform: translate(-50%,-50%); animation: ripple 2s infinite; }
@keyframes ripple { 0%{transform:translate(-50%,-50%) scale(0.5);opacity:1} 100%{transform:translate(-50%,-50%) scale(2.5);opacity:0} }
.map-info { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.map-info-item { display: flex; align-items: center; gap: 10px; }
.map-info-item svg { width: 20px; height: 20px; color: var(--teal); }
.map-info-item span { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: linear-gradient(135deg, var(--teal) 0%, #0d8870 100%); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { color: var(--white); margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.85); }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 440px; }
.newsletter-form input { flex: 1; padding: 14px 20px; border-radius: 50px; border: none; outline: none; font-family: var(--font-body); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); border-top: 1px solid rgba(30,184,160,0.12); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 40px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-link:hover { background: var(--teal-pale); border-color: var(--teal); }
.social-link svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--teal); margin-top: 2px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.82rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ===== WHATSAPP ===== */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-btn:hover { transform: scale(1.1); background: #1eb856; }
.whatsapp-btn svg { width: 30px; height: 30px; color: var(--white); }

/* ===== ADMIN PAGES ===== */
.admin-login-page { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-login-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(30,184,160,0.2); border-radius: var(--radius-lg); padding: 48px; width: 100%; max-width: 440px; backdrop-filter: blur(12px); }
.admin-login-card .logo { justify-content: center; margin-bottom: 8px; }
.admin-login-title { text-align: center; color: var(--white); margin-bottom: 8px; }
.admin-login-sub { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 36px; }
.admin-login-card .form-group label { color: rgba(255,255,255,0.7); }
.admin-login-card .form-group input { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: var(--white); }
.admin-login-card .form-group input:focus { border-color: var(--teal); background: rgba(255,255,255,0.08); }
.admin-login-card .form-group input::placeholder { color: rgba(255,255,255,0.3); }
.admin-login-card .btn { width: 100%; justify-content: center; }
.login-error { color: #f87171; font-size: 0.88rem; text-align: center; margin-bottom: 16px; display: none; }
.login-error.show { display: block; }

/* Admin Dashboard */
.admin-layout { display: flex; min-height: 100vh; background: var(--gray-100); }
.admin-sidebar { width: 260px; background: var(--navy); display: flex; flex-direction: column; flex-shrink: 0; }
.sidebar-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sidebar-nav { flex: 1; padding: 16px 12px; }
.sidebar-nav-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: var(--transition); margin-bottom: 4px; border: none; background: none; width: 100%; text-align: left; }
.sidebar-nav-item:hover, .sidebar-nav-item.active { background: rgba(30,184,160,0.12); color: var(--white); }
.sidebar-nav-item.active { color: var(--teal-light); }
.sidebar-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.25); padding: 16px 14px 8px; }
.sidebar-footer { padding: 16px 12px; border-top: 1px solid rgba(255,255,255,0.07); }
.admin-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.admin-topbar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.admin-user { display: flex; align-items: center; gap: 10px; }
.admin-avatar { width: 36px; height: 36px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.9rem; }
.admin-content { flex: 1; overflow-y: auto; padding: 28px; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.stats-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--white); border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--gray-200); display: flex; align-items: flex-start; justify-content: space-between; }
.stat-card-info h3 { font-family: var(--font-display); font-size: 2rem; color: var(--teal); margin-bottom: 4px; }
.stat-card-info p { font-size: 0.82rem; color: var(--text-light); }
.stat-card-icon { width: 44px; height: 44px; background: var(--teal-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.stat-card-icon svg { width: 22px; height: 22px; color: var(--teal); }
.admin-table-wrap { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); overflow: hidden; }
.admin-table-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--gray-200); }
.admin-table-header h3 { font-size: 1rem; font-family: var(--font-body); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 20px; text-align: left; font-size: 0.88rem; border-bottom: 1px solid var(--gray-100); }
th { font-weight: 700; color: var(--text-light); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; background: var(--gray-100); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(30,184,160,0.03); }
.status-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 50px; font-size: 0.76rem; font-weight: 600; }
.status-pending { background: rgba(251,191,36,0.12); color: #b45309; }
.status-confirmed { background: rgba(30,184,160,0.12); color: #0d8870; }
.status-cancelled { background: rgba(239,68,68,0.1); color: #dc2626; }
.status-completed { background: rgba(99,102,241,0.1); color: #4338ca; }
.btn-icon { width: 32px; height: 32px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: var(--transition); }
.btn-icon-danger { background: rgba(239,68,68,0.1); color: #dc2626; }
.btn-icon-danger:hover { background: #dc2626; color: white; }
.btn-icon-edit { background: rgba(30,184,160,0.1); color: var(--teal); }
.btn-icon-edit:hover { background: var(--teal); color: white; }
.admin-form { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--gray-200); max-width: 700px; }
.admin-form h3 { margin-bottom: 24px; font-family: var(--font-body); }

/* ===== LOADING ===== */
.loading-spinner { display: flex; justify-content: center; padding: 48px; }
.spinner { width: 40px; height: 40px; border: 3px solid var(--gray-200); border-top-color: var(--teal); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 64px 24px; color: var(--text-light); }
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 16px; opacity: 0.4; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--navy-mid); flex-direction: column; padding: 80px 24px 24px; gap: 4px; transition: right 0.35s ease; z-index: 999; box-shadow: -8px 0 40px rgba(0,0,0,0.3); }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; padding: 12px 16px; border-radius: 10px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-inner { grid-template-columns: 1fr; padding: 120px 0 60px; }
  .hero-visual { display: none; }
  .hero-trust { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stat-card { bottom: 16px; right: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .process-steps::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { width: 100%; max-width: 100%; flex-direction: column; }
  .admin-sidebar { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ===== PAGE-SPECIFIC ===== */
.page-hero { background: var(--navy); padding: 160px 0 80px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.08rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--teal); font-size: 0.88rem; }

/* Privacy / Terms */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-body); font-size: 1.3rem; margin: 36px 0 12px; color: var(--text-dark); }
.legal-content h3 { font-family: var(--font-body); font-size: 1.05rem; margin: 24px 0 8px; }
.legal-content p { margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-mid); }

/* Notification toast */
.toast { position: fixed; bottom: 100px; right: 28px; background: var(--navy); color: var(--white); padding: 14px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); font-size: 0.9rem; z-index: 9999; transform: translateX(110%); transition: transform 0.3s ease; border-left: 3px solid var(--teal); max-width: 320px; }
.toast.show { transform: translateX(0); }
.toast.error { border-color: #f87171; }

/* ── REAL PHOTO OVERRIDES ──────────────────────────────────── */

/* About section real image */
.about-img-wrap .about-real-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; border-radius: var(--radius-lg);
}

/* Hero real image */
.hero-real-img {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden; z-index: 0;
}
.hero-real-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; opacity: 0.35;
}
.hero-card-main { position: relative; z-index: 1; }
.hero-floating-badge { position: relative; z-index: 2; }

/* Doctor card real photo */
.doctor-img {
  background: none !important;
  overflow: hidden;
}
.doctor-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.doctor-card:hover .doctor-img img { transform: scale(1.05); }
.doctor-img svg { display: none !important; }

/* Blog card real photo */
.blog-img {
  background: none !important;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img svg { display: none !important; }

/* Gallery — before/after real photos */
.ba-half {
  position: relative; overflow: hidden;
  background: none !important;
}
.ba-half img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.ba-half svg { display: none !important; }
.ba-label {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 20px;
  pointer-events: none;
}

/* Gallery — clinic full image */
.gallery-visual {
  background: none !important;
  overflow: hidden;
}
.gallery-visual svg { display: none !important; }
.gallery-full-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-full-img { transform: scale(1.05); }

/* Gallery page — large before/after cards */
.gfi-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.gfi-svg-mock { display: none !important; }

/* About img placeholder — hide old SVG placeholder */
.about-img-placeholder { display: none !important; }

/* ── FIX OVERSIZED SVG ICONS ───────────────────────────────── */

/* Tech icon — was missing CSS entirely, SVG rendered at ~300px */
.tech-icon {
  width: 64px; height: 64px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.tech-icon svg { width: 36px; height: 36px; }
.tech-icon img { width: 36px; height: 36px; object-fit: cover; border-radius: 6px; }

/* Tech grid layout */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tech-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.tech-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--navy); }
.tech-card p  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

@media (max-width: 900px) { .tech-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .tech-grid { grid-template-columns: 1fr; } }

/* Services full grid on services page */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .services-full-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-full-grid { grid-template-columns: 1fr; } }

/* Service full card (services page) */
.service-full-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-full-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }

.sfc-img {
  width: 100%; height: 180px;
  overflow: hidden; position: relative;
}
.sfc-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.service-full-card:hover .sfc-img img { transform: scale(1.06); }
.sfc-img svg { display: none !important; }

.sfc-body { padding: 1.5rem; }
.sfc-body .badge { margin-bottom: 0.75rem; display: inline-block; }
.sfc-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--navy); }
.sfc-body p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1rem; }
.sfc-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.75rem; border-top: 1px solid var(--gray-100);
  font-size: 0.8125rem;
}
.sfc-duration { color: var(--gray-600); display: flex; align-items: center; gap: 4px; }
.sfc-price { color: var(--teal); font-weight: 700; }

/* page-hero-bg — fix the arc: it's an empty div positioned below the hero */
.page-hero { position: relative; overflow: visible; }
.page-hero-bg {
  display: none; /* hide entirely — was causing the teal arc under the hero */
}

/* Fix homepage hero-visual oversized SVG in hero-card-icon */
.hero-card-icon svg { width: 28px !important; height: 28px !important; }
.hero-svc-icon { font-size: 1rem !important; }

/* Constrain all unconstrained SVGs within section content to never overflow */
.section svg:not([width]):not([class]) { max-width: 48px; max-height: 48px; }

/* ── FIX ALL MISSING CSS CLASSES ────────────────────────────── */

/* Payment section */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .payment-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .payment-grid { grid-template-columns: 1fr; } }

.payment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.payment-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.payment-card h3 { font-size: 1rem; margin: 0.75rem 0 0.5rem; color: var(--navy); }
.payment-card p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

.payment-icon {
  width: 64px; height: 64px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.payment-icon svg { width: 32px; height: 32px; }
.payment-icon img { width: 32px; height: 32px; object-fit: cover; border-radius: 4px; }

/* Services category nav */
.services-cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  position: sticky; top: 72px; z-index: 40;
}
.cat-nav-inner {
  display: flex; gap: 0.5rem;
  padding: 1rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.cat-btn:hover { border-color: var(--teal); color: var(--teal); }
.cat-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* Contact info icons */
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--teal); }

/* Insurance / benefit / feature icons */
.insurance-icon,
.benefit-icon,
.feature-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.insurance-icon svg,
.benefit-icon svg,
.feature-icon svg { width: 24px; height: 24px; color: var(--teal); }

/* Targeted SVG size constraints — only for known unsized containers */
.tech-icon svg, .tech-icon img { width: 36px; height: 36px; }
.payment-icon svg { width: 30px; height: 30px; }
.why-icon svg    { width: 28px; height: 28px; }
.step-icon svg   { width: 28px; height: 28px; }
.sfc-icon        { display: none !important; }

/* Services page hero */
.services-page-section { padding-top: 2rem; }

/* Prevent any inline SVG without width from expanding past its container */
svg { max-width: 100%; height: auto; }

/* ── EMOJI REMOVAL FIXES ─────────────────────────────────── */

/* Hero service icons — now SVG, not emoji chars */
.hero-svc-icon {
  font-size: 0 !important;          /* kill any residual text/emoji */
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(30,184,160,0.15);
  border-radius: 8px;
  margin-bottom: 8px;
}
.hero-svc-icon svg {
  width: 18px !important; height: 18px !important;
  color: var(--teal-light);
  stroke: var(--teal-light);
}

/* Star ratings — SVG stars in testimonials */
.stars { display: flex; align-items: center; gap: 1px; margin-bottom: 12px; }
.stars svg { flex-shrink: 0; }

/* Close button SVG X */
.modal-close svg { display: block; }

/* Trust badge star */
.trust-num svg { vertical-align: middle; margin-top: -2px; }

/* Admin star display */
.testimonials-stars svg { display: inline-block; }

/* ═══════════════════════════════════════════════════════════
   INTERNATIONAL PREMIUM UPGRADE — Photo-First Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Hero Card Photo Icon ─────────────────────────────────── */
.hero-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-card-icon img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

/* ── Hero Service Mini Icons ──────────────────────────────── */
.hero-svc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.hero-svc-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Why-Us Photo Cards ───────────────────────────────────── */
.why-icon {
  width: 80px; height: 80px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.why-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.why-card:hover .why-icon img { transform: scale(1.08); }

/* ── Process Step Photos ──────────────────────────────────── */
.step-num {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 4px rgba(30,184,160,0.3), 0 8px 24px rgba(0,0,0,0.2);
}
.step-num img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.step-num-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  background: rgba(10,22,40,0.55);
  backdrop-filter: blur(2px);
}

/* ── Trust Bar Photo Icons ────────────────────────────────── */
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.trust-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Service Card Photo Icons ─────────────────────────────── */
.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.service-icon-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon-img { transform: scale(1.1); }

/* ── Contact Info Icon Photos ─────────────────────────────── */
.contact-info-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.contact-info-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.contact-info-icon:hover img { transform: scale(1.08); }

/* ── Payment Icon Photos ──────────────────────────────────── */
.payment-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.payment-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.payment-card:hover .payment-icon img { transform: scale(1.08); }

/* ── Tech Card Photo Icons ────────────────────────────────── */
.tech-icon {
  width: 72px; height: 72px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.tech-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tech-card:hover .tech-icon img { transform: scale(1.1); }

/* ── Footer Contact Images ────────────────────────────────── */
.footer-contact-img {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ── List Check Images ────────────────────────────────────── */
.list-check-img {
  width: 18px; height: 18px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  flex-shrink: 0;
  margin-right: 4px;
  display: inline-block;
}
li .list-check-img {
  display: inline-block;
  vertical-align: middle;
}

/* ── Blog sidebar / FAQ sidebar images ───────────────────────*/
.blog-sidebar-img,
.faq-sidebar-img {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── FAQ Arrow — CSS only (no SVG) ───────────────────────── */
.faq-arrow-indicator {
  display: block;
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-arrow-indicator::before,
.faq-arrow-indicator::after {
  content: '';
  position: absolute;
  background: var(--gray-600);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.faq-arrow-indicator::before {
  width: 10px; height: 2px;
  top: 50%; left: 2px;
  transform: translateY(-50%) rotate(40deg);
  transform-origin: right center;
}
.faq-arrow-indicator::after {
  width: 10px; height: 2px;
  top: 50%; right: 2px;
  transform: translateY(-50%) rotate(-40deg);
  transform-origin: left center;
}
.faq-item.open .faq-arrow-indicator::before {
  transform: translateY(-50%) rotate(-40deg);
}
.faq-item.open .faq-arrow-indicator::after {
  transform: translateY(-50%) rotate(40deg);
}

/* ── Duration / Experience small images ───────────────────── */
.duration-img, .exp-img {
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}

/* ── Gallery page fixes ───────────────────────────────────── */
.gfi-visual {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--gray-100);
  height: 220px;
}
.gfi-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-full-item:hover .gfi-visual img { transform: scale(1.05); }

/* ── Pricing list items ───────────────────────────────────── */
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features .list-check-img {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM GLOBAL UPGRADES — International Level Refinements
   ══════════════════════════════════════════════════════════════ */

/* Smooth image loading across entire site */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* Premium hover lift for all cards */
.service-card,
.why-card,
.tech-card,
.payment-card,
.blog-card,
.gallery-card,
.testimonial-card,
.pricing-card {
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
}
.service-card:hover,
.why-card:hover,
.tech-card:hover,
.payment-card:hover,
.blog-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,22,40,0.14);
}

/* Gallery card consistent height */
.gallery-card { overflow: hidden; border-radius: var(--radius-lg); }
.gallery-visual,
.ba-half { min-height: 200px; }
.ba-half img, .gallery-full-img { min-height: 200px; }

/* Blog card image consistent height */
.blog-img, .bfc-visual { height: 220px !important; }
.blog-img img, .bfc-visual img { height: 100%; min-height: 220px; }

/* Doctor card consistent height */
.doctor-img { height: 260px !important; overflow: hidden; }
.doctor-img img { height: 100%; }

/* About image premium framing */
.about-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,22,40,0.18);
}
.about-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-real-img { transform: scale(1.03); }

/* Premium section headers */
.section-header h2 {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* Refined typography across cards */
.service-card h3,
.why-card h3,
.tech-card h3,
.doctor-info h3 {
  letter-spacing: -0.02em;
}

/* Premium button refinements */
.btn {
  letter-spacing: 0.01em;
  font-weight: 600;
  transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Navbar premium backdrop */
.navbar.scrolled {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Hero premium depth */
.hero {
  background: linear-gradient(
    135deg,
    #050d1a 0%,
    #0a1628 40%,
    #0d2040 70%,
    #071020 100%
  );
}

/* Card premium borders */
.service-card,
.why-card.reveal.revealed,
.tech-card,
.payment-card {
  border: 1px solid rgba(30,184,160,0.08);
}

/* Premium stat numbers */
.stat-num {
  font-feature-settings: 'tnum';
}

/* Testimonial card premium */
.testimonial-card {
  border-left: 3px solid var(--teal);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
}

/* Remove ALL residual svg display that might leak through */
.service-icon-wrap svg,
.why-icon svg,
.tech-icon svg,
.payment-icon svg,
.contact-info-icon svg,
.trust-icon svg,
.hero-svc-icon svg,
.hero-card-icon svg,
.step-num > svg,
.footer-contact-item > svg {
  display: none !important;
}

/* Contact channel card icons */
.cc-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(10,22,40,0.12);
}
.cc-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.contact-channel-card:hover .cc-icon img { transform: scale(1.08); }
