/* ================================================================
   SUPREME VISION EYE CLINIC — STYLESHEET
   ================================================================ */

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  /* Brand */
  --green:        #1E7B4A;
  --green-light:  #1D8A4E;
  --green-dark:   #155C37;
  --red:          #C0392B;
  --red-light:    #E74C3C;
  --gold:         #C9A84C;
  --gold-light:   #E2C66D;

  /* Surface */
  --dark:         #0A1628;
  --dark-2:       #0D1E35;
  --navy:         #1A3A5C;
  --white:        #FFFFFF;
  --off-white:    #F7F9FC;
  --light:        #EEF2F7;
  --light-2:      #DDE3EC;

  /* Text */
  --text:         #1A2436;
  --text-mid:     #4A5568;
  --text-light:   #8896A7;

  /* Typography */
  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-body:      'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:        1200px;
  --section-py:   100px;

  /* Shadows */
  --sh-sm:  0 1px 4px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --sh-md:  0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.06);
  --sh-lg:  0 10px 40px rgba(0,0,0,0.12), 0 4px 14px rgba(0,0,0,0.08);
  --sh-xl:  0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.10);

  /* Transitions */
  --t:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   36px;
  --r-full: 9999px;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; transition: var(--t); }
ul    { list-style: none; }
input,
select,
textarea,
button { font-family: inherit; }

/* ----------------------------------------------------------------
   UTILITIES
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(30,123,74,0.08);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(30,123,74,0.16);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--green); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 26px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: var(--t);
}
.btn-lg { padding: 15px 34px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,123,74,0.32);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.7);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--light-2);
}
.btn-outline:hover {
  background: var(--light);
  border-color: var(--text-mid);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   PRELOADER
---------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-logo {
  width: 170px;
  margin: 0 auto 28px;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}

.preloader-track {
  width: 210px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--gold));
  border-radius: var(--r-full);
  animation: preloaderLoad 1.6s ease-out forwards;
}

@keyframes preloaderLoad    { to { width: 100%; } }
@keyframes preloaderPulse   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.75;transform:scale(.97)} }

/* ----------------------------------------------------------------
   NAVBAR
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 900;
  padding: 4px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(9, 20, 38, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo { padding: 0; margin: 0; line-height: 0; display: flex; align-items: center; height: 58px; overflow: hidden; }
.nav-logo img { height: 150px; width: auto; display: block; padding: 0; margin: 0; flex-shrink: 0; max-width: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: rgba(255,255,255,0.80);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.navbar.scrolled .hamburger span {
  background: var(--white);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 950;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.mobile-close:hover { background: rgba(255,255,255,0.16); }

.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.mobile-link {
  color: rgba(255,255,255,0.82);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.mobile-cta { margin-top: 20px; }

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #FAFAF8;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(30,123,74,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(201,168,76,0.04) 0%, transparent 45%);
}

.hero-grid { display: none; }
.hero-circle { display: none; }

@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Hero Copy */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(30,123,74,0.07);
  border: 1px solid rgba(30,123,74,0.20);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--green); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 36px;
  max-width: 530px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-quick-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hqs-item { display: flex; flex-direction: column; gap: 2px; }
.hqs-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.hqs-label { font-size: 0.72rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.04em; }
.hqs-sep { width: 1px; height: 36px; background: var(--light-2); }

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 40px 20px 20px;
}

/* Doctor Photo */
.hero-photo-frame {
  position: relative;
  width: 360px;
  border-radius: 200px 200px 140px 140px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,22,40,0.14), 0 6px 20px rgba(10,22,40,0.08);
  border: 3px solid rgba(30,123,74,0.18);
  background: var(--light);
}

.hero-doctor-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.72) 0%, transparent 100%);
  color: var(--white);
  padding: 32px 20px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-photo-badge i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

.hero-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: 0.82rem;
  white-space: nowrap;
  box-shadow: var(--sh-md);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card strong { display: block; font-weight: 600; font-size: 0.9rem; }
