/* ===== KALRA ENDO-URO CARE — Dr. Ankita Aneja Website ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --teal: #3ABFB1;
  --teal-dark: #2a9e92;
  --teal-light: #e8f9f7;
  --green: #6CC04A;
  --green-dark: #4e9e32;
  --green-light: #eef8e8;
  --navy: #1B2B5E;
  --navy-light: #2d3f7a;
  --white: #ffffff;
  --off-white: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --font-display: 'Nunito', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --shadow-sm: 0 2px 8px rgba(27,43,94,0.08);
  --shadow-md: 0 8px 24px rgba(27,43,94,0.12);
  --shadow-lg: 0 16px 48px rgba(27,43,94,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar a:hover { color: var(--teal); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar i { color: var(--teal); margin-right: 5px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-brand img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active {
  color: var(--teal);
  background: var(--teal-light);
}
.nav-menu > li > a i { font-size: 0.7rem; transition: transform 0.3s; }
.nav-menu > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px;
  border-top: 3px solid var(--teal);
  animation: dropFade 0.2s ease;
}
@keyframes dropFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.nav-menu > li:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 14px;
  color: var(--gray-600); font-size: 0.875rem;
  text-decoration: none; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--teal-light); color: var(--teal-dark); padding-left: 20px; }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

.btn-appt {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(58,191,177,0.35) !important;
}
.btn-appt:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,191,177,0.45) !important; background: var(--white) !important; color: var(--teal) !important; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #f0fafa 0%, #eef8e8 50%, #f8f0ff 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,191,177,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(108,192,74,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--teal);
  color: var(--teal-dark); font-size: 0.82rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.hero-badge::before { content: '★'; color: var(--green); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 8px;
}
.hero h1 span { color: var(--teal); font-style: italic; }
.hero-qual {
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500;
  color: var(--teal-dark);
  background: var(--teal-light);
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px;
}
.hero-desc { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 6px 20px rgba(58,191,177,0.4);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(58,191,177,0.5); }
.btn-outline {
  border: 2px solid var(--navy); color: var(--navy);
  padding: 12px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; background: transparent;
  cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-3px); }
.hero-stats { display: flex; gap: 28px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-num span { color: var(--teal); }
.stat-label { font-size: 0.78rem; color: var(--gray-600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero image side */
.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-image-card {
  background: var(--white);
  border-radius: 30px 30px 80px 30px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  position: relative;
  max-width: 400px; width: 100%;
}
.hero-image-card img { width: 100%; border-radius: 24px 24px 76px 24px; display: block; }
.hero-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--teal-light), var(--green-light));
  border-radius: 24px 24px 76px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--teal); font-size: 5rem;
}
.hero-img-placeholder p { font-family: var(--font-display); font-size: 1rem; color: var(--teal-dark); margin-top: 10px; }
.hero-float-card {
  position: absolute; bottom: 30px; left: -20px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-float-card .icon { width: 40px; height: 40px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.1rem; }
.hero-float-card p { font-size: 0.75rem; color: var(--gray-600); margin: 0; }
.hero-float-card strong { font-size: 0.9rem; color: var(--navy); display: block; }

.hero-float-card2 {
  position: absolute; top: 20px; right: -15px;
  background: var(--navy); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  animation: floatUp 3s ease-in-out infinite 1.5s;
}
.hero-float-card2 .icon { color: var(--green); font-size: 1.2rem; }
.hero-float-card2 strong { font-size: 0.85rem; color: white; display: block; }
.hero-float-card2 p { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-teal { background: linear-gradient(135deg, #f0fafa, #eef8e8); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  color: var(--teal-dark); text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 16px; background: var(--teal-light); border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-desc { font-size: 1rem; color: var(--gray-600); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--teal), var(--green));
  border-radius: 2px; margin: 16px auto 0;
}

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main {
  width: 100%; border-radius: 30px;
  background: linear-gradient(135deg, var(--teal-light), var(--green-light));
  aspect-ratio: 3/4; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--teal); font-size: 4rem; box-shadow: var(--shadow-md);
}
.about-img-main p { font-family: var(--font-display); font-size: 1rem; color: var(--teal-dark); margin-top: 10px; }
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: white;
  padding: 20px 24px; border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow-md);
}
.about-exp-badge .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--teal); line-height: 1; }
.about-exp-badge p { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-top: 4px; }
.about-content { padding: 20px 0; }
.about-content h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); margin-bottom: 6px; line-height: 1.2; }
.about-content h2 em { color: var(--teal); font-style: italic; }
.qual-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.qual-badge { background: var(--teal-light); color: var(--teal-dark); font-size: 0.8rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; border: 1px solid rgba(58,191,177,0.3); }
.about-content p { color: var(--gray-600); line-height: 1.9; margin-bottom: 16px; font-size: 0.96rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.highlight-item { display: flex; align-items: center; gap: 10px; }
.highlight-item i { color: var(--teal); font-size: 1rem; width: 20px; flex-shrink: 0; }
.highlight-item span { font-size: 0.88rem; color: var(--gray-600); font-weight: 500; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--gray-200);
  transition: var(--transition); text-decoration: none; color: inherit;
  display: block; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--teal), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); color: white; transform: scale(1.1); }
