
:root {
  /* Colors from Nomadic Horizon adapted for Me Time We Time */
  --surface: #ffffff;
  --surface-dim: #f3f3f0;
  --surface-bright: #ffffff;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #fafaf8;
  --surface-container: #f3f3f0;
  --surface-container-high: #e9e9e5;
  --surface-container-highest: #dfdfda;
  --on-surface: #171717;
  --on-surface-variant: #474744;
  --inverse-surface: #2d2d2d;
  --inverse-on-surface: #f5f5f5;
  --outline: #d1d1cb;
  --outline-variant: #dfdfda;
  --surface-tint: #2F5D50;
  
  --primary: #F58220;                /* Warm Orange brand color */
  --on-primary: #ffffff;
  --primary-container: #ffeedc;
  --on-primary-container: #934c00;
  --inverse-primary: #ffb875;
  
  --secondary: #2F5D50;              /* Forest Green secondary brand color */
  --on-secondary: #ffffff;
  --secondary-container: #d6ede5;
  --on-secondary-container: #0b251d;
  
  --tertiary: #171717;
  --on-tertiary: #ffffff;
  --tertiary-container: #f3f3f0;
  --on-tertiary-container: #474744;
  
  --error: #ba1a1a;
  --on-error: #ffffff;
  --error-container: #ffdad6;
  --on-error-container: #93000a;
  
  --background: #fafaf8;             /* Warm White background */
  --on-background: #171717;          /* Near Black text */
  --surface-variant: #f3f3f0;
  
  /* Brand specific colors - customized for Me Time We Time */
  --deep-expedition: #2F5D50;       /* Forest Green secondary brand color */
  --sunset-accent: #F58220;         /* Warm Orange brand color */
  --sunset-accent-bright: #FF9E42;  /* Brighter Orange for active/hover states */
  --sand-parchment: #F3F3F0;        /* Natural warm light cream/grey */
  --stone-warm: #D1D1CB;            /* Refined natural stone grey for borders */
  --snow-peak: #ffffff;             /* Headings (Pure White) */
  --body-text: #F5F2EB;             /* Body text (Warm White) */
  --charcoal-deep: #080b09;         /* Background color (Cinematic Slate) */
  --ink-navy: #0e1310;              /* Inner container dark background */
  --mist-light: rgba(47, 93, 80, 0.03); /* Faint Forest Green mist */

  /* Glassmorphism tokens - Re-tuned for Premium Immersive Frosted-Glass */
  --glass-bg-dark:   rgba(8, 11, 9, 0.75); /* Header, floating navigation */
  --glass-bg-mid:    rgba(8, 11, 9, 0.55);
  --glass-bg-light:  rgba(8, 11, 9, 0.35); /* Premium frosted-glass card backgrounds */
  --glass-border-light: rgba(255, 255, 255, 0.15); /* Thin translucent border */
  --glass-border-dark:  rgba(255, 255, 255, 0.08); /* Translucent border for cards */
  --glass-glow-dark: 0 8px 32px 0 rgba(47, 93, 80, 0.02); /* Soft shadow */
  --glass-glow-accent: 0 16px 48px 0 rgba(47, 93, 80, 0.06), 0 0 30px 0 rgba(245, 130, 32, 0.08);
  --glass-blur: blur(24px);
  --glass-blur-sm: blur(16px);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-default: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Spacing */
  --unit: 4px;
  --container-max-width: 1280px;
  --gutter: 24px;
  --margin-desktop: 64px;
  --margin-tablet: 32px;
  --margin-mobile: 16px;
  --stack-sm: 8px;
  --stack-md: 16px;
  --stack-lg: 32px;
  --section-gap: 80px;
}

@media (max-width: 768px) {
  :root {
    --gutter: 16px;
    --section-gap: 48px;
  }
}

/* --- Base & Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === CINEMATIC GLOBAL CANVAS === */
html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif; /* Geometric modern body font */
  color: var(--snow-peak);
  background-color: #080b09; /* Cinematic dark slate background */
  overflow-x: hidden;
}

/* Cinematic Global Canvas: Fixed background image with native sharpness */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -9;
  background-image: url('images/bg-image.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: none;
  opacity: 1; /* Vibrant background image */
  pointer-events: none;
}

/* Atmospheric Gradients & Fine Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -8;
  pointer-events: none;
  background:
    /* Smooth top shadow gradient to visually cradle the navigation pill */
    linear-gradient(to bottom, rgba(15, 23, 18, 0.6) 0%, transparent 180px),
    /* Fine-grain noise texture overlay */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
}