.hero-float-card span  { color: var(--text-light); font-size: 0.75rem; }
.hero-float-card i     { font-size: 1.3rem; color: var(--gold); }

.hero-float-card--award { top: 30px; right: 0px; animation-delay: 0s; }
.hero-float-card--open  { bottom: 50px; left: -10px; animation-delay: 1.5s; }

.open-dot {
  width: 10px; height: 10px;
  background: #2DAA6E;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(45,170,110,0.5);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* Hero Scroll Arrow */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--light-2);
  border-radius: 50%;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  animation: heroScroll 2.5s ease-in-out infinite;
  z-index: 1;
  background: var(--white);
  box-shadow: var(--sh-sm);
}
@keyframes heroScroll { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ----------------------------------------------------------------
   STATS STRIP
---------------------------------------------------------------- */
.stats-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 56px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

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

.stat-number {
  display: inline;
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-light);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ----------------------------------------------------------------
   ABOUT
---------------------------------------------------------------- */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

/* Visual */
.about-img-wrap { position: relative; }

.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.about-clinic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 55%;
  height: 55%;
  border-radius: var(--r-lg);
  border: 2px solid rgba(30,123,74,0.15);
  z-index: -1;
}

.about-badge-est {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--sh-lg);
  min-width: 100px;
}
.est-year {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.est-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 3px;
}

.about-badge-award {
  position: absolute;
  top: 22px;
  right: -22px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(192,57,43,0.12);
}
.about-badge-award i { color: var(--gold); }

/* Content */
.about-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--off-white);
  border: 1px solid var(--light-2);
  transition: var(--t);
}
.pillar:hover {
  border-color: rgba(30,123,74,0.22);
  box-shadow: var(--sh-md);
}
.pillar-icon {
  width: 42px;
  height: 42px;
  background: rgba(30,123,74,0.09);
  color: var(--green);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pillar-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.pillar-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   SERVICES
---------------------------------------------------------------- */
.services {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px 26px;
  border: 1px solid var(--light-2);
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.sc-icon {
  width: 52px;
  height: 52px;
  background: rgba(30,123,74,0.08);
  color: var(--green);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: var(--t);
}
.service-card:hover .sc-icon {
  background: var(--green);
  color: var(--white);
}

.service-card h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.855rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 20px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--t);
}
.sc-link:hover { gap: 9px; }
.sc-link i { font-size: 0.72rem; }

/* ----------------------------------------------------------------
   WHY CHOOSE US
---------------------------------------------------------------- */
.why-us {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  color: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30,123,74,0.28);
}
.why-item h4 { font-size: 0.97rem; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.why-item p  { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; }

/* Visual */
.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-orb-wrap { position: relative; width: 380px; height: 380px; }

.why-orb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-eye {
  font-size: 7rem;
  color: var(--green);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(30,123,74,0.35));
}

.why-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: whyPulse 3.5s ease-in-out infinite;
}
.why-ring--1 { width: 140px; height: 140px; border-color: rgba(30,123,74,0.35); animation-delay: 0s; }
.why-ring--2 { width: 240px; height: 240px; border-color: rgba(30,123,74,0.16); animation-delay: 0.6s; }
.why-ring--3 { width: 340px; height: 340px; border-color: rgba(30,123,74,0.07); animation-delay: 1.2s; }
@keyframes whyPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.05);opacity:.6} }

.why-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--light-2);
  font-size: 0.8rem;
}
.why-badge i { font-size: 1.2rem; color: var(--gold); }
.why-badge strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.why-badge span   { color: var(--text-light); font-size: 0.74rem; }
.why-badge--exp  { top: 20px; right: -16px; animation: floatCard 4s ease-in-out infinite; }
.why-badge--cert { bottom: 20px; left: -16px; animation: floatCard 4s ease-in-out infinite 2s; }