.service-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 0.83rem; font-weight: 600; margin-top: 14px; text-decoration: none; }
.service-link i { transition: transform 0.2s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ===== WHY CHOOSE ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-items { display: flex; flex-direction: column; gap: 22px; }
.why-item {
  display: flex; gap: 16px; padding: 22px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--teal);
  transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateX(6px); }
.why-item-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.why-item-content h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.why-item-content p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }
.why-image {
  border-radius: 30px; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-light), var(--green-light));
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--teal); position: relative; box-shadow: var(--shadow-md);
}
.why-image .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27,43,94,0.9), transparent);
  padding: 30px 24px;
}
.why-image .overlay h3 { font-family: var(--font-display); color: white; font-size: 1.3rem; }
.why-image .overlay p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  min-width: 320px; flex-shrink: 0; position: relative;
}
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 5rem; color: var(--teal); opacity: 0.2; position: absolute; top: 8px; left: 20px; line-height: 1; }
.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--green)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.t-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.t-condition { font-size: 0.78rem; color: var(--teal); }
.slider-controls { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--teal); background: transparent; color: var(--teal); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--teal); color: white; }

/* ===== APPOINTMENT SECTION ===== */
.appt-section { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: white; }
.appt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.appt-info h2 { font-family: var(--font-display); font-size: 2.2rem; color: white; margin-bottom: 14px; }
.appt-info h2 em { color: var(--teal); font-style: italic; }
.appt-info p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 24px; }
.clinic-timings { display: flex; flex-direction: column; gap: 12px; }
.timing-item { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(255,255,255,0.07); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1); }
.timing-item i { color: var(--teal); font-size: 1rem; width: 20px; }
.timing-item div strong { display: block; color: white; font-size: 0.9rem; }
.timing-item div span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.appt-form { background: var(--white); border-radius: 24px; padding: 36px 32px; }
.appt-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-800);
  background: var(--off-white); transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--teal); background: white; box-shadow: 0 0 0 3px rgba(58,191,177,0.12); }
.form-control::placeholder { color: var(--gray-400); }
.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white; border: none; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(58,191,177,0.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(58,191,177,0.45); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--gray-200); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--navy); text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question i { color: var(--teal); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 22px 18px; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; }

/* ===== EDUCATION ===== */
.edu-timeline { max-width: 720px; margin: 0 auto; position: relative; padding-left: 32px; }
.edu-timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--green)); border-radius: 1px; }
.edu-item { position: relative; margin-bottom: 32px; }
.edu-item::before { content: ''; position: absolute; left: -26px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); border: 2px solid white; box-shadow: 0 0 0 3px rgba(58,191,177,0.3); }
.edu-card { background: var(--white); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.edu-year { font-size: 0.78rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.edu-card h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.edu-card p { font-size: 0.875rem; color: var(--gray-600); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card { background: var(--navy); color: white; border-radius: 24px; padding: 40px 36px; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.8rem; color: white; margin-bottom: 8px; }
.contact-info-card h3 em { color: var(--teal); font-style: italic; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 30px; font-size: 0.9rem; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 22px; }
.c-icon { width: 46px; height: 46px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.1rem; flex-shrink: 0; }
.c-text strong { display: block; color: white; font-size: 0.9rem; margin-bottom: 3px; }
.c-text span { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.6; }
.social-links { display: flex; gap: 12px; margin-top: 30px; }
.social-links a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
.social-links a:hover { background: var(--teal); color: white; transform: translateY(-3px); }

.contact-form-card { background: var(--off-white); border-radius: 24px; padding: 40px 36px; }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 24px; }
.map-wrap { margin-top: 50px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; }

/* ===== FOOTER ===== */
footer { background: #0f1e45; color: rgba(255,255,255,0.75); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
footer h4 { font-family: var(--font-display); color: white; font-size: 1rem; margin-bottom: 16px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.875rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
footer ul li a:hover { color: var(--teal); padding-left: 4px; }
footer ul li a::before { content: '→'; font-size: 0.7rem; color: var(--teal); opacity: 0; transition: opacity 0.2s; }
footer ul li a:hover::before { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--teal); text-decoration: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white; padding: 70px 0 50px; text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: 2.4rem; color: white; margin-bottom: 12px; }
.page-hero h1 em { color: var(--teal); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.85rem; }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 2.5rem; position: relative;
  cursor: pointer; transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: rgba(27,43,94,0.5); opacity: 0; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none; z-index: 999;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); } }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-row, .about-grid, .why-grid, .appt-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-left { display: none; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow-md); }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 16px; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; padding-left: 16px; }
  .nav-menu > li:hover .dropdown-menu { display: none; }
  .nav-menu > li.active .dropdown-menu { display: block; }
  .menu-toggle { display: block; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-exp-badge { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 40px; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
}
