/* ============================================
   Tuk Tuk Rental Sri Lanka - Premium Design
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* ---------- CSS Variables (Light) ---------- */
:root {
  --color-primary: #FF7A00;
  --color-primary-dark: #E66D00;
  --color-primary-glow: rgba(255, 122, 0, 0.35);
  --color-secondary: #1E8F4E;
  --color-secondary-light: #22A85D;
  --color-secondary-glow: rgba(30, 143, 78, 0.25);
  --color-dark: #1A1A1A;
  --color-text: #1A1A1A;
  --color-text-muted: #5A5A5A;
  --color-bg: #F9FAFB;
  --color-bg-card: #FFFFFF;
  --color-border: #E5E7EB;
  --color-white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 32px var(--color-primary-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
  --container-max: 1200px;
  --header-height: 76px;
  --radius: 16px;
  --radius-sm: 12px;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* Dark mode */
body.dark-mode {
  --color-text: #F3F4F6;
  --color-text-muted: #9CA3AF;
  --color-bg: #0F0F0F;
  --color-bg-card: #1A1A1A;
  --color-border: #2D2D2D;
  --glass: rgba(26, 26, 26, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.page-loader__logo {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  opacity: 0.95;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 9998;
  transition: width 0.1s ease-out;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.9;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-list {
  display: none;
  list-style: none;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex;
    align-items: center;
  }
}

.nav-list a {
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-list a:hover {
  color: var(--color-primary);
  background: rgba(255, 122, 0, 0.08);
}

.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px var(--color-primary-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-primary-glow);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-card);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.nav-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu .nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
}

.mobile-menu .nav-list a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

.mobile-menu .nav-cta {
  margin-top: 1rem;
  text-align: center;
}

/* Mobile Menu Default Hidden */
.mobile-menu {
  display: none;
}

/* When Menu Open */
.header.nav-open .mobile-menu {
  display: block;
}

/* Hide Desktop Nav on Mobile */
@media (max-width: 768px) {
  .nav > .nav-list {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
/* mobile menu hidden by default */
.mobile-menu {
  display: none;
  position: fixed; /* fixed so it overlays the page */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* full screen */
  background-color: rgba(0,0,0,0.9); /* dark overlay */
  z-index: 9999;
  padding-top: 80px; /* leave space for header */
}

/* show menu when active */
.mobile-menu.active {
  display: block;
}

/* make the links visible */
.mobile-menu .nav-list {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.mobile-menu .nav-list li {
  margin: 20px 0;
}

.mobile-menu .nav-list li a {
  color: #fff; /* white text */
  font-size: 24px;
  text-decoration: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: #000;
  transition: all 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; /* below header */
  left: 0;
  width: 100%;
  max-height: calc(100vh - 60px); /* don’t take full screen */
  background-color: rgba(0,0,0,0.95);
  z-index: 9999;
  overflow-y: auto; /* scroll if too many items */
  padding: 10px 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu .nav-list li {
  margin: 12px 0; /* smaller spacing */
}

.mobile-menu .nav-list li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  display: block;
  padding: 4px 10px; /* clickable area */
  border-radius: 8px;
  transition: background 0.3s;
}

.mobile-menu .nav-list li a:hover {
  background-color: rgba(255,255,255,0.1);
}

.mobile-menu .nav-list .nav-cta {
  background-color: #1E8F4E;
  font-weight: 600;
}

.mobile-menu .nav-list .nav-cta:hover {
  background-color: #166c3a;
}

/* ---------- Hero (full screen) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(30, 143, 78, 0.35) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: var(--header-height);
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff9a3d;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.1s both;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.2rem;
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating booking card (hero) ---------- */
.hero-booking-card {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 420px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-booking-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-booking-card .btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 4px 14px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-primary-glow);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
  color: #fff;
  box-shadow: 0 4px 14px var(--color-secondary-glow);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-secondary-glow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Button ripple (JS adds effect) */
.btn-ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ---------- Why Choose Us (glassmorphism) ---------- */
.why-choose-us {
  background: var(--color-bg);
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  opacity: 0.5;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    gap: 1.5rem;
  }
}

.why-card {
  background: var(--color-bg-card);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.12), var(--shadow-md);
  border-color: rgba(255, 122, 0, 0.2);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(30, 143, 78, 0.08));
  color: var(--color-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform var(--transition);
}

.why-card:hover .why-card__icon {
  transform: scale(1.08);
}

.why-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

/* ---------- Stats strip ---------- */
.stats {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 24px var(--color-primary-glow);
}

.stats__text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .stats__text {
    font-size: 1.5rem;
  }
}

/* ---------- Wave separator ---------- */
.wave-wrap {
  margin-top: -1px;
  line-height: 0;
  overflow: hidden;
}

.wave-wrap svg {
  width: 100%;
  height: 48px;
}

@media (min-width: 768px) {
  .wave-wrap svg {
    height: 64px;
  }
}

/* ---------- Booking CTA ---------- */
.booking-cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #166B3E 50%, var(--color-secondary-light) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
}

.booking-cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .booking-cta__title {
    font-size: 2.5rem;
  }
}

.booking-cta__sub {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.booking-cta .btn-primary {
  background: #fff;
  color: var(--color-secondary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.booking-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* ---------- Features (horizontal scroll on mobile) ---------- */
.features-section {
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(260px, 1fr));
  gap: 1.5rem;
  padding-bottom: 1rem;
}

@media (max-width: 1023px) {
  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .features-grid .feature-card {
    flex: 0 0 85%;
    max-width: 340px;
    scroll-snap-align: start;
  }
}

.feature-card {
  background: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(30, 143, 78, 0.4);
  box-shadow: 0 12px 32px var(--color-secondary-glow);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(30, 143, 78, 0.12), rgba(30, 143, 78, 0.06));
  color: var(--color-secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- Steps ---------- */
.steps {
  background: var(--color-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.step-card {
  text-align: center;
  transition: transform var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card__num {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px var(--color-primary-glow);
}

.step-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ---------- Reviews carousel ---------- */
.reviews-section {
  overflow: hidden;
}

.reviews-carousel {
  position: relative;
  margin: 0 -1rem;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  background: var(--color-bg-card);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

@media (min-width: 600px) {
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.review-card__stars {
  color: #FFB800;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.review-card__quote {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-style: italic;
  line-height: 1.6;
}

.review-card__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.reviews-dots button.active {
  background: var(--color-primary);
  transform: scale(1.25);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--color-primary), #ff9a3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.footer__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.footer__links {
  list-style: none;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  display: inline-block;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer__social a:hover {
  background: var(--color-primary);
  transform: scale(1.08);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--color-primary-glow);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px var(--color-primary-glow);
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 5.5rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 5.5rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
}

/* ---------- Mobile bottom nav ---------- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 0.5rem 0;
  z-index: 800;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active {
  color: var(--color-primary);
}

.mobile-bottom-nav .nav-cta-mobile {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff !important;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-weight: 600;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #166B3E 50%, var(--color-secondary-light) 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .page-hero__title {
    font-size: 2.75rem;
  }
}

.page-hero p {
  opacity: 0.95;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* ---------- Rent: Wizard & sticky price ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
  }
}

.booking-wizard {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.wizard-progress {
  display: flex;
  background: var(--color-bg);
  padding: 0.5rem;
}

.wizard-progress__step {
  flex: 1;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  transition: background var(--transition);
}

.wizard-progress__step.active {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.wizard-progress__step.done {
  background: var(--color-secondary);
}

.wizard-steps {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .wizard-steps {
    padding: 2rem;
  }
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.wizard-actions .btn {
  min-width: 120px;
}

/* Sticky price card */
.price-summary-card {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
}

.price-summary-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.price-summary-card__row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.price-summary-card__row.total {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-text);
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
}

.price-summary-card__row.advance {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1rem;
}

.price-summary-card .price-updated {
  animation: pricePulse 0.5s ease;
}

@keyframes pricePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; transform: scale(1.02); }
}

/* Form groups (rent) */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.extras-grid label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid transparent;
}

.extras-grid label:hover {
  background: var(--color-border);
}

.extras-grid input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
}

.form-actions {
  text-align: center;
  margin-top: 1.5rem;
}

.form-actions .btn {
  min-width: 200px;
  padding: 1rem 2rem;
}

.form-error {
  font-size: 0.875rem;
  color: #DC3545;
  margin-top: 0.25rem;
}

/* ---------- About: Timeline & split ---------- */
.about-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.08rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-split__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-split__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-split__image img {
    height: 340px;
  }
}

.about-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
  border-radius: 3px;
}

.about-timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.about-timeline__item:last-child {
  padding-bottom: 0;
}

.about-timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.2);
}