/* ----------------------------------------------------------------
   DOCTOR
---------------------------------------------------------------- */
.doctor {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.doctor-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--light-2);
}

.doctor-photo {
  overflow: hidden;
  min-height: 420px;
}
.doctor-photo-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.doctor-info { padding: 44px; }

.doctor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.dbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30,123,74,0.07);
  border: 1px solid rgba(30,123,74,0.16);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.dbadge i { color: var(--gold); }

.doctor-name {
  font-family: var(--ff-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.15;
}
.doctor-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.doctor-bio {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 14px;
}

.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}
.doctor-tags span {
  background: var(--off-white);
  border: 1px solid var(--light-2);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: var(--r-full);
}

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--light-2);
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--ff-display);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(30,123,74,0.08);
  font-weight: 700;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: rgba(30,123,74,0.18);
}

.testi-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author h4  { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.testi-author span { font-size: 0.76rem; color: var(--text-light); }

/* ----------------------------------------------------------------
   SUBPAGES — PAGE BANNER
---------------------------------------------------------------- */
.page-banner {
  background: linear-gradient(135deg, #071E11 0%, #0E3520 50%, var(--green-dark) 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 14px 0 18px;
}
.page-banner-title em { font-style: italic; color: var(--gold-light); }
.page-banner-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ----------------------------------------------------------------
   SUBPAGES — SHARED LAYOUT
---------------------------------------------------------------- */
.subpage-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.subpage-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--light-2);
}
.subpage-cta p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 22px;
}

/* ----------------------------------------------------------------
   SUBPAGES — SERVICES INTRO IMAGES
---------------------------------------------------------------- */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.services-intro-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.services-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----------------------------------------------------------------
   SUBPAGES — TECHNOLOGIES PHOTO STRIP
---------------------------------------------------------------- */
.tech-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.tech-photo-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.tech-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tech-photo-item:hover img { transform: scale(1.04); }

/* ----------------------------------------------------------------
   SUBPAGES — FACILITIES GALLERY
---------------------------------------------------------------- */
.facilities-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ----------------------------------------------------------------
   SUBPAGES — EYE CARE SERVICES
---------------------------------------------------------------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  box-shadow: var(--sh-sm);
  transition: var(--t);
}
.service-detail-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.sdc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(30,123,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.sdc-body h2 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.sdc-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ----------------------------------------------------------------
   TECHNOLOGIES
---------------------------------------------------------------- */
.technologies {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-category {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--sh-sm);
}

.tech-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-2);
}

.tech-cat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(30,123,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.05rem;
}

.tech-cat-header h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tech-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}

.tech-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
}

/* ----------------------------------------------------------------
   FACILITIES
---------------------------------------------------------------- */
.facilities {
  padding: var(--section-py) 0;
  background: var(--white);
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.facility-card {
  background: var(--off-white);
  border: 1px solid var(--light-2);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}

.facility-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.facility-card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.facility-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.facility-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.facility-list li i {
  color: var(--green);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   CTA BANNER
---------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #071E11 0%, #0E3520 50%, var(--green-dark) 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.76);
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ----------------------------------------------------------------
   CONTACT
---------------------------------------------------------------- */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 54px;
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 38px;
  border: 1px solid var(--light-2);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--light-2);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,123,74,0.10);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A5568' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Info Card */
.contact-info-card {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 34px;
  margin-bottom: 18px;
}
.contact-info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cinfo-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.cinfo-item:last-child { margin-bottom: 0; }
.cinfo-icon {
  width: 38px;
  height: 38px;
  background: rgba(30,123,74,0.14);
  color: var(--green-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-item h4 {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cinfo-item p,
.cinfo-item a,
.cinfo-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  display: block;
}
.cinfo-item a:hover { color: var(--green-light); }

.contact-map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--light-2);
}
.contact-map iframe { display: block; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer { background: #060D1A; }

.footer-top {
  padding: 52px 0 42px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1.4fr;
  gap: 44px;
}

.footer-logo { height: 150px; width: auto; margin-bottom: 18px; display: block; padding: 0; }

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.42);
  font-size: 0.85rem;
  transition: var(--t);
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.38);
  transition: var(--t);
}
.footer-col ul li a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item i {
  color: var(--green-light);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
  transition: var(--t);
}
.footer-contact-item a:hover { color: var(--green-light); }

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}
.footer-bottom i { color: var(--red); font-size: 0.68rem; }

