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

:root {
  --mint:       #e8f5f1;
  --teal:       #2a9d8f;
  --teal-light: #52bfb2;
  --teal-dark:  #1a7a6e;
  --blush:      #fdf6f0;
  --coral:      #f4a261;
  --white:      #ffffff;
  --off-white:  #f9fbfa;
  --text:       #1e2d2b;
  --muted:      #6b8a85;
  --border:     #cde8e3;
  --shadow:     rgba(42, 157, 143, 0.12);
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--text);
  width: 100%;
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}

section { position: relative; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  z-index: 99999;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: opacity 0.8s ease;
}

.loader-icon {
  width: 56px;
  height: 56px;
  animation: spin 1.4s ease-in-out infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.loader-text {
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--teal);
  font-weight: 700;
}

/* ── TOP NAV ── */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  transition: .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: .3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ── BG DECORATIVE TEXT ── */
.bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  opacity: 0.03;
  font-family: 'Cormorant Garamond', serif;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 10px;
  color: var(--teal);
}

/* ─────────────────────────────
   WELCOME PAGE
───────────────────────────── */

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 80px 6% 80px 10%;
  background: var(--white);
  position: relative;
}

.hero-left::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.tag-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 15px;
  color: var(--teal);
  margin-bottom: 28px;
}

.tag-dot {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--text);
}

.hero-title em {
  color: var(--teal);
  font-style: italic;
}

.hero-sub {
  max-width: 360px;
  margin-top: 26px;
  line-height: 1.85;
  color: var(--muted);
  font-size: 15px;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  border-radius: 50px;
  transition: .35s;
  box-shadow: 0 8px 24px var(--shadow);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--shadow);
  color: #fff;
}

.btn-ghost {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: .3s;
}

.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.hero-right {
  position: relative;
  background: var(--mint);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.4s ease;
  min-height: 100vh;
}

.hero-image:hover { transform: scale(1.04); }

.hero-badge {
  position: absolute;
  bottom: 48px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.hero-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
}

.hero-badge span {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  font-weight: 700;
}

/* BUBBLES decoration */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 6s ease-in-out infinite;
}

.bubble-1 {
  width: 140px; height: 140px;
  background: var(--teal);
  top: 10%; right: 5%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 80px; height: 80px;
  background: var(--coral);
  top: 40%; right: 12%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 50px; height: 50px;
  background: var(--teal-light);
  top: 70%; right: 3%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* TRUST STRIP */
.trust-strip {
  background: var(--teal);
  padding: 24px 6%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}

.trust-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.trust-item p {
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
}

/* SERVICES SECTION */
.services-section {
  padding: 120px 6%;
  background: var(--off-white);
}

.section-header {
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--text);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px;
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: .4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px var(--shadow);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--mint);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* QUOTE */
.quote-section {
  background: var(--teal);
  padding: 100px 6%;
  overflow: hidden;
  position: relative;
}

.quote-section .bg-text {
  color: #fff;
  opacity: 0.04;
}

.quote-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-box h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  color: rgba(255,255,255,.9);
  font-style: italic;
  line-height: 1.5;
}

.quote-author {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

/* SPLIT SECTION */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: stretch;
}

.split-section.reverse .split-img { order: 2; }
.split-section.reverse .split-body { order: 1; }

.split-img {
  overflow: hidden;
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.split-img img:hover { transform: scale(1.04); }

.split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8%;
  background: var(--white);
}

.num-label {
  font-size: 5rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}

.split-body h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--text);
}

.split-body p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  max-width: 380px;
}

/* REVIEWS */
.reviews-section {
  padding: 120px 6%;
  background: var(--off-white);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: .3s;
}

.review-card:hover {
  box-shadow: 0 16px 48px var(--shadow);
  border-color: var(--teal-light);
}

.stars {
  color: var(--coral);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.review-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.reviewer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.reviewer-info strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
}

.reviewer-info span {
  font-size: 11px;
  color: var(--muted);
}

/* FOOTER */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.8);
  padding: 90px 6%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-top h2 {
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  color: #fff;
  max-width: 480px;
}

.footer-sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-sub p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}

.newsletter {
  display: flex;
  gap: 0;
  max-width: 420px;
}

.newsletter input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  outline: none;
  border-radius: 50px 0 0 50px;
}

.newsletter input::placeholder { color: rgba(255,255,255,.3); }

.newsletter button {
  padding: 14px 24px;
  border: none;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: .3s;
}

