/* ===== DR POOJA KANODIA - PREMIUM EYE CLINIC ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #0A6EBD;
  --primary-dark: #0854a0;
  --primary-light: #e8f4fc;
  --accent: #00B4D8;
  --accent2: #06A77D;
  --gold: #C9A84C;
  --dark: #0d1b2a;
  --dark2: #1a2e44;
  --text: #2d3748;
  --text-light: #6b7c93;
  --border: #e2ecf5;
  --white: #ffffff;
  --bg-soft: #f7fbff;
  --bg-gray: #f4f6f9;
  --shadow: 0 4px 24px rgba(10,110,189,0.10);
  --shadow-lg: 0 12px 48px rgba(10,110,189,0.15);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

.logo-img-web {
  z-index: 99999;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: none;
  transition: var(--transition); font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; box-shadow: 0 4px 20px rgba(10,110,189,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(10,110,189,0.45); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; background: var(--primary-light); color: var(--primary);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px;
}
.badge svg { width: 14px; height: 14px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px,4vw,42px); color: var(--dark); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 16px auto; }

/* ====== HEADER ====== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#header.scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(10,110,189,0.08); }

.header-top {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: white; padding: 8px 0; font-size: 13px;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.header-top a { color: rgba(255,255,255,0.85); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.header-top a:hover { color: var(--accent); }
.header-top-links { display: flex; gap: 24px; align-items: center; }
.header-top-ctas { display: flex; gap: 12px; }
.header-top-cta {
  padding: 5px 16px; border-radius: 50px; font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
}
.cta-call { background: var(--accent2); color: white; }
.cta-whatsapp { background: #25D366; color: white; }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 28px; height: 28px; color: white; }
.logo-text { line-height: 1.2; }
.logo-text h1 { font-size: 17px; color: var(--dark); font-family: 'Playfair Display', serif; }
.logo-text span { font-size: 12px; color: var(--primary); font-weight: 500; font-family: 'DM Sans', sans-serif; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text); transition: var(--transition); white-space: nowrap;
}
nav a:hover, nav a.active { background: var(--primary-light); color: var(--primary); }

.nav-appointment { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white !important; padding: 10px 22px !important; border-radius: 50px !important; font-weight: 600 !important; box-shadow: 0 4px 16px rgba(10,110,189,0.3); }
.nav-appointment:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(10,110,189,0.4) !important; background: var(--primary-dark) !important; color: white !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ====== HERO ====== */
.hero {
  padding-top: 130px; min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a 0%, #0A6EBD 60%, #00B4D8 100%);
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Ccircle cx='900' cy='200' r='400' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='200' cy='600' r='300' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") no-repeat;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero-badge { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); }
.header-top-links svg{ display: none; }
.hero h1 { font-size: clamp(32px,4vw,56px); color: white; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); display: block; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 12px; max-width: 480px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 32px; font-weight: 700; color: white; font-family: 'Playfair Display', serif; line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg);
  padding: 20px; display: flex; flex-direction: column; gap: 24px;
}

.hero-card img{
  border-radius: 20px;
}

.doctor-profile { display: flex; align-items: center; gap: 20px; }
.doctor-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-family: 'Playfair Display', serif; color: white; font-weight: 700;
  border: 3px solid rgba(255,255,255,0.3); flex-shrink: 0;
}
.doctor-info h3 { color: white; font-size: 22px; margin-bottom: 4px; }
.doctor-info p { color: rgba(255,255,255,0.75); font-size: 14px; }
.doctor-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.doc-badge {
  padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2);
}
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quick-action {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 16px; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.quick-action:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.qa-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qa-icon svg { width: 18px; height: 18px; color: white; }
.qa-text h4 { font-size: 13px; color: white; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.qa-text p { font-size: 11px; color: rgba(255,255,255,0.65); margin: 0; }

/* ====== TRUST BAR ====== */
.trust-bar { background: var(--white); padding: 28px 0; border-bottom: 1px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,0.04); }
.trust-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 20px; height: 20px; color: var(--primary); }
.trust-text h4 { font-size: 14px; font-weight: 600; color: var(--dark); font-family: 'DM Sans', sans-serif; }
.trust-text p { font-size: 12px; color: var(--text-light); }

/* ====== SERVICES GRID ====== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.service-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: var(--transition); cursor: pointer; text-align: center;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card:hover .sc-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.service-card:hover .sc-icon svg { color: white; }
.sc-icon {
  width: 64px; height: 64px; border-radius: var(--radius); background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  transition: var(--transition);
}
.sc-icon svg { width: 28px; height: 28px; color: var(--primary); transition: var(--transition); }
.service-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ====== WHY CHOOSE ====== */
.why-choose { background: var(--bg-soft); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features { display: grid; gap: 20px; }
.why-feat {
  background: white; border-radius: var(--radius); padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--border); transition: var(--transition);
}
.why-feat:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.wf-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wf-icon svg { width: 22px; height: 22px; color: white; }
.wf-body h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.wf-body p { font-size: 13px; color: var(--text-light); }