body {
  font-family: 'Inter', sans-serif; /* Geometric body font */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  overflow-x: hidden;
  color: var(--body-text);
  background: transparent;
}

/* WebGL shader canvas — atmospheric color grading layer */
#shader-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -7;              /* sits above the mountain and grain, below all content */
  pointer-events: none;
  display: block;
  opacity: 0.10;            /* Soft light tint for light theme */
  mix-blend-mode: color;    /* applies only hue/sat; preserves contrast */
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- Global Typography Defaults & Hierarchy --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif; /* Bold modern headings */
  font-weight: 800; /* ExtraBold */
  color: #ffffff; /* White headings for cinematic contrast */
  line-height: 1.2;
  letter-spacing: -0.02em;
  /* Soft drop shadow depth to keep headings crisp on dark/vibrant canvas */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

h1 { font-size: 54px; font-weight: 900; letter-spacing: -0.03em; } /* Ultra-bold display h1 */
h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 20px; font-weight: 700; }
h5 { font-size: 16px; font-weight: 600; }
h6 { font-size: 14px; font-weight: 600; }

/* Keep card-bound headings and inputs dark Near Black for readability */
.value-card h1, .value-card h2, .value-card h3, .value-card h4, .value-card h5, .value-card h6,
.tour-card h1, .tour-card h2, .tour-card h3, .tour-card h4, .tour-card h5, .tour-card h6,
.team-card h1, .team-card h2, .team-card h3, .team-card h4, .team-card h5, .team-card h6,
.contact-detail-card h1, .contact-detail-card h2, .contact-detail-card h3, .contact-detail-card h4, .contact-detail-card h5, .contact-detail-card h6,
.contact-form-card h1, .contact-form-card h2, .contact-form-card h3, .contact-form-card h4, .contact-form-card h5, .contact-form-card h6,
.form-card h1, .form-card h2, .form-card h3, .form-card h4, .form-card h5, .form-card h6,
.option-card h1, .option-card h2, .option-card h3, .option-card h4, .option-card h5, .option-card h6 {
  color: var(--snow-peak) !important;
  text-shadow: none !important;
}

p, span, li, a, button, label, input, textarea {
  font-family: 'Inter', sans-serif; /* Geometric body font */
}

/* --- Typography System Classes — Modern & approachable --- */
.display-lg {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 6vw, 66px);
  font-weight: 900; /* Black weight */
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.display-lg-mobile {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}
.headline-lg {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.headline-lg-mobile {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.headline-md {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}
.body-lg {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400; /* Regular for high readability */
  line-height: 1.8;
  letter-spacing: -0.005em;
  color: var(--body-text);
}
.body-md {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245, 242, 235, 0.8);
}
.label-lg {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700; /* Bold sub-labels */
  line-height: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset-accent);
}
.label-md {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  .display-lg {
    font-size: 38px;
  }
  .headline-lg {
    font-size: 28px;
  }
  .display-lg-mobile {
    font-size: 28px;
  }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}

@media (max-width: 480px) {
  .display-lg {
    font-size: 30px !important;
  }
  .display-lg-mobile {
    font-size: 22px !important;
  }
  .headline-lg {
    font-size: 22px !important;
  }
  h1 { font-size: 26px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 18px !important; }
}

/* --- Layout & Section System --- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* All sections are transparent — photo is always visible beneath */
.section-gap {
  padding: var(--section-gap) 0;
  background: transparent;
  overflow: hidden;
}

