/* ===========================
   CSS Variables & Reset
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --teal: #4DB6AC;
  --teal-dark: #00897B;
  --teal-light: #B2DFDB;
  --teal-xlight: #E0F2F1;
  --lavender: #9575CD;
  --lavender-dark: #7E57C2;
  --lavender-light: #E8EAF6;
  --lavender-xlight: #F3F0FA;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --text-dark: #2C3E50;
  --text-mid: #546E7A;
  --text-light: #78909C;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 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: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   Navigation
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(77, 182, 172, 0.12);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--lavender));
  border-radius: 2px;
  transition: right var(--transition);
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 137, 123, 0.4) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   Hero Section
=========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-xlight) 0%, var(--lavender-xlight) 60%, #F8F4FF 100%);
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(149, 117, 205, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(77, 182, 172, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(77, 182, 172, 0.15), rgba(149, 117, 205, 0.15));
  border: 1px solid rgba(77, 182, 172, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--teal-dark), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--lavender-dark);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  border: 1.5px solid var(--teal-light);
  color: var(--teal-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pill:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(0, 137, 123, 0.35);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 137, 123, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--lavender-dark);
  border: 2px solid var(--lavender-light);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--lavender-xlight);
  border-color: var(--lavender);
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-bg {
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--lavender-light) 100%);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  bottom: 30px;
  left: -20px;
  animation-delay: -2s;
}

.floating-card:nth-child(3) {
  top: 40px;
  right: -10px;
  animation-delay: -1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.fc-icon.teal {
  background: var(--teal-xlight);
}

.fc-icon.lavender {
  background: var(--lavender-xlight);
}

.floating-card .fc-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.floating-card .fc-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===========================
   Sections Common
=========================== */
section {
  padding: 90px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-xlight);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   Stats Strip
=========================== */
.stats-strip {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #006064 50%, var(--lavender-dark) 100%);
  padding: 48px 5%;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* ===========================
   About Section
=========================== */
.about {
  background: var(--white);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-container {
  position: relative;
}

.about-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: var(--shadow-md);
}

.about-content .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}

.about-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--off-white);
  border-radius: 10px;
  border-left: 3px solid var(--teal);
}

.credential-item span:first-child {
  font-size: 16px;
}

.credential-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===========================
   Services Section
=========================== */
.services {
  background: var(--off-white);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--teal-light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.icon-teal {
  background: var(--teal-xlight);
}

.icon-lavender {
  background: var(--lavender-xlight);
}

.icon-mint {
  background: #E8F5E9;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--teal-xlight);
  color: var(--teal-dark);
}

/* ===========================
   Philosophy / Approach
=========================== */
.philosophy {
  background: linear-gradient(135deg, var(--lavender-xlight) 0%, var(--teal-xlight) 100%);
}

.philosophy-container {
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.philosophy-card .quote-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.philosophy-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.philosophy-card cite {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-item {
  text-align: center;
  padding: 24px 16px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===========================
   Testimonials
=========================== */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--teal-xlight) 0%, var(--lavender-xlight) 100%);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #FFB300;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.t-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.t-relation {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===========================
   Contact / Location
=========================== */
.contact {
  background: var(--off-white);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-xlight), var(--lavender-xlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}

.ci-value:hover {
  color: var(--teal-dark);
}

.contact-cta-card {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--lavender-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--white);
  text-align: center;
}

.contact-cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.contact-cta-card p {
  font-size: 0.95rem;
  opacity: 0.88;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--white);
  color: var(--teal-dark);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.working-hours {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
}

.wh-item {
  font-size: 0.84rem;
  opacity: 0.88;
}

.wh-item .day {
  font-weight: 600;
}

.wh-item .time {
  opacity: 0.75;
  font-size: 0.8rem;
}

/* ===========================
   Footer
=========================== */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 5% 24px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand .logo-sub {
  color: var(--teal-light);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

/* ===========================
   Book Consultation Modal
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 40, 50, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  margin-bottom: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--off-white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--teal-xlight);
  color: var(--teal-dark);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E8EDF2;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow 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 rgba(77, 182, 172, 0.15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 137, 123, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 137, 123, 0.4);
}

/* Success state */
.modal-success {
  text-align: center;
  padding: 20px 0;
}

.success-check {
  font-size: 4rem;
  display: block;
  margin-bottom: 16px;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.modal-success p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   Scroll to Top
=========================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image-bg {
    width: 300px;
    height: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .modal {
    padding: 36px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .philosophy-card {
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 60px 5%;
  }
}

/* ===========================
   Eye Care Awareness Section
=========================== */
.awareness-section {
  background: var(--white);
  padding: 90px 5%;
}

.awareness-sub-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

.awareness-divider {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--teal-light), transparent);
  border-radius: 2px;
}

.awareness-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.squint-grid {
  grid-template-columns: repeat(2, 1fr);
}

.awareness-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.awareness-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.awareness-card.card-teal {
  background: var(--teal-xlight);
  border: 1.5px solid var(--teal-light);
}

.awareness-card.card-lavender {
  background: var(--lavender-xlight);
  border: 1.5px solid #C5CAE9;
}

.awareness-card.card-highlight {
  background: linear-gradient(135deg, #E0F2F1 0%, #F1F8E9 100%);
  border: 2px solid var(--teal);
}

.awareness-card.card-highlight-lavender {
  background: linear-gradient(135deg, #EDE7F6 0%, #FCE4EC 100%);
  border: 2px solid var(--lavender);
}

.aw-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.card-lavender .aw-age-badge {
  color: var(--lavender-dark);
}

.aw-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}

.awareness-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.awareness-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.awareness-card strong {
  color: var(--teal-dark);
}

.card-highlight-lavender strong {
  color: var(--lavender-dark);
}

.aw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.aw-list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}

.aw-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.card-lavender .aw-list li::before {
  color: var(--lavender);
}

.aw-callout {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  background: var(--teal-dark);
  color: var(--white);
  letter-spacing: 0.02em;
}

.card-highlight-lavender .aw-callout {
  background: var(--lavender-dark);
}

@media (max-width: 900px) {
  .awareness-grid {
    grid-template-columns: 1fr 1fr;
  }

  .squint-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .awareness-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Gallery Section
=========================== */

.gallery-section {
  background: linear-gradient(135deg, #f0fafa 0%, #f5f0ff 100%);
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--teal-xlight) 0%, var(--lavender-xlight) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 137, 123, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.gallery-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.gallery-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.gallery-tag.exo {
  background: var(--teal-xlight);
  color: var(--teal-dark);
}

.gallery-tag.eso {
  background: var(--lavender-xlight);
  color: var(--lavender-dark);
}

.gallery-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.gallery-disclaimer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Lightbox
=========================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 20, 0.94);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: scale(0.93);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lb-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

.lb-btn {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}

.lb-btn:hover {
  background: rgba(77, 182, 172, 0.4);
  transform: scale(1.1);
}

.lb-close {
  top: 20px;
  right: 24px;
  font-size: 1.1rem;
}

.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lb-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lb-next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }
}

/* ===========================
   WhatsApp Floating Button
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 54px;
  height: 54px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: white;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    font-size: 28px;
  }

  .modal {
    padding: 32px 24px;
  }
}