.about-timeline__item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.about-timeline__item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 640px) {
  .counter-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.counter-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.counter-item__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.counter-item__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mission-card {
  padding: 2rem;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
}

.mission-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.mission-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-image-block {
  margin: 2.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-block img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-image-block img {
    height: 360px;
  }
}

.about-image-block figcaption {
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ---------- Contact: glass form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.contact-form-wrap {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

body.dark-mode .contact-form-wrap {
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-info-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

body.dark-mode .contact-info-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.contact-info p {
  margin-bottom: 0.85rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info .footer__social {
  margin-top: 1.25rem;
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: none;
}

@media (min-width: 768px) {
  .map-wrap iframe {
    height: 360px;
  }
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  transform: scale(0.92);
  transition: transform var(--transition);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(30, 143, 78, 0.15), rgba(30, 143, 78, 0.08));
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.modal__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.modal__text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.modal .btn {
  min-width: 140px;
}

/* ---------- Scroll reveal ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* Sticky booking button (mobile rent page) */
.sticky-book-mobile {
  display: none;
}

@media (max-width: 767px) {
  .sticky-book-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    z-index: 700;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  }
  .sticky-book-mobile .btn {
    width: 100%;
    padding: 1rem;
  }
  .booking-section .form-actions:not(.sticky-book-mobile) {
    margin-bottom: 5rem;
  }
}

@media (max-width: 768px) {

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .features-grid,
  .why-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .reviews-track {
    gap: 12px;
  }

  .hero-booking-card {
    position: static;
    margin-top: 20px;
  }
}

.footer__social a {
  font-size: 20px;
  color: #fff;
  margin-right: 15px;
  transition: 0.3s;
}

.footer__social a:hover {
  color: #1E8F4E;
  transform: translateY(-3px);
}

/* ============================= */
/* MOBILE NAV FIX */
/* ============================= */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile only */
@media (max-width: 900px) {

  /* Hide desktop menu */
  .nav > .nav-list {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Mobile menu container */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1A1A1A;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 2000;
  }

  /* When menu open */
  .header.nav-open .mobile-menu {
    max-height: 400px;
  }

  .mobile-menu .nav-list {
    flex-direction: column;
    padding: 20px;
  }

  .mobile-menu .nav-list li {
    margin: 15px 0;
  }

  .mobile-menu .nav-list a {
    color: #fff;
    font-size: 18px;
  }
}

/* ================================= */
/* MOBILE NAVBAR - FINAL FIX */
/* ================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* Hamburger default */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger lines */
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile view */
@media (max-width: 900px) {

  /* Hide desktop nav */
  .nav > .nav-list {
    display: none !important;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
    z-index: 3000;
  }

  /* Mobile menu hidden */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1A1A1A;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 2500;
  }

  /* When opened */
  .header.nav-open .mobile-menu {
    max-height: 500px;
  }

  /* Menu layout */
  .mobile-menu .nav-list {
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 15px;
  }

  .mobile-menu .nav-list a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
  }

  /* Prevent page shift */
  .header {
    position: relative;
    z-index: 3000;
  }
}

/* ================================= */
/* FORCE SHOW HAMBURGER ON MOBILE */
/* ================================= */

@media (max-width: 900px) {

  /* Force hamburger visible */
  .hamburger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 9999;
  }

  /* Hide desktop menu */
  .nav > .nav-list {
    display: none !important;
  }

  /* Fix nav container */
  .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
  }

  /* Mobile menu base */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1A1A1A;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 9998;
  }

  /* Open state */
  .header.nav-open .mobile-menu {
    max-height: 500px;
  }

  /* Menu links */
  .mobile-menu .nav-list {
    display: flex !important;
    flex-direction: column;
    padding: 25px;
  }

  .mobile-menu .nav-list a {
    color: #fff;
    font-size: 18px;
  }
}
/* =============================== */
/* HAMBURGER COLOR FIX */
/* =============================== */

/* Default (Light mode) */
.hamburger span {
  background: #1A1A1A; /* Dark */
}

/* Dark mode */
body.dark-mode .hamburger span {
  background: #ffffff; /* White */
}

/* =============================== */
/* MOBILE MENU OPEN FIX */
/* =============================== */

@media (max-width: 900px) {

  /* Closed */
  .mobile-menu {
    display: block;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  /* Open */
  .header.nav-open .mobile-menu {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }
}