/* Cinematic section — transparent with hairline separator */
.section-cinematic {
  padding: 100px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Soft light veil overlay that keeps text perfectly readable */
.section-veil {
  position: relative;
}
.section-veil > * { position: relative; z-index: 1; }

/* Section ambient warm glow */
.section-ambient-warm {
  position: relative;
}
.section-ambient-warm::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,32,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section-ambient-warm > * { position: relative; z-index: 1; }

.text-center  { text-align: center; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.d-flex       { display: flex; }
.d-grid       { display: grid; }

/* --- Components --- */

/* Navigation Header — Floating Glassmorphism Pill */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1240px;
  z-index: 1000;
  background: rgba(15, 23, 18, 0.45) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
}

.header.scrolled {
  top: 10px;
  background: rgba(15, 23, 18, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
}

.header.menu-open {
  z-index: 2005 !important;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 100%;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1); /* Converts black logo graphic to pure white */
}

.footer-logo img {
  height: 95px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1); /* Converts black logo graphic to pure white */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.22s ease;
  position: relative;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.nav-link.active {
  color: #ffffff !important;
  background: var(--secondary) !important; /* Forest Green for active state */
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-trigger {
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s;
  padding: 6px;
  border-radius: var(--radius-full);
}

.search-trigger:hover {
  color: var(--sunset-accent);
  background: rgba(47, 93, 80, 0.05);
}

.nav-toggle {
  display: none;
  font-size: 22px;
  color: #ffffff !important;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-default);
}

@media (max-width: 900px) {
  .header {
    width: auto !important;
    transform: none !important;
    left: 16px !important;
    right: 16px !important;
    top: 12px;
  }
  .logo img {
    height: 50px;
  }
  .nav-toggle {
    display: block;
    color: #ffffff !important;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(15, 23, 18, 0.95) !important; /* Premium dark glass for drawer */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 8px;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 2000;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  }
  .nav-menu .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9) !important; /* White links inside dark drawer */
  }
  .nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--sunset-accent) !important;
  }
  .nav-menu .nav-link.active {
    background: var(--sunset-accent) !important;
    color: #ffffff !important;
  }
  .nav-menu.open {
    left: 0;
  }
  .header-actions .btn-book {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-default);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 8px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 7px 18px;
  font-size: 12px;
  border-radius: var(--radius-full);
}

/* Book Now button in header — Warm Orange pill */
.btn-book {
  background-color: var(--sunset-accent) !important;
  color: #ffffff !important;
  border-radius: var(--radius-full) !important;
  font-size: 12.5px !important;
  padding: 7px 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 12px rgba(245, 130, 32, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}

.btn-book:hover {
  box-shadow: 0 4px 20px rgba(245, 130, 32, 0.4) !important;
  transform: translateY(-1px) !important;
}

.btn-primary {
  background-color: var(--deep-expedition);
  color: #ffffff;
  border: 1px solid var(--deep-expedition);
}

.btn-primary:hover {
  background-color: #1f3f36;
  border-color: #1f3f36;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--sunset-accent);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--sunset-accent-bright);
  transform: translateY(-1px);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-primary {
  border: 1px solid var(--deep-expedition);
  color: var(--deep-expedition);
}

.btn-outline-primary:hover {
  background-color: rgba(47, 93, 80, 0.05);
}

.btn-pill {
  border-radius: var(--radius-full);
}

/* Cards & Grid Lists */
.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

.grid-cols-4 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  display: grid;
  gap: var(--gutter);
}

.grid-cols-3 {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  display: grid;
  gap: var(--gutter);
}

.grid-cols-2 {
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  display: grid;
  gap: var(--gutter);
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr !important;
    gap: var(--gutter) !important;
  }
  .grid-container > [class*="col-span-"] {
    grid-column: span 1 / auto !important;
  }
  .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  .section-ambient-warm::before {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    height: 100% !important;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .value-card {
    padding: 24px !important;
  }
  .form-card {
    padding: 20px !important;
  }
  .contact-form-card {
    padding: 20px !important;
  }
  .hero-content {
    padding: 32px 16px !important;
  }
}

@media (max-width: 600px) {
  .step-label {
    display: none !important;
  }
  .option-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .whatsapp-box-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .whatsapp-box-info {
    justify-content: center !important;
  }
  .whatsapp-box-btn {
    text-align: center !important;
    align-self: center !important;
  }
}

/* Tour Card — Light Glassmorphic */
.tour-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border-dark);
  box-shadow: var(--glass-glow-dark);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  color: var(--snow-peak);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-glow-accent);
  border-color: rgba(245, 130, 32, 0.25);
  background: var(--glass-bg-mid);
}

.tour-card-dark {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border-dark);
}

.tour-card-dark:hover {
  border-color: rgba(245, 130, 32, 0.3);
  box-shadow: var(--glass-glow-accent);
}

.tour-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image {
  transform: scale(1.05);
}

.tour-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.tour-badge-bottom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.tour-badge-bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge-orange {
  background-color: var(--sunset-accent);
  color: #ffffff;
}