/* ----------------------------------------------------------------
   WHATSAPP FLOAT
---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  z-index: 800;
  transition: var(--t);
  animation: floatCard 3.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
  animation: none;
}

/* ----------------------------------------------------------------
   TOAST
---------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 96px;
  right: 28px;
  background: var(--dark);
  color: var(--white);
  padding: 13px 18px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--sh-xl);
  border-left: 3px solid var(--green);
  z-index: 800;
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--green); flex-shrink: 0; }

/* ----------------------------------------------------------------
   RESPONSIVE — 1100px (3-col services)
---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .services-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-layout      { gap: 40px; }
  .about-grid,
  .why-grid         { gap: 54px; }
  .hero-photo-frame { width: 300px; }
  .hero-doctor-img  { height: 400px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .tech-photo-strip { grid-template-columns: repeat(2, 1fr); }
  .tech-photo-strip .tech-photo-item:last-child { display: none; }
  .facilities-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------------------------------------------------
   RESPONSIVE — 920px (tablet, single column)
---------------------------------------------------------------- */
@media (max-width: 920px) {
  :root { --section-py: 72px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo { height: 52px; }
  .nav-logo img { height: 135px; }
  .footer-logo { height: 115px; }

  /* Hero */
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .hero-copy { max-width: 600px; margin: 0 auto; }
  .hero-badge {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-badge span { white-space: normal; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-quick-stats { justify-content: center; }
  .hero-visual { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { display: block; }
  .about-img-main { aspect-ratio: unset; height: 260px; }
  .about-img-accent,
  .about-badge-est,
  .about-badge-award { display: none; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }

  /* Doctor */
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-photo { min-height: 320px; }
  .doctor-photo-img { min-height: 320px; }
  .doctor-info { padding: 32px; }

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

  /* Stats */
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------------------------------------------------
   RESPONSIVE — 580px (mobile)
---------------------------------------------------------------- */
@media (max-width: 580px) {
  :root { --section-py: 56px; }

  .container { padding: 0 18px; }

  /* Hero */
  .hero-layout { padding-top: 96px; padding-bottom: 48px; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { justify-content: center; width: auto; min-width: 220px; }
  .hero-quick-stats { gap: 0; justify-content: space-around; }
  .hqs-sep { display: none; }
  .hqs-num { font-size: 1.35rem; }

  .nav-logo { height: 46px; }
  .nav-logo img { height: 115px; }
  .footer-logo { height: 100px; }

  /* About */
  .about-img-main { height: 220px; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-photo-strip { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .facilities-gallery { grid-template-columns: repeat(2, 1fr); }
  .services-intro { grid-template-columns: 1fr; }
  .services-intro-img:last-child { display: none; }
  .service-detail-card { flex-direction: column; gap: 14px; }
  .page-banner { padding: 120px 0 52px; }
  .page-banner-title { font-size: 2.2rem; }

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

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

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

  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .doctor-info { padding: 24px; }
  .doctor-name { font-size: 1.8rem; }
  .doctor-photo { min-height: 280px; }
  .doctor-photo-img { min-height: 280px; }

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

  .contact-form-wrap { padding: 24px; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — 380px (very small phones)
---------------------------------------------------------------- */
@media (max-width: 380px) {
  .hero-title { font-size: 1.85rem; }
  .hero-badge { font-size: 0.66rem; padding: 6px 12px; }
  .section-title { font-size: 1.7rem; }
}

/* ----------------------------------------------------------------
   FOCUS VISIBLE (accessibility)
---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
