:root {
  --bg: #000000;
  --text: #ffffff;
  --text-muted: #888888;
  --brand: #ac3131; /* Premium Green / Brand Color */
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
::-webkit-scrollbar {
  display: none;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--brand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
.cursor-text {
  display: none;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}
.cursor.active {
  width: 80px;
  height: 80px;
  mix-blend-mode: normal;
}
.cursor.active .cursor-text {
  display: block;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-text {
  font-family: var(--font-heading);
  font-size: 5vw;
  font-weight: 900;
  overflow: hidden;
  color: var(--text);
}

/* Navbar Desktop */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

/* State when scrolled down */
.navbar.scrolled {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  mix-blend-mode: difference;
  color: #ffffff;
}
.nav-right .hamburger-menu {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-right .fleets-btn {
  display: inline-flex;
}
.fleets-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 18px;

  background: #0a0a0a;
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;

  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;

  cursor: pointer;

  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.fleets-btn:hover {
  background: #151515;

  border-color: rgba(255, 255, 255, 0.22);

  transform: translateY(-1px);

  box-shadow:
    0 7px 20px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fleets-btn:active {
  transform: translateY(0) scale(0.97);
}
.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  mix-blend-mode: difference;
}

/* navbar mobile   */

@media (max-width: 768px) {
  .navbar {
    position: fixed;

    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 28px);
    max-width: 440px;
    height: 62px;

    padding: 0 14px 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between; 

    box-sizing: border-box;
    z-index: 9999;

    background: transparent !important;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    overflow: visible;
  }

  /* =====================================================
     REMOVED ODD BORDERS & BEZELS
  ===================================================== */

  .navbar::before,
  .navbar::after {
    display: none !important;
  }

  /* =====================================================
     CONTENT
  ===================================================== */

  .navbar > * {
    position: relative;
    z-index: 5;
  }

  /* =========================================================
     NAV RIGHT CONTAINER
  ========================================================= */

  .navbar .nav-right {
    display: flex !important; 
    align-items: center;
    justify-content: center;
  }

  /* =========================================================
     SLIDING LOGO WITH MARQUEE EFFECT & BOTTOM ACCENT
  ========================================================= */

  .navbar .logo {
    position: relative;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content: center;
    overflow: hidden;
    width: auto; 
    flex-grow: 1; 
    height: 100%;
  }

  /* Logo image / text container sliding effect */
  .navbar .logo img,
  .navbar .logo span {
    display: inline-block;
    animation: logoSlide 8s linear infinite;
    white-space: nowrap;
  }

  @keyframes logoSlide {
    0% {
      transform: translateX(20%);
      opacity: 0;
    }
    15% {
      transform: translateX(0%);
      opacity: 1;
    }
    85% {
      transform: translateX(0%);
      opacity: 1;
    }
    100% {
      transform: translateX(-20%);
      opacity: 0;
    }
  }

  /* Something on the bottom of the sliding logo */
  .navbar .logo::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0; 
    width: 40px;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8),
      transparent
    );
    animation: bottomPulse 2s ease-in-out infinite;
  }

  @keyframes bottomPulse {
    0%,
    100% {
      width: 20px;
      opacity: 0.4;
    }
    50% {
      width: 50px;
      opacity: 1;
    }
  }
  
  /* =========================================================
     CLASSY HAMBURGER MENU
  ========================================================= */

  .navbar .nav-right .hamburger-menu {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns lines to the right */
    justify-content: center;
    gap: 6px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    z-index: 100;
  }

  .navbar .nav-right .hamburger-menu .line {
    display: block;
    height: 1.5px;
    background-color: #ffffff;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
    border-radius: 2px;
  }

  /* Top line is full width */
  .navbar .nav-right .hamburger-menu .line-1 {
    width: 26px;
  }

  /* Bottom line is shorter for a modern look */
  .navbar .nav-right .hamburger-menu .line-2 {
    width: 16px;
  }

  /* Expand the bottom line on hover/tap */
  .navbar .nav-right .hamburger-menu:hover .line-2 {
    width: 26px;
  }

  /* Active state (for when you add JS to open the menu) to turn it into an 'X' */
  .navbar .nav-right .hamburger-menu.active .line-1 {
    transform: translateY(3.75px) rotate(45deg);
    width: 24px;
  }
  .navbar .nav-right .hamburger-menu.active .line-2 {
    transform: translateY(-3.75px) rotate(-45deg);
    width: 24px;
  }
  .navbar .nav-right .fleets-btn {
    display: none;
  }
  /* =====================================================
     SCROLL
  ===================================================== */

  .navbar.scrolled {
    transform: translate(-50%, -130%);
  }

  /* =====================================================
     FLEET MODE
  ===================================================== */

  .navbar.fleet-mode {
    top: auto;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: 50%;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible;
  }

  .navbar.fleet-mode::before,
  .navbar.fleet-mode::after {
    display: none !important;
  }

  /* ADDED !important HERE TO HIDE THE HAMBURGER IN FILTER BAR */
  .navbar.fleet-mode .logo,
  .navbar.fleet-mode .nav-right {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .navbar {
    width: calc(100% - 18px);
    height: 56px;
    padding: 0 10px 0 15px; 
  }
  .navbar .logo {
    font-size: 12px;
  }
  .navbar .nav-right .hamburger-menu {
    width: 38px;
    height: 38px;
  }
}

/* navbar mobile end  */

/* --- Buttons --- */
.magnetic-btn {
  background: var(--brand);
  border: none;
  color: #000000;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  will-change: transform;
}

.btn-text {
  pointer-events: none;
}

.magnetic-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(74, 222, 128, 0.2);
}