.badge-navy {
  background-color: rgba(47, 93, 80, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.badge-red {
  background-color: #ef4444;
  color: #ffffff;
}

.badge-blue {
  background-color: rgba(37, 99, 235, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.badge-accent-dark {
  background-color: rgba(220, 38, 38, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.badge-orange-transparent {
  background-color: rgba(245, 130, 32, 0.15);
  color: var(--sunset-accent);
  border: 1px solid rgba(245, 130, 32, 0.25);
  backdrop-filter: blur(4px);
}

.tour-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-expedition); /* Forest Green for meta labels */
  opacity: 0.9;
  margin-bottom: 12px;
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-title {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--snow-peak);
  margin-bottom: 12px;
  line-height: 1.3;
}

.tour-card:hover .tour-title {
  color: var(--sunset-accent);
}

.tour-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tour-highlights li {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(245, 242, 235, 0.75); /* Readable gray highlights */
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.tour-highlights li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sunset-accent);
  font-size: 10px;
  top: 2px;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--outline);
  margin-top: auto;
}


.tour-action-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--sunset-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.tour-action-btn:hover {
  transform: translateX(3px);
}

/* Team Card */
.team-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--glass-glow-dark);
  border: 1px solid var(--glass-border-dark);
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-glow-accent);
  border-color: rgba(245, 130, 32, 0.2);
  background: var(--glass-bg-mid);
}

.team-img-wrapper {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.03);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--snow-peak);
  margin-bottom: 4px;
  line-height: 1.2;
}

.team-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--sunset-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 250px;
}

.bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.bento-title {
  color: #ffffff; /* Always white inside image overlay */
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bento-title-border {
  border-bottom: 2px solid var(--sunset-accent);
  padding-bottom: 8px;
}

.col-span-7 { grid-column: span 7; }
.col-span-5 { grid-column: span 5; }
.col-span-4 { grid-column: span 4; }
.col-span-8 { grid-column: span 8; }
.col-span-6 { grid-column: span 6; }
.col-span-12 { grid-column: span 12; }

@media (max-width: 768px) {
  .col-span-7, .col-span-5, .col-span-4, .col-span-8, .col-span-6 {
    grid-column: span 12;
  }
}

/* Bento grid for values */
.values-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.value-card {
  padding: 36px;
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-glow-dark);
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-mid);
  box-shadow: var(--glass-glow-accent);
  border-color: rgba(245, 130, 32, 0.25);
}

.value-icon-box {
  width: 48px;
  height: 48px;
  background-color: rgba(245, 130, 32, 0.1); /* Orange background tint */
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sunset-accent);
  font-size: 22px;
  margin-bottom: 28px;
}

.value-title {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--snow-peak);
  margin-bottom: 12px;
  line-height: 1.25;
}

.value-desc {
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(245, 242, 235, 0.75);
  line-height: 1.7;
}

/* --- Hero (transparent — global html background shows through) --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
  background: transparent;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(250,250,248,0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(250,250,248,0.02) 0%, rgba(250,250,248,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.65) contrast(1.05); /* slightly lightened for readable text overlays */
  animation: heroZoom 10s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  
  mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.2) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.2) 85%, transparent 100%);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(250, 250, 248, 0.1) 0%,
    rgba(250, 250, 248, 0.25) 45%,
    rgba(250, 250, 248, 0.6) 100%
  );
  z-index: 1;
  mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.2) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.2) 85%, transparent 100%);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff; /* White text default for hero */
  max-width: 800px;
  margin: 0 auto;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Localized radial readability gradients behind headers */
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140%; height: 160%;
  background: radial-gradient(circle, rgba(15, 23, 18, 0.6) 0%, rgba(15, 23, 18, 0.2) 60%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  filter: blur(16px);
}

.section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
  text-align: center;
}

.section-header::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150%; height: 160%;
  background: radial-gradient(circle, rgba(15, 23, 18, 0.5) 0%, rgba(15, 23, 18, 0.12) 65%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  filter: blur(12px);
}

/* Forms & Stepper Builder (Custom Tour page) */
.form-card {
  background: var(--glass-bg-mid);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-glow-dark);
}

.stepper-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}

.stepper-header::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--outline);
  z-index: 1;
}

.stepper-line-active {
  position: absolute;
  top: 15px;
  left: 0;
  height: 2px;
  background-color: var(--sunset-accent);
  z-index: 1;
  width: 0%;
  transition: width 0.4s ease;
}

.step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border: 2px solid var(--outline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--stone-warm);
  transition: all 0.3s ease;
}

.step-node.active .step-circle {
  background-color: var(--sunset-accent);
  border-color: var(--sunset-accent);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(245, 130, 32, 0.3);
}