.newsletter button:hover { background: var(--teal-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ─────────────────────────────
   JOURNEY PAGE
───────────────────────────── */

.journey-hero {
  min-height: 100vh;
  background: var(--teal);
  display: flex;
  align-items: flex-end;
  padding: 180px 6% 100px 10%;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.journey-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.page-hero-tag {
  display: block;
  font-size: 18px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  margin-bottom: 24px;
}

.page-hero-title {
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: .9;
  letter-spacing: -2px;
  color: #fff;
}

.journey-hero-content{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.journey-text{
  flex: 1;
}

.doctor-photo-box{
  width: 420px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  flex-shrink: 0;
  margin-top: 30px;
}

.doctor-photo-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media(max-width: 992px){
  .journey-hero-content{
    flex-direction: column;
    text-align: center;
  }

  .doctor-photo-box{
    width: 100%;
    max-width: 350px;
    height: 450px;
    margin-top: 30px;
  }
}

/* TIMELINE */
.timeline-section {
  padding: 130px 6%;
  background: var(--off-white);
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%; top: 0;
  width: 1px;
  height: 100%;
  background: var(--border);
}

.timeline-card {
  width: 44%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 80px;
  position: relative;
}

.timeline-card::after {
  content: '';
  position: absolute;
  top: 50%; right: -32px;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--border);
}

.timeline-card.right::after {
  right: auto;
  left: -32px;
}

.timeline-card.left { margin-right: auto; }
.timeline-card.right { margin-left: auto; }

.tc-year {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 14px;
  background: var(--mint);
  padding: 5px 14px;
  border-radius: 20px;
}

.timeline-card h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: var(--text);
}

.timeline-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* GALLERY */
.gallery-section {
  padding: 80px 0;
  background: var(--text);
}

.collage {
  position: relative;
  height: 800px;
  padding: 0 6%;
}

.collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 1s ease;
}

.collage img:hover { transform: scale(1.03); }

.img1 { width: 38%; height: 490px; top: 0; left: 8%; }
.img2 { width: 28%; height: 380px; right: 8%; top: 60px; }
.img3 { width: 32%; height: 420px; left: 28%; bottom: 0; }

/* STATS */
.stats-section {
  padding: 100px 6%;
  background: var(--white);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-bubble {
  width: 210px; height: 210px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: .4s;
}

.stat-bubble:hover {
  border-color: var(--teal);
  background: var(--mint);
  transform: translateY(-6px);
}

.stat-bubble h2 {
  font-size: 3rem;
  color: var(--teal);
}

.stat-bubble p {
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--muted);
  font-weight: 700;
}

/* ─────────────────────────────
   CONNECT PAGE
───────────────────────────── */

.connect-hero {
  min-height: 65vh;
  background: #9ae1d9;
  display: flex;
  align-items: flex-end;
  padding: 0 6% 80px 10%;
  padding-top: 120px;
}

/* BOOKING */
.booking-section {
  padding: 100px 6%;
  background: var(--off-white);
}

.glass-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px;
}

.glass-panel h2 {
  font-size: 2.4rem;
  margin-bottom: 36px;
  color: var(--text);
}

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

.glass-panel input,
.glass-panel textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  border-radius: 10px;
  transition: .3s;
  display: block;
}

.glass-panel input:focus,
.glass-panel textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42,157,143,.08);
}

.glass-panel input::placeholder,
.glass-panel textarea::placeholder { color: #aaa; }

.glass-panel button {
  padding: 15px 40px;
  border: none;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  transition: .4s;
  box-shadow: 0 8px 24px var(--shadow);
}

.glass-panel button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.schedule-item:last-child { border-bottom: none; }

.schedule-item .day {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--teal);
  font-weight: 700;
}

.schedule-item .hours {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text);
}

.schedule-item .dot {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
}

/* MAP */
.map-section {
  position: relative;
  height: 52vh;
  min-height: 360px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.3) brightness(1.05);
}

.map-overlay {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  padding: 18px 48px;
  letter-spacing: 5px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50px;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width: 992px) {
  .hero { grid-template-columns: 1fr; }

  .hero-left { padding: 80px 6%; }

  .hero-image { min-height: 50vh; }

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-img,
  .split-section.reverse .split-body { order: unset; }

  .split-img img { min-height: 300px; }
  .split-body { padding: 52px 6%; }

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  .timeline-card {
    width: 100%;
    margin-left: 0 !important;
  }

  .timeline-card::after { display: none; }
  .timeline-line { display: none; }

  .collage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 5%;
  }

  .collage img {
    position: static;
    width: 100% !important;
    height: 240px !important;
  }

  .stats-grid { gap: 20px; }
  .stat-bubble { width: 150px; height: 150px; }
  .stat-bubble h2 { font-size: 2.2rem; }

  .glass-panel { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .top-nav { padding: 16px 5%; }
  .nav-links { gap: 20px; }

  .hero-badge { left: 10px; bottom: 20px; }

  .connect-hero { min-height: 50vh; padding-top: 100px; }
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: border-color .3s;
  z-index: 1001;
}

.nav-hamburger:hover { border-color: var(--teal); }

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease, width .25s ease;
  transform-origin: center;
}

/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER OVERLAY ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 45, 43, 0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity .35s ease;
}

.nav-overlay.visible {
  display: block;
}

.nav-overlay.open {
  opacity: 1;
}

@media(max-width: 600px) {
  .trust-strip { justify-content: flex-start; padding: 20px 5%; gap: 16px; }
  .trust-item p { font-size: 9px; }

  /* Show hamburger */
  .nav-hamburger { display: flex; }

  /* ── TOP DROPDOWN ── */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    z-index: 999;
    padding: 80px 6% 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .32s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--muted);
  }

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

html,
body {
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100%;
}