.why-visual {
  background-image: url(../img/dr-pooja-bg.jpeg);
  background-size: contain;
  border-radius: var(--radius-lg); padding: 48px 40px; color: white; text-align: center;
}
.why-visual h3 { font-size: 28px; margin-bottom: 8px; }
.why-visual p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 15px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.w-stat { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.15); }
.w-stat .num { font-size: 36px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--accent); }
.w-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ====== TREATMENTS ====== */
.treatments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.treatment-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tc-header { background: linear-gradient(135deg, var(--primary-light), white); }
.tc-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tc-icon svg { width: 26px; height: 26px; color: white; }
.tc-header h3 { font-size: 18px; color: var(--dark); margin-bottom: 6px; }
.tc-header p { font-size: 13px; color: var(--text-light); }
.tc-body { padding: 20px 24px; }
.tc-list { display: flex; flex-direction: column; gap: 8px; }
.tc-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.tc-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.tc-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.tc-link { font-size: 14px; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.tc-link:hover { gap: 10px; }
.tc-link svg { width: 16px; height: 16px; }

/* ====== TECHNOLOGY ====== */
.technology { background: linear-gradient(135deg, var(--dark), var(--dark2)); color: white; }
.technology .section-header h2 { color: white; }
.technology .section-header p { color: rgba(255,255,255,0.75); }
.technology .divider { background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.tech-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: var(--transition);
}
.tech-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.tech-icon { width: 60px; height: 60px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--primary)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.tech-icon svg { width: 28px; height: 28px; color: white; }
.tech-card h4 { font-size: 16px; color: white; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.tech-card p { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ====== TESTIMONIALS ====== */
.testimonials { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white; font-weight: 700; font-family: 'Playfair Display', serif;
}
.stars { display: flex; gap: 3px; }
.star { color: #fbbf24; font-size: 16px; }
.testi-card p { font-size: 14px; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testi-author h4 { font-size: 15px; font-weight: 600; color: var(--dark); font-family: 'DM Sans', sans-serif; }
.testi-author p { font-size: 12px; color: var(--text-light); }
.google-badge { display: flex; align-items: center; gap: 6px; margin-top: 12px; padding: 6px 12px; background: var(--bg-soft); border-radius: 50px; font-size: 12px; color: var(--text-light); width: fit-content; }
.google-badge svg { width: 14px; height: 14px; }

/* ====== BLOG ====== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 200px; background: linear-gradient(135deg, var(--primary-light), var(--bg-soft));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.blog-img svg { width: 64px; height: 64px; color: var(--primary); opacity: 0.4; }
.blog-cat { position: absolute; top: 16px; left: 16px; background: var(--primary); color: white; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; text-transform: uppercase; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--text-light); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-body h3 { font-size: 17px; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.blog-link { font-size: 14px; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-link:hover { gap: 10px; }
.blog-link svg { width: 16px; height: 16px; }

/* ====== FAQ ====== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; padding: 20px 24px;
  cursor: pointer; transition: var(--transition); font-size: 16px; font-weight: 600; color: var(--dark);
}
.faq-q:hover { background: var(--primary-light); color: var(--primary); }
.faq-q svg { width: 20px; height: 20px; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q { background: var(--primary); color: white; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.35s ease; }
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 300px; }
.faq-a p { font-size: 14px; color: var(--text-light); line-height: 1.7; padding-top: 16px; }

/* ====== CTA SECTION ====== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 80px 0; text-align: center; color: white;
}
.cta-section h2 { font-size: clamp(28px,3vw,42px); color: white; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ====== MAP SECTION ====== */
.map-section { background: var(--bg-gray); }
.map-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: stretch; }
.map-info { background: linear-gradient(135deg, var(--primary), var(--dark)); border-radius: var(--radius-lg); padding: 40px; color: white; }
.map-info h3 { font-size: 24px; margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.info-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 18px; height: 18px; color: var(--accent); }
.info-content h4 { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.info-content p { color: white; font-size: 14px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; height: 400px; }
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ====== FOOTER ====== */
footer {
  background: var(--dark); color: rgba(255,255,255,0.75); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand h3 { color: white; font-size: 20px; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-link:hover { background: var(--primary); transform: translateY(-3px); }
.social-link svg { width: 18px; height: 18px; color: rgba(255,255,255,0.75); }
.footer-col h4 { color: white; font-size: 15px; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; font-weight: 600; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom a { color: var(--accent); }

/* ====== FLOATING BUTTONS ====== */
.float-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn {
  display: flex; align-items: center; gap: 10px; padding: 14px 20px;
  border-radius: 50px; color: white; font-weight: 600; font-size: 14px;
  cursor: pointer; border: none; box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-wa { background: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.float-call { background: var(--primary); box-shadow: 0 6px 24px rgba(10,110,189,0.4); }
.float-btn svg { width: 20px; height: 20px; }
.float-label { display: none; }
@media(min-width:640px) { .float-label { display: inline; } }

/* ====== APPOINTMENT MODAL ====== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(13,27,42,0.7); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: white; border-radius: var(--radius-lg); max-width: 580px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  animation: slideUp 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 28px 32px; display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { color: white; font-size: 22px; }
.modal-header p { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 4px; }
.modal-close { background: rgba(255,255,255,0.15); border: none; color: white; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body { padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,110,189,0.1); }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 16px; padding: 16px; }
.form-success { display: none; text-align: center; padding: 20px; }
.form-success svg { width: 56px; height: 56px; color: var(--accent2); margin: 0 auto 12px; }
.form-success h4 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.form-success p { color: var(--text-light); }

/* ====== PAGE HERO ====== */
.page-hero {
  padding: 240px 0 80px; background: linear-gradient(135deg, var(--dark), var(--primary));
  color: white; text-align: center;
}
.page-hero h1 { font-size: clamp(32px,4vw,52px); color: white; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 24px; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: 14px; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ====== ABOUT PAGE ====== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-card {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius-lg); padding: 48px; color: white; text-align: center;
}
.about-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: white; font-weight: 700; font-family: 'Playfair Display', serif;
  margin: 0 auto 24px; border: 4px solid rgba(255,255,255,0.2);
}
.about-card h2 { font-size: 28px; color: white; margin-bottom: 8px; }
.about-card .title { color: var(--accent); font-size: 15px; margin-bottom: 24px; }
.qual-list { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.qual-item { display: flex; gap: 10px; align-items: flex-start; padding: 12px; background: rgba(255,255,255,0.08); border-radius: 10px; }
.qual-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.qual-item span { font-size: 13px; color: rgba(255,255,255,0.85); }

.about-content h2 { font-size: 36px; margin-bottom: 16px; }
.about-content p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.ab-highlight { padding: 16px; background: var(--primary-light); border-radius: 12px; border-left: 4px solid var(--primary); }
.ab-highlight h4 { font-size: 15px; color: var(--primary); font-family: 'DM Sans', sans-serif; font-weight: 600; }
.ab-highlight p { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-card h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.contact-card p { font-size: 14px; color: var(--text-light); }
.contact-card a { color: var(--primary); font-weight: 500; }
.contact-form-wrap { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-wrap h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form-wrap p { color: var(--text-light); font-size: 14px; margin-bottom: 28px; }

/* ====== ANIMATIONS ====== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }


/* ====== RESPONSIVE ====== */
@media(max-width:1024px) {
  .why-grid, .about-intro, .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}
@media(max-width:768px) {
  .section { padding: 56px 0; }
  nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; flex-direction: column; padding: 90px 24px 40px; z-index: 900; overflow-y: auto; align-items: flex-start; height: 100vh; }
  nav.open { display: flex; }
  nav a { padding: 14px 16px; font-size: 16px; width: 100%; border-radius: 10px; }
  .hamburger { display: flex; z-index: 1001; }
  .header-top .header-top-links { display: none; }
  .header-top{display: none;}
  .w-stat .num{    font-size: 26px;}
  .why-stats { grid-template-columns: 1fr 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-brand { order: -1; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .quick-actions { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .trust-bar .container { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
}

/* ====== WORKING HOURS ====== */
.hours-grid { display: grid; gap: 8px; }
.hour-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255,255,255,0.08); border-radius: 8px; font-size: 14px; }
.hour-row .day { color: rgba(255,255,255,0.7); }
.hour-row .time { color: white; font-weight: 600; }
.hour-row .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent2); }

/* ====== SERVICES DETAIL ====== */
.services-detail { background: var(--bg-soft); }
.service-section { margin-bottom: 56px; }
.service-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--primary-light); }
.service-section-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-section-icon svg { width: 24px; height: 24px; color: white; }
.service-section-header h3 { font-size: 22px; color: var(--dark); }
.service-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.service-item { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; transition: var(--transition); }
.service-item:hover { border-color: var(--primary); background: var(--primary-light); transform: translateX(4px); }
.service-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.service-item span { font-size: 14px; color: var(--text); }

/* Pulse animation for floating buttons */
@keyframes pulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 6px 32px rgba(37,211,102,0.7)} }
.float-wa { animation: pulse 2.5s infinite; }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}