.step-node.completed .step-circle {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 235, 0.55);
}

.step-node.active .step-label {
  color: var(--sunset-accent);
}

.step-node.completed .step-label {
  color: #10b981;
}

.form-step-panel {
  display: none;
}

.form-step-panel.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.option-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-default);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-card:hover {
  background: rgba(245, 130, 32, 0.05);
  border-color: rgba(245, 130, 32, 0.25);
}

.option-card.active {
  background: rgba(245, 130, 32, 0.06);
  border-color: var(--sunset-accent);
  color: var(--sunset-accent);
}

.option-card-icon {
  font-size: 32px;
  color: rgba(245, 242, 235, 0.5);
  margin-bottom: 12px;
  display: block;
}

.option-card.active .option-card-icon {
  color: var(--sunset-accent);
}

.option-card-title {
  font-size: 15px;
  font-weight: 600;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--snow-peak);
}

.form-input-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border-dark) !important;
  color: var(--snow-peak) !important;
  border-radius: var(--radius-default) !important;
  padding: 12px 16px !important;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-control:focus {
  border-color: var(--sunset-accent) !important;
  box-shadow: 0 0 0 2px rgba(245, 130, 32, 0.15) !important;
}

.form-select-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23171717'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px !important;
}

.form-select-control option {
  background-color: #ffffff;
  color: var(--snow-peak);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--outline);
}

/* Filters Component — Light Glassmorphic */
.filter-bar {
  background: var(--glass-bg-mid);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-2xl);
  padding: 28px;
  border: 1px solid var(--glass-border-dark);
  box-shadow: var(--glass-glow-dark), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.filter-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background-color: #ffffff;
  border: 1px solid var(--outline);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  background-color: rgba(245, 130, 32, 0.02);
  border-color: rgba(245, 130, 32, 0.2);
}

.filter-pill.active {
  background-color: var(--sunset-accent);
  color: #ffffff;
  border-color: var(--sunset-accent);
  font-weight: 600;
}

.filter-inputs-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .filter-inputs-grid {
    grid-template-columns: 1fr;
  }
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245, 242, 235, 0.5);
}

.search-input-wrapper .form-input-control {
  padding-left: 44px !important;
}

/* FAQ Accordion Component — Light Glassmorphic */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-xl);
  padding: 0 24px;
  transition: background 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  color: var(--snow-peak);
}

.faq-item.active {
  background: rgba(245, 130, 32, 0.05);
  border-color: rgba(245, 130, 32, 0.25);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--snow-peak);
  cursor: pointer;
  gap: 16px;
}

.faq-question-btn i {
  transition: transform 0.3s ease;
  font-size: 18px;
  color: var(--sunset-accent);
  flex-shrink: 0;
}

.faq-item.active .faq-question-btn i {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 0 20px 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.8);
}

/* Contact Cards Grid */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 576px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

.contact-detail-card {
  padding: 24px;
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-glow-dark);
  display: flex;
  gap: 16px;
  transition: all 0.3s ease;
}

.contact-detail-card:hover {
  border-color: rgba(245, 130, 32, 0.25);
  box-shadow: var(--glass-glow-accent);
  background: var(--glass-bg-mid);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background-color: rgba(245, 130, 32, 0.1);
  border-radius: var(--radius-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sunset-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--snow-peak);
  margin-bottom: 6px;
}

.contact-info-text {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(245, 242, 235, 0.8);
  line-height: 1.6;
}

.whatsapp-box-cta {
  background-color: #25d366;
  color: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.whatsapp-box-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-box-info i {
  font-size: 36px;
}

.whatsapp-box-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.whatsapp-box-text p {
  font-size: 12px;
  opacity: 0.9;
}

.whatsapp-box-btn {
  background-color: white;
  color: #25d366;
  padding: 8px 20px;
  border-radius: var(--radius-default);
  font-weight: 700;
  font-size: 13px;
}

/* Map frame wrapper */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  border: 1px solid rgba(47, 93, 80, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact form card — Light Glassmorphic */
.contact-form-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 48px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--glass-border-dark);
  box-shadow: 0 10px 48px rgba(47, 93, 80, 0.03);
}

.contact-form-card .form-label {
  color: var(--snow-peak);
  opacity: 0.85;
}

.contact-form-card .form-input-control {
  background-color: rgba(255, 255, 255, 0.25) !important;
  border: 1px solid var(--glass-border-dark) !important;
  color: var(--snow-peak) !important;
}