/* Editorial Hero */
.awwwards-hero {
  position: relative;
  width: 100vw;
  height: 100dvh;
  min-height: 700px;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rich vignette for dark mode */
.hero-vignette-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.hero-creative-layout {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12vh 0 6vh 0;
}

.hero-top-accent {
  display: flex;
  align-items: center;
  gap: 16px;
}
.accent-line {
  width: 40px;
  height: 1px;
  background: var(--brand);
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
}

.hero-typography {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}

.align-left {
  align-self: flex-start;
}
.align-center {
  align-self: center;
  margin-left: -10vw;
}
.align-right {
  align-self: flex-end;
}
.mask-wrap {
  overflow: hidden;
  padding-bottom: 2vh;
}

.title-word {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(60px, 11vw, 160px);
  line-height: 0.85;
  opacity: 50%;
  text-transform: uppercase;
  margin: 0;
  will-change: transform;
}

.solid-text {
  color: var(--text);
  font-weight: 900;
}
.italic-accent {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  font-size: clamp(50px, 9vw, 130px);
  color: var(--brand);
}
.outline-text {
  font-weight: 900;
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}

.hero-footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

/* Hero Subtext Container */
.hero-subtext-container {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left; /* Keeps it anchored beautifully to the left of the screen */
}

/* Typography Hierarchy */
.hero-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.hero-categories {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px; 
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* The Main Pill Container */
.hero-pricing-capsule {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  /* Tight padding on the left to hug the circle, wider on the right */
  padding: 6px 24px 6px 8px; 
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.03); /* Extremely subtle glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* The Circular Accent (Matches the "circle btn" vibe) */
.capsule-circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #4f200b; /* Champagne Gold to signify premium/zero deposit */
  color: #000000;
  border-radius: 50%;
  animation: spinSlow 8s linear infinite; /* Smooth, continuous rotation */
}

@keyframes spinSlow {
  100% { transform: rotate(360deg); }
}

/* Text Group Alignment */
.capsule-text-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Typography matching your classy aesthetic */
.hero-price-text {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-divider {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

.hero-highlight-badge {
  color: #602e16;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.magnetic-btn-nav {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  will-change: transform;
}
.magnetic-btn-circle {
  background: transparent;
  border: none;
}
.book-btn {
  background-color: #ffffff;
  color: #000000;
  width: 80px;
  font-weight: lighter;
}
.explore-circle {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.explore-text-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
}
.explore-text-svg text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  fill: var(--text);
}
.explore-arrow {
  font-size: 24px;
  color: var(--brand);
  transition: transform 0.4s ease;
}
.magnetic-btn-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

@keyframes rotateText {
  100% {
    transform: rotate(360deg);
  }
}

/* Marquee */
.marquee-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: var(--bg);
}
.marquee-container {
  display: flex;
  width: 200%;
}
.marquee-content {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 6vw;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}
.container-the-collection {
   position: absolute;
          top: 10vh;
          left: 0;
          right: 0;
          z-index: 10;
          text-align: center;
}
.container-the-collection .section-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--brand);
  margin-top: 30px;
  margin-left: 10px;
}