.contact-form-card .form-input-control:focus {
  border-color: var(--sunset-accent) !important;
  box-shadow: 0 0 0 2px rgba(245, 130, 32, 0.15) !important;
}

/* Footer — Translucent Dark Glassmorphic Panel */
.footer {
  background: rgba(15, 23, 18, 0.2) !important; /* Premium dark glassmorphism */
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: #ffffff;
  --snow-peak: #ffffff; /* keep white inside footer */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  margin: 48px auto 32px auto;
  max-width: calc(var(--container-max-width) - 48px);
  padding: 64px 48px 32px 48px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Hide separate section backgrounds and hard transitions globally */
.hero-bg, 
.hero-overlay, 
.hero-overlay-gradient, 
.hero::after, 
.section-bg-blend,
.section-bg-blend + div {
  display: none !important;
}

.footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .footer {
    max-width: calc(100% - 32px);
    padding: 48px 24px 24px 24px;
    margin: 32px auto 16px auto;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-col {
  grid-column: span 4;
}

.footer-links-col {
  grid-column: span 2;
}

.footer-tours-col {
  grid-column: span 3;
}

.footer-contact-col {
  grid-column: span 3;
}

@media (max-width: 992px) {
  .footer-brand-col, .footer-contact-col {
    grid-column: span 6;
  }
  .footer-links-col, .footer-tours-col {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer-brand-col, .footer-links-col, .footer-tours-col, .footer-contact-col {
    grid-column: span 1 / auto !important;
  }
  .footer-contact-item p {
    flex: 1;
    min-width: 0;
  }
  .footer-logo img {
    height: 70px !important;
  }
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.footer-logo span {
  color: var(--sunset-accent);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: var(--sunset-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  color: #ffffff;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--sunset-accent);
}

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

.footer-links-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer-links-list a:hover {
  color: var(--sunset-accent-bright) !important;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--sunset-accent);
  font-size: 16px;
  margin-top: 3px;
}

.newsletter-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-default);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.newsletter-input {
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  color: white;
}

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

.newsletter-btn {
  background-color: var(--sunset-accent);
  color: #ffffff;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65) !important;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-bottom-links a:hover {
  color: var(--sunset-accent) !important;
}

/* Floating WhatsApp Badge */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* === CINEMATIC UTILITY PALETTE === */
.bg-deep-expedition {
  background: rgba(255, 255, 255, 0.0) !important; /* fully transparent — use the global canvas */
}
.bg-sand-parchment { background: transparent !important; }
.bg-snow-peak { background: transparent !important; }
.bg-background { background: transparent !important; }

.text-sunset-accent { color: var(--sunset-accent) !important; }
.text-snow-peak { color: var(--snow-peak) !important; }
.text-deep-expedition { color: var(--snow-peak) !important; }
.text-muted { color: rgba(245, 242, 235, 0.65) !important; }
.text-warm-stone { color: var(--stone-warm) !important; }

.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-full { border-radius: var(--radius-full) !important; }

.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.pb-1 { padding-bottom: 4px; }
.pb-2 { padding-bottom: 8px; }
.pt-20 { padding-top: 80px; }

.border-b-accent { border-bottom: 1px solid var(--sunset-accent); }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.brightness-50 { filter: brightness(0.5); }

/* --- Gallery & Lightbox Styles --- */
.gallery-viewport {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  overflow: visible;
  cursor: grab;
  user-select: none;
  touch-action: none;
  padding: 40px 0;
}

.gallery-viewport.grabbing {
  cursor: grabbing;
}

.gallery-carousel {
  position: relative;
  width: 300px;
  height: 380px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card {
  position: absolute;
  width: 300px;
  height: 380px;
  transform-style: preserve-3d;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border-dark);
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.4s ease, 
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

/* When the card is active/centered */
.gallery-card.is-active .gallery-image-wrapper {
  border-color: var(--sunset-accent);
  box-shadow: 0 20px 48px rgba(0,0,0,0.06), var(--glass-glow-accent);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.gallery-img.loaded {
  opacity: 1;
}

.gallery-card.is-active:hover .gallery-img.loaded {
  transform: scale(1.05);
}

/* Premium Placeholders & Shimmer */
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  color: rgba(23, 23, 23, 0.4);
  z-index: 1;
  transition: all 0.3s ease;
}

.shimmer-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(23, 23, 23, 0.02), transparent);
  background-size: 200% 100%;
  animation: gallery-shimmer 2.2s infinite linear;
  z-index: 0;
}

@keyframes gallery-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.placeholder-icon {
  font-size: 36px;
  color: var(--sunset-accent);
  margin-bottom: 12px;
  opacity: 0.65;
  z-index: 1;
  transition: transform 0.3s ease;
}

.gallery-card.is-active:hover .placeholder-icon {
  transform: scale(1.15);
}

.placeholder-tag {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sunset-accent);
  margin-bottom: 8px;
  z-index: 1;
  font-weight: 700;
}

.placeholder-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--snow-peak);
  margin-bottom: 8px;
  opacity: 0.8;
  z-index: 1;
}

.placeholder-text {
  font-size: 11px;
  opacity: 0.55;
  z-index: 1;
}

/* Info Hover Overlay */
.gallery-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 18, 0.85) 0%, rgba(15, 23, 18, 0.3) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-card.has-image.is-active:hover .gallery-info-overlay {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}

.gallery-info-content {
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.gallery-card.is-active:hover .gallery-info-content {
  transform: translateY(0);
}

.gallery-tag {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sunset-accent);
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.gallery-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.45;
}

.gallery-action {
  font-size: 10px;
  font-weight: 700;
  color: var(--sunset-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-card.has-image.is-active {
  cursor: pointer;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.05);
  color: var(--sunset-accent);
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10001;
}

.lightbox-arrow:hover {
  color: var(--sunset-accent);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-arrow-left {
  left: 32px;
}

.lightbox-arrow-right {
  right: 32px;
}

.lightbox-content {
  max-width: 80%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10000;
}

.lightbox-image {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--outline);
  transition: opacity 0.2s ease-out;
}

.lightbox-caption {
  text-align: center;
  margin-top: 24px;
  max-width: 600px;
  color: #ffffff;
}

.lightbox-tag {
  font-size: 10px;
  color: var(--sunset-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.lightbox-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.lightbox-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.5;
}

.lightbox-counter {
  font-size: 10.5px;
  color: var(--sunset-accent);
  opacity: 0.75;
  margin-top: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Responsiveness adjustments for 3D layout */
@media (max-width: 1024px) {
  .gallery-carousel {
    width: 260px;
    height: 330px;
  }
  .gallery-card {
    width: 260px;
    height: 330px;
  }
}

@media (max-width: 768px) {
  .gallery-viewport {
    height: 420px;
    padding: 20px 0;
  }
  .gallery-carousel {
    width: 210px;
    height: 310px;
  }
  .gallery-card {
    width: 210px;
    height: 310px;
  }
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .lightbox-arrow-left { left: 16px; }
  .lightbox-arrow-right { right: 16px; }
  .lightbox-content { max-width: 92%; }
  .lightbox-image { max-height: 55vh; }
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  .lightbox-title { font-size: 18px; }
  .lightbox-desc { font-size: 12px; }
}

/* --- Editorial Typography & Animations --- */
.gallery-editorial-header {
  max-width: 800px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.editorial-accent-line {
  height: 1px;
  background: var(--sunset-accent);
  width: 0;
  margin-bottom: 24px;
  box-shadow: 0 0 10px rgba(245, 130, 32, 0.3);
  animation: scaleWidth 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.editorial-meta-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  opacity: 0;
}

.editorial-meta-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sunset-accent);
}

.editorial-meta-divider {
  font-size: 8px;
  color: rgba(23, 23, 23, 0.3);
}

.editorial-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--snow-peak);
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0;
}

.editorial-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  color: var(--snow-peak);
  opacity: 0.95;
  letter-spacing: 0.02em;
}

.editorial-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  opacity: 0;
}

.editorial-dot {
  width: 6px;
  height: 6px;
  background: var(--sunset-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--sunset-accent);
}