/* --- Pinned Horizontal Scroll Section --- */
.fleet-pin-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  z-index: 2;
}

.fleet-pin-track {
  display: flex;
  margin-top: 25px;
  flex-wrap: nowrap;
  gap: 60px;
  padding-left: calc(50vw - 350px);
  padding-right: calc(50vw - 350px);
}

.fleet-slide {
  flex: 0 0 700px;
  width: 700px;
  max-width: 85vw;
  height: 60vh;
  display: flex;
  align-items: center;
  transform-origin: center center;

  filter: blur(6px) brightness(0.7);
  opacity: 0.3;
  transform: scale(0.9) translate3d(0, 0, 0);

  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  will-change: transform, opacity, filter;
}

.fleet-slide.is-active {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1) translate3d(0, 0, 0) !important;
}

.creative-card {
  width: 100%;
  height: 100%;
  position: relative;
  top: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-slide img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.fleet-slide.is-active .creative-card,
.fleet-slide.is-active img {
  transform: translate3d(0, 0, 0) !important;
  filter: none !important;
}

.creative-title {
  position: absolute;
  top: -15%;
  left: -5%;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 900;
  line-height: 0.85;
  z-index: 1000;
  pointer-events: none;
  mix-blend-mode: difference;
  color: #ffffff;
  max-width: 85%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.creative-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  display: block;
  margin-left: 30%;
}

.creative-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.creative-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.creative-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.creative-info-pill {
  position: absolute;
  bottom: -6%;
  right: 5%;
  background: #ffffff;
  color: #000000;
  padding: 24px 40px;
  border-radius: 100px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.creative-info-pill .specs {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.creative-info-pill .price {
  font-size: 28px;
  font-family: var(--font-heading);
  font-weight: 900;
}

/* ========================================= */
/* MOBILE FLEET SLIDE + FADE-IN              */
/* ========================================= */

@media (max-width: 768px) {
  .fleet-pin-section {
    height: 750px;
    opacity: 0;
    transform: translateY(80px);
    margin-top: 0px; /* Restored normal spacing */
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* JS adds this class when section enters viewport */
  .fleet-pin-section.fleet-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* 3. Update this to remove the -40% margin */
  .marquee-section {
    padding: 10px 0; /* Gives it nice natural breathing room */
    margin-top: 0px; /* Fixed: Removed negative margin */
  }

  .fleet-pin-track {
    margin-top: 0;
  }

  .container-the-collection{
     position: absolute;
          top: 20vh;
          left: 0;
          right: 0;
          z-index: 10;
          text-align: center;
  }

  /* Collection heading */
  .fleet-pin-section .container-the-collection {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  }

  .fleet-pin-section.fleet-visible .container-the-collection {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
     MOBILE MENU FULL-SCREEN OVERLAY
  ========================================================= */

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 15, 18, 0.95); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9998; /* Sits just underneath the navbar (9999) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .mobile-menu-nav .menu-link {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  /* Hover effect for links */
  .mobile-menu-nav .menu-link:active {
    color: var(--brand, #aaaaaa);
    transform: scale(0.95);
  }

  /* Staggered animation when menu opens */
  .mobile-menu-overlay.active .menu-link {
    transform: translateY(0);
    opacity: 1;
  }
  
  .mobile-menu-overlay.active .menu-link:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu-overlay.active .menu-link:nth-child(2) { transition-delay: 0.2s; }
  .mobile-menu-overlay.active .menu-link:nth-child(3) { transition-delay: 0.3s; }
  .mobile-menu-overlay.active .menu-link:nth-child(4) { transition-delay: 0.4s; }

  .mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
  }

/* --- TRUST & PROCESS SECTION --- */
.trust-process {
  background: #000000;
  padding: 15vh 5%;
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 15vh auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin: 15px 0 20px 0;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.process-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15vh;
}

.process-line-track {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.process-line-fill {
  width: 100%;
  height: 0%;
  background: var(--brand);
}

.process-step {
  position: relative;
  width: 45%;
  z-index: 2;
}
.left-step {
  align-self: flex-start;
  text-align: right;
}
.right-step {
  align-self: flex-end;
  text-align: left;
}

.step-number {
  position: absolute;
  top: -50px;
  font-family: var(--font-heading);
  font-size: clamp(100px, 15vw, 220px);
  line-height: 0.8;
  z-index: -1;
  opacity: 0.15;
  will-change: transform;
}

.left-step .step-number {
  right: -20px;
}
.right-step .step-number {
  left: -20px;
}

.step-content {
  position: relative;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--text);
}
.step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 900px) {
  .process-container {
    gap: 10vh;
    padding-left: 30px;
  }
  .process-line-track {
    left: 0;
    transform: none;
  }
  .process-step {
    width: 100%;
    align-self: flex-start;
    text-align: left;
    padding-left: 20px;
  }
  .left-step .step-number,
  .right-step .step-number {
    left: 10px;
    right: auto;
    top: -30px;
  }
  .step-content {
    padding: 30px 20px;
  }
}

/* Footer CTA */
.curtain-footer-wrapper {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: #000000;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 5% 40px 5%;
  overflow: hidden;
  z-index: 1;
}

.footer-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

.curtain-footer-wrapper:hover .footer-hero-img {
  transform: scale(1.05);
  opacity: 0.35;
}
.footer-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

/* --- MARQUEE TICKER --- */
.footer-marquee {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: -5%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  padding-right: 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- MAIN CTA --- */
.footer-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 6vh 0;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(55px, 12vw, 170px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  margin: 20px 0 40px 0;
  letter-spacing: -0.03em;
}
.cta-line {
  display: block;
}

/* --- OVERSIZED MAGNETIC BUTTON --- */
.footer-magnetic-cta {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 30px;
  outline: none;
}

.magnetic-circle-inner {
  width: clamp(140px, 16vw, 220px);
  height: clamp(140px, 16vw, 220px);
  border-radius: 50%;
  background: var(--brand);
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.15);
}

.footer-magnetic-cta:hover .magnetic-circle-inner {
  background: #ffffff;
  transform: scale(1.1);
}
.btn-text {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 900;
  letter-spacing: 2px;
}
.btn-arrow {
  font-size: clamp(20px, 2.5vw, 32px);
  margin-top: 5px;
  transition: transform 0.3s ease;
}
.footer-magnetic-cta:hover .btn-arrow {
  transform: translate(4px, -4px);
}

@media (max-width: 768px) {
  .curtain-footer-wrapper {
    padding: 60px 20px 30px 20px;
  }
  .footer-bottom-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
}

/* --- Cinematic Reviews Section --- */
.word-of-mouth {
  display: none;
}

.reviews-section {
  height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 3;
}

.reviews-bg-quote {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 80vh;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
}

.reviews-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews-wrapper .section-heading {
  margin-top: 10vh;
}
.reviews-track {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-slide {
  position: absolute;
  width: 80%;
  max-width: 1000px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.stars {
  color: var(--brand);
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 32px;
}
.review-quote {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.review-author {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Site Footer --- */
.site-footer {
  background: #000000;
  color: var(--text);
  padding: 120px 5% 40px;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
.footer-desc {
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
  font-size: 16px;
}
.col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.footer-link {
  display: block;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
  width: fit-content;
}

.footer-link:hover {
  color: var(--brand);
  transform: translateX(6px);
}
.footer-address {
  color: var(--text-muted);
  margin-top: 32px;
  line-height: 1.6;
  font-size: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Cinematic Booking Modal --- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-container {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1200px;
  max-height: 85vh;
  background: #0a0a0a;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.modal-layout {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-img-col {
  flex: 1.2;
  position: relative;
  overflow: hidden;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.modal-text-col {
  flex: 1;
  padding: 40px 50px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  max-height: 100%;
}

.modal-eyebrow {
  color: var(--brand);
  font-family: var(--font-heading);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.modal-details {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
}
.modal-separator {
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.modal-price {
  color: var(--brand);
  font-weight: 700;
}
.modal-specs {
  color: var(--text-muted);
}
.modal-desc {
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 400px;
  font-size: 13px;
}

.date-picker-wrapper {
  width: 100%;
  margin-bottom: 20px;
}
.date-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.creative-date-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

/* Modal Action Buttons Layout */
.modal-actions-flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 10px;
}

/* Official WhatsApp Button Style */
.modal-wa-btn {
  background-color: #25d366 !important;
  color: #fff !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.modal-wa-btn:hover {
  background-color: #20ba5a !important;
  transform: translateY(-2px);
}
.modal-wa-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(100%);
  background-color: #444 !important;
  box-shadow: none;
}

/* T&C Trigger - Subtle Text Link Style */
.modal-tc-trigger.tc-text-link {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px 0;
  margin-top: 4px;
  cursor: pointer;
  align-self: center;
  transition: color 0.3s ease;
  width: auto;
}

.modal-tc-trigger.tc-text-link:hover {
  color: #ffffff;
}

/* --- Terms & Conditions Popup Overlay --- */
.tc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 200000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.tc-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tc-popup-container {
  position: relative;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  width: 85vw;
  max-width: 800px;
  height: 80vh;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
}

.tc-popup-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.2s;
  z-index: 10;
}

.tc-popup-close:hover {
  background: #ffffff;
  color: #000000;
}

.tc-popup-header {
  text-align: left;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  padding-right: 50px;
}

.tc-popup-header h2 {
  font-size: 18px;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.tc-popup-header p {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.tc-popup-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.tc-section {
  margin-bottom: 20px;
}
.tc-section h3 {
  font-size: 14px;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 6px;
}
.tc-section ul {
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}
.tc-section li {
  margin-bottom: 4px;
}
.tc-section p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.tc-footer-note {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}

/* --- Mobile Responsiveness Updates --- */
@media (max-width: 768px) {
  .modal-container {
    height: auto !important;
    max-height: 94vh !important;
    flex-direction: column;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .modal-layout {
    flex-direction: column;
    height: auto !important;
  }

  .modal-img-col {
    flex: none;
    width: 100%;
    height: 180px;
    min-height: 180px;
    padding: 10px;
  }

  .modal-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
  }

  .modal-text-col {
    flex: none;
    width: 100%;
    padding: 24px 20px 40px 20px;
    overflow-y: visible;
  }

  .modal-title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .modal-details {
    margin-bottom: 16px;
    font-size: 14px;
  }
  .modal-desc {
    margin-bottom: 20px;
    font-size: 13px;
  }
  .date-picker-wrapper {
    margin-bottom: 20px;
  }

  .modal-actions-flex {
    margin-bottom: 10px;
  }

  .tc-popup-container {
    width: 94vw;
    height: 85vh;
    padding: 24px 16px;
  }
}

/* --- Creative Date Picker UI --- */
.date-picker-wrapper {
  margin-bottom: 40px;
  width: 100%;
}
.date-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.creative-date-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 18px;
  font-family: var(--font-body);
  padding: 12px 0;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.creative-date-input:focus,
.creative-date-input:hover {
  outline: none;
  border-bottom-color: var(--brand);
}
.creative-date-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* --- Flatpickr Cinematic Dark Theme Overrides --- */
.flatpickr-calendar {
  background: #111111 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9) !important;
  font-family: var(--font-body) !important;
  border-radius: 16px !important;
  padding: 10px !important;
  z-index: 100001 !important;
}

.flatpickr-months {
  background: #111111 !important;
}
.flatpickr-months .flatpickr-month {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  border: none !important;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option {
  background: #181818 !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
}
.flatpickr-current-month input.cur-year {
  background: transparent !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
}
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: #ffffff !important;
  transition: fill 0.3s ease;
}
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: var(--brand) !important;
}

.flatpickr-weekday {
  color: var(--text-muted) !important;
  font-family: var(--font-heading) !important;
}
.flatpickr-day {
  color: #ffffff !important;
  border-radius: 8px !important;
}
.flatpickr-day:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: transparent !important;
}

/* Disabled Dates Styling */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.15) !important;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(255, 255, 255, 0.05) 4px,
    rgba(255, 255, 255, 0.05) 8px
  ) !important;
  border-color: transparent !important;
  text-decoration: line-through;
  cursor: not-allowed !important;
}

.flatpickr-day.flatpickr-disabled.today {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #000000 !important;
  font-weight: 700 !important;
}

.flatpickr-day.inRange {
  background: rgba(74, 222, 128, 0.1) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* =========================================
   Mobile Optimization
   ========================================= */
@media (max-width: 900px) {
  .hero-creative-layout {
    padding: 12vh 0 4vh 0;
  }
  .align-center {
    margin-left: 0;
  }
  .align-right {
    align-self: flex-start;
  }
}
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }

  .title-word {
    font-size: clamp(36px, 10vw, 55px);
  }
  .italic-accent {
    font-size: clamp(34px, 9vw, 50px);
  }
  .hero-footer-flex {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .explore-circle {
    width: 90px;
    height: 90px;
  }
  .explore-text-svg text {
    font-size: 16px;
  }
  .explore-arrow {
    font-size: 20px;
  }

  .arch-image-wrapper {
    width: 90% !important;
    max-width: 450px !important;
    margin: 0 auto !important;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
      ),
      linear-gradient(
        to right,
        transparent 5%,
        black 20%,
        black 80%,
        transparent 95%
      );
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
      ),
      linear-gradient(
        to right,
        transparent 5%,
        black 20%,
        black 80%,
        transparent 95%
      );
    mask-composite: intersect;
  }

  .nav-right .nav-link {
    display: none;
  }
  .fleet-pin-track {
    padding: 0 7.5vw;
    gap: 15vw;
  }
  .fleet-slide {
    flex: 0 0 85vw !important;
    width: 85vw !important;
    max-width: 85vw !important;
    height: 55vw;
    min-height: 220px;
  }
  .creative-title {
    font-size: clamp(32px, 8vw, 42px);
    left: -2%;
    top: -14%;
  }

  .creative-title .outline-text {
    -webkit-text-stroke: 1px #fff;
    margin-left: 8%;
    margin-top: 5%;
  }
  .creative-img-wrapper {
    border-radius: 12px;
  }
  .creative-info-pill {
    right: 2%;
    bottom: -12%;
    padding: 12px 20px;
    border-radius: 50px;
  }
  .creative-info-pill .specs {
    font-size: 10px;
    margin-bottom: 2px;
  }
  .creative-info-pill .price {
    font-size: 18px;
  }

  .review-slide {
    width: 90%;
  }
  .reviews-bg-quote {
    font-size: 40vh;
  }
  .stars {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }
  .review-quote {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 24px;
  }
  .review-author {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .site-footer {
    padding: 80px 5% 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .flatpickr-calendar {
    width: 90vw !important;
    max-width: 350px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin-top: 10px !important;
  }

  .flatpickr-innerContainer,
  .flatpickr-rContainer,
  .flatpickr-days,
  .dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .flatpickr-day {
    max-width: 14.28% !important;
    height: 40px !important;
    line-height: 40px !important;
  }
}

/* ========================================= */
/* MOBILE HERO CARD OVERRIDES                */
/* ========================================= */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }

  /* 1. Add this to fix the massive height of the parent container */
  .awwwards-hero {
    height: auto !important;
    min-height: auto !important;
    display: block !important;
  }

  .mobile-hero-card-wrapper {
    position: relative;
    width: 100vw;
    padding: 110px 16px 20px 16px; 
    box-sizing: border-box;
    background: var(--bg);
    margin-top: 0; /* Fixed: Removed negative margin */
  }

  .mobile-hero-card {
    position: relative;
    width: 100%;
    height: auto; /* Removed 100vh constraints, hugs the content */
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    /* Sleek lightweight dark glassy box */
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.85), rgba(12, 12, 14, 0.95));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Precise pixel-based chamfer corners (won't distort on short heights) */
    clip-path: polygon(
      16px 0, 100% 0, 
      100% calc(100% - 16px), calc(100% - 16px) 100%, 
      0 100%, 0 16px
    );
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }

  /* Inner light reflection border */
  .mobile-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 30%,
      transparent 70%,
      rgba(255, 255, 255, 0.03) 100%
    );
    clip-path: polygon(
      16px 0, 100% 0, 
      100% calc(100% - 16px), calc(100% - 16px) 100%, 
      0 100%, 0 16px
    );
  }

  .mobile-card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .m-card-center {
    display: flex;
    flex-direction: column;
  }

  .m-card-center .m-title {
    font-family: var(--font-heading);
    font-size: 11.5vw;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
  }

  .m-card-center .m-line {
    display: block;
  }
  
  .m-card-center .italic-accent {
    font-style: italic;
    font-weight: 400;
    padding-left: 8%;
    color: var(--brand);
  }
  
  .m-card-center .outline-text {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    margin-left: 15%;
  }

  /* Container Spacing */
.m-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
  margin-top: 2rem;
}

/* Typography Hierarchy - Clean and Elegant */
.m-subtext-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.m-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.m-categories {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; /* Slightly smaller to fit mobile */
  text-transform: uppercase;
  letter-spacing: 2px; /* Reduced from 4px to prevent wrapping */
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  white-space: nowrap; /* This forces the text to stay on a single line */
}

/* Pricing Highlight - Editorial "Fine Line" Style */
.m-pricing-highlight {
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  max-width: 320px; /* Keeps the text beautifully constrained */
  margin-left: auto;
  margin-right: auto;
}

.m-pricing-highlight .price-text {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.m-pricing-highlight .highlight-badge {
  color: #af5e4d; /* Sophisticated Champagne/Metallic Gold */
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

/* Button - Luxury Ghost Button */
.m-btn-primary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effect: Fills with white, arrow sweeps right */
.m-btn-primary:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.m-btn-primary .arrow {
  transition: transform 0.4s ease;
  font-weight: 400;
}

.m-btn-primary:hover .arrow {
  transform: translateX(4px); /* Sweeps right elegantly instead of bouncing */
}

  /* FIX MASSIVE SECTION HEIGHTS GLOBALLY */
  .trust-process {
    padding: 60px 20px !important;
  }
  .process-header {
    margin-bottom: 60px !important;
  }
  .process-container {
    gap: 60px !important;
  }
  .reviews-section {
    padding: 60px 20px !important;
  }
  .word-of-mouth {
    margin-top: 20px !important;
  }
  .curtain-footer-wrapper {
    min-height: auto !important;
    padding: 60px 20px 30px 20px !important;
  }
  .footer-cta-content {
    margin: 40px 0 !important;
  }
  .marquee-content {
    font-weight: lighter;
    font-size: 35px;
    -webkit-text-stroke: 1px rgba(243, 64, 64, 0.3);
  }
}

/* ==========================================================
    CINEMATIC TOP HEADER FADE / SCROLL MASK SYSTEM
========================================================== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 90;
}

section,
.marquee-section,
.footer-marquee,
.footer-cta-content {
  position: relative;
  transform: translateZ(0);
  will-change: transform, opacity;
}

@supports (
  (-webkit-mask-image: linear-gradient(black, transparent)) or
    (mask-image: linear-gradient(black, transparent))
) {
  .awwwards-hero,
  .fleet-pin-section,
  .trust-process,
  .reviews-section,
  .faq-section {
    mask-image: linear-gradient(
      to bottom,
      transparent 0px,
      black 120px,
      black 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0px,
      black 120px,
      black 100%
    );
  }
}

/* ==========================================================
    FAQ SECTION STYLING
========================================================== */
.faq-section {
  background: var(--bg);
  padding: 120px 5%;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 80px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(74, 222, 128, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  padding: 24px 32px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 24px;
  color: var(--brand);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 32px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 32px 28px 32px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* filter styles */
/* Container - increased gap for a more breathable, editorial layout */
.fleet-filters-nav {
  display: none;
  align-items: center;
  gap: 24px; /* Increased from 8px for the minimalist Supaste spacing */
  overflow-x: auto;
  max-width: 90%;
  scrollbar-width: none;
}

.fleet-filters-nav::-webkit-scrollbar {
  display: none;
}

.navbar.fleet-mode {
  justify-content: center;
  /* Optional: Adds the heavy rounded corners from the reference if your navbar doesn't already have it */
  border-radius: 0 0 32px 32px; 
}

.navbar.fleet-mode .logo,
.navbar.fleet-mode .nav-right {
  display: none;
}

.navbar.fleet-mode .fleet-filters-nav {
  display: flex;
  transform: translateY(-20px);
}

/* 
  The Pills - 
  Inactive state mimics the muted gray links in the Supaste navbar 
*/
.filter-pill {
  background: transparent;
  border: none;
  color: #9ca3af; /* The classy muted gray */
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-pill:hover {
  color: #ffffff; /* Text brightens to pure white on hover */
  transform: translateY(-1px);
}

/* 
  Active state - 
  Mimics the solid white CTA button in the Supaste navbar 
*/
.filter-pill.active {
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15); /* Subtle glow */
  transform: translateY(0);
}

/* =========================================================
   MOBILE FLEET NAV
========================================================= */
@media (max-width: 600px) {
  .navbar.fleet-mode {
    position: fixed;
    left: 50%;
    bottom: calc(18px + env(safe-area-inset-bottom));
    top: auto;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 400px;
    padding: 0;
    z-index: 1000;
    background: transparent;
  }

  .navbar.fleet-mode .fleet-filters-nav {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 18px) / 4);
    grid-template-rows: 1fr;
    align-items: center;
    width: 100%;
    height: 58px;
    padding: 7px;
    column-gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    border-radius: 20px 34px 20px 34px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.05) 45%,
      rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42), 0 5px 18px rgba(0, 0, 0, 0.22),
      inset 0 1px 1px rgba(255, 255, 255, 0.24),
      inset 0 -1px 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px) saturate(155%);
    -webkit-backdrop-filter: blur(30px) saturate(155%);
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }

  .navbar.fleet-mode .fleet-filters-nav::-webkit-scrollbar {
    display: none;
  }

  .navbar.fleet-mode .fleet-filters-nav::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 18%;
    width: 64%;
    height: 2px;
    border-radius: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.12),
      transparent
    );
    pointer-events: none;
    z-index: 10;
  }

  .navbar.fleet-mode .fleet-filters-nav::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 100%;
    border-radius: 0 34px 20px 0;
    pointer-events: none;
    z-index: 20;
    background: linear-gradient(
      90deg,
      rgba(15, 15, 15, 0),
      rgba(15, 15, 15, 0.6) 45%,
      rgba(15, 15, 15, 0.9) 80%,
      rgba(15, 15, 15, 1)
    );
  }

  .filter-pill {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 3px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.67);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
      transform 0.15s ease;
  }

  .filter-pill.active {
    background: rgba(255, 255, 255, 0.96);
    color: #050505;
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 1);
  }

  .filter-pill:active {
    transform: scale(0.94);
  }
}

@media (max-width: 360px) {
  .navbar.fleet-mode {
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: calc(100% - 18px);
  }
  .navbar.fleet-mode .fleet-filters-nav {
    height: 54px;
    padding: 6px;
    column-gap: 5px;
    border-radius: 18px 30px 18px 30px;
  }
  .navbar.fleet-mode .filter-pill {
    height: 37px;
    font-size: 8px;
  }
}