.editorial-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(23, 23, 23, 0.7);
  max-width: 680px;
  text-align: center;
  opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleWidth {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

/* Responsive adjustments for editorial */
@media (max-width: 768px) {
  .editorial-title {
    font-size: 28px;
  }
  .editorial-desc {
    font-size: 13.5px;
    line-height: 1.55;
  }
  .gallery-editorial-header {
    margin-bottom: 24px;
  }
}

/* --- Seamless Section Blend Background Mask --- */
.section-bg-blend {
  position: absolute;
  inset: 0;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* --- Reusable Dark Vignette Spotlight Helper --- */
.dark-spotlight {
  position: relative;
  z-index: 2;
}
.dark-spotlight::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130%; height: 130%;
  background: radial-gradient(circle, rgba(15, 23, 18, 0.6) 0%, rgba(15, 23, 18, 0.2) 65%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  filter: blur(24px);
  border-radius: var(--radius-2xl);
}

/* --- Contextual Text Muted Contrast Defaults --- */
.text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.value-card .text-muted,
.tour-card .text-muted,
.team-card .text-muted,
.contact-detail-card .text-muted,
.contact-form-card .text-muted,
.form-card .text-muted,
.option-card .text-muted {
  color: rgba(245, 242, 235, 0.65) !important;
}

/* ==========================================================================
   Hover Reveal Interaction System (shadcn/21st.dev inspired)
   ========================================================================== */
.hover-reveal-group {
  position: relative;
}

/* 1. On group hover, de-emphasize all cards inside the group */
.hover-reveal-group:hover .tour-card,
.hover-reveal-group:hover .value-card,
.hover-reveal-group:hover .gallery-card {
  transform: scale(0.97);
  opacity: 0.65;
  filter: blur(1.5px);
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

/* 2. On direct hover or focus-within, emphasize the active item */
.hover-reveal-group .tour-card:hover,
.hover-reveal-group .tour-card:focus-within,
.hover-reveal-group .value-card:hover,
.hover-reveal-group .value-card:focus-within,
.hover-reveal-group .gallery-card:hover,
.hover-reveal-group .gallery-card:focus-within {
  transform: translateY(-10px) scale(1.04) !important;
  opacity: 1 !important;
  filter: blur(0) !important;
  z-index: 10;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

/* 3. Smooth transition settings for all cards */
.tour-card,
.value-card,
.gallery-card {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              filter 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Keyboard outline accessibility focus-visible matching ring-offset-2 ring-ring */
.tour-card:focus-visible,
.value-card:focus-visible,
.gallery-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--sunset-accent) !important;
}

/* Hardware-accelerated immersive hero video styling */
.hero-video {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  pointer-events: none; /* prevent click interception */
  mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.2) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.2) 85%, transparent 100%);
}

/* Immersive Continuous Cinematic Landscape Wrapper */
.cinematic-canvas-wrapper {
  position: relative;
  background: transparent !important;
  width: 100%;
  overflow: hidden;
}

.cinematic-canvas-wrapper::before {
  display: none !important;
}

/* Pure Cinematic Floating Images Overrides (No card frames, no borders) */
.gallery-carousel .gallery-image-wrapper {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
  border-radius: var(--radius-xl) !important;
}

.gallery-carousel .gallery-card.is-active .gallery-image-wrapper {
  border-color: transparent !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(245, 130, 32, 0.25) !important;
}

.gallery-carousel .gallery-info-overlay {
  display: none !important; /* Hide overlays on 3D carousel */
}

/* Ambient Audio Control Button */
.audio-control-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.audio-toggle-btn {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #F5F2EB;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.audio-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--sunset-accent);
  box-shadow: 0 8px 32px 0 rgba(245, 130, 32, 0.2), 0 0 15px rgba(245, 130, 32, 0.35);
  color: var(--sunset-accent);
}

.audio-toggle-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.audio-toggle-btn.playing i {
  animation: pulse-speaker 2s infinite ease-in-out;
}

.audio-tooltip {
  pointer-events: none;
  background: rgba(8, 11, 9, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.audio-control-container:hover .audio-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Sound Wave Animation inside button */
.audio-visualizer {
  position: absolute;
  bottom: 8px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audio-toggle-btn.playing .audio-visualizer {
  opacity: 0.6;
}

.audio-toggle-btn.playing i {
  transform: translateY(-5px);
}

.visualizer-bar {
  width: 2px;
  height: 100%;
  background-color: var(--sunset-accent);
  border-radius: 1px;
  transform-origin: bottom;
  animation: bounce-bar 1s ease-in-out infinite alternate;
}

.visualizer-bar:nth-child(1) {
  animation-duration: 0.4s;
  animation-delay: 0.1s;
}
.visualizer-bar:nth-child(2) {
  animation-duration: 0.6s;
  animation-delay: 0.3s;
}
.visualizer-bar:nth-child(3) {
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}

@keyframes bounce-bar {
  0% {
    transform: scaleY(0.2);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes pulse-speaker {
  0%, 100% {
    transform: scale(1) translateY(-5px);
  }
  50% {
    transform: scale(1.1) translateY(-5px);
  }
}


