/* ==========================================================================
   THEO'S CAR SERVICE - STYLING DESIGN SYSTEM (QUIET LUXURY)
   ========================================================================== */

/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Root Variables & Theme --- */
:root {
  --bg-obsidian: #080809;
  --bg-card: rgba(18, 18, 20, 0.6);
  --bg-card-hover: rgba(26, 26, 30, 0.85);
  --border-gold: rgba(212, 175, 55, 0.15);
  --border-gold-focus: rgba(212, 175, 55, 0.4);
  --border-white: rgba(255, 255, 255, 0.05);
  
  --text-white: #ffffff;
  --text-silver: #e4e4e7;
  --text-muted: #8e8e93;
  
  /* Luxury Gold Gradient */
  --accent-gold: #c5a880;
  --accent-gold-hover: #e5cda9;
  --gold-gradient: linear-gradient(135deg, #b89766 0%, #dfc49c 50%, #b89766 100%);
  --gold-glow: 0 0 25px rgba(184, 151, 102, 0.15);
  
  /* Font Families */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
  
  /* Spacers */
  --section-padding: 8rem 2rem;
}

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

/* Core Lenis Smooth Scroll Setup */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

html, body {
  width: 100%;
  background-color: var(--bg-obsidian);
  color: var(--text-silver);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar (Premium Minimal) */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: rgba(197, 168, 128, 0.3);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- General Utilities --- */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Section Title Styling */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.section-title span {
  font-style: italic;
  font-family: var(--font-serif);
}

/* --- Buttons & Interactives --- */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000000;
  background: var(--gold-gradient);
  border-radius: 1px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--gold-glow);
  transition: var(--transition-smooth);
}

.btn-round {
  border-radius: 100px !important;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s ease;
  z-index: 2;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184, 151, 102, 0.35);
  color: #000000;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  border-radius: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  background: rgba(8, 8, 9, 0.2);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-outline:hover {
  color: #000000;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Glassmorphism Panel style */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-white);
  border-radius: 2px;
}

/* ==========================================================================
   Luxury Preloader Splash
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-obsidian);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.preloader-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 440px;
}

.preloader-logo-img {
  width: 380px;
  height: auto;
  filter: invert(1) brightness(1.8); /* Inverts black to luxury silver-white */
  clip-path: inset(0 100% 0 0);
  animation: revealLogo 2.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  position: relative;
}

@keyframes revealLogo {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* Vertical flare beam of the cinematic light spark */
.preloader-logo-container::before {
  content: '';
  position: absolute;
  top: 15px; /* Centered over the cursive height */
  left: 0;
  width: 3px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #ffffff, var(--accent-gold), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: drawSparkle 2.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 10;
}

/* Horizontal flare beam of the cinematic light spark (with intense outer glow) */
.preloader-logo-container::after {
  content: '';
  position: absolute;
  top: 38px; /* Perfect intersection at vertical center */
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, transparent, #ffffff, var(--accent-gold), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: drawSparkle 2.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 11;
  box-shadow: 
    0 0 10px 2px #ffffff,
    0 0 20px 6px var(--accent-gold),
    0 0 40px 12px rgba(212, 175, 55, 0.6);
}

@keyframes drawSparkle {
  0% {
    left: 20px;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: scale(1.3) rotate(45deg);
  }
  50% {
    transform: scale(0.9) rotate(180deg);
  }
  90% {
    opacity: 1;
    transform: scale(1.3) rotate(315deg);
  }
  100% {
    left: 380px;
    opacity: 0;
    transform: scale(0.5) rotate(360deg);
  }
}


.preloader-line-container {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.preloader-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
}

/* Mobile preloader responsive scaling */
@media (max-width: 480px) {
  .preloader-logo-container {
    width: 300px;
  }
  
  .preloader-logo-img {
    width: 260px;
  }
  
  .preloader-logo-container::before,
  .preloader-logo-container::after {
    animation-name: drawSparkleMobile;
  }
}

@keyframes drawSparkleMobile {
  0% {
    left: 10px;
    opacity: 0;
    transform: scale(0.4) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: scale(1.3) rotate(45deg);
  }
  50% {
    transform: scale(0.9) rotate(180deg);
  }
  90% {
    opacity: 1;
    transform: scale(1.3) rotate(315deg);
  }
  100% {
    left: 240px;
    opacity: 0;
    transform: scale(0.5) rotate(360deg);
  }
}

/* Phone link text hiding on small screens to prevent layout crowding */
@media (max-width: 576px) {
  .phone-link span {
    display: none !important;
  }
  .nav-cta {
    gap: 1rem !important;
  }
}

/* ==========================================================================
   Header & Premium Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 1rem 3rem;
  background: rgba(8, 8, 9, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-white);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

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

.header-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 180px;
  height: 96px;
}

.brand-logo-img {
  height: 80px;
  width: auto;
  filter: invert(1);
  clip-path: inset(0 100% 0 0); /* Hidden until animation starts */
  transition: filter var(--transition-smooth), transform var(--transition-smooth);
}

.header-logo-container.animate-logo .brand-logo-img {
  animation: revealHeaderLogo 2.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes revealHeaderLogo {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* Vertical light beam for the header logo cinematic spark */
.header-logo-container.animate-logo::before {
  content: '';
  position: absolute;
  top: 15px; /* Center aligned over the 80px height */
  left: 0;
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, #ffffff, var(--accent-gold), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: drawHeaderSparkle 2.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 10;
}

/* Horizontal light beam for the header logo cinematic spark */
.header-logo-container.animate-logo::after {
  content: '';
  position: absolute;
  top: 32px; /* Perfect intersection at vertical center */
  left: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffffff, var(--accent-gold), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: drawHeaderSparkle 2.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 11;
  box-shadow: 
    0 0 8px 1px #ffffff,
    0 0 15px 4px var(--accent-gold),
    0 0 30px 8px rgba(212, 175, 55, 0.6);
}

@keyframes drawHeaderSparkle {
  0% {
    left: 10px;
    opacity: 0;
    transform: scale(0.4) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
  }
  50% {
    transform: scale(0.9) rotate(180deg);
  }
  90% {
    opacity: 1;
    transform: scale(1.2) rotate(315deg);
  }
  100% {
    left: 160px;
    opacity: 0;
    transform: scale(0.4) rotate(360deg);
  }
}

.brand-logo:hover .brand-logo-img {
  transform: translateY(-1px) scale(1.02);
  filter: invert(1) drop-shadow(0 0 10px rgba(184, 151, 102, 0.45));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-silver);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
}

.phone-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-smooth);
}

.phone-link:hover .phone-icon-wrapper {
  background: rgba(197, 168, 128, 0.15); /* Luxury gold background circle on hover */
  box-shadow: 0 0 10px rgba(184, 151, 102, 0.2);
}

.phone-link svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent-gold);
  transition: var(--transition-fast);
}

.phone-link:hover {
  color: var(--text-white);
}

.phone-link:hover svg {
  stroke: var(--text-white);
}

/* Sonar Concentric Rings */
.sonar-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

/* Active sonar pulses on link hover */
.phone-link:hover .sonar-ring {
  animation: sonarRipple 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

@keyframes sonarRipple {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.nav-toggle {
  display: none;
  cursor: pointer;
  z-index: 1010;
}

/* Fullscreen Menu Overlay (Mobile Drawer) */
.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-obsidian);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-drawer.open {
  transform: translateY(0);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-white);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-drawer.open .drawer-link {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger drawer animations on open */
.menu-drawer.open .drawer-link:nth-child(1) { transition-delay: 0.3s; }
.menu-drawer.open .drawer-link:nth-child(2) { transition-delay: 0.4s; }
.menu-drawer.open .drawer-link:nth-child(3) { transition-delay: 0.5s; }
.menu-drawer.open .drawer-link:nth-child(4) { transition-delay: 0.6s; }

.drawer-footer {
  border-top: 1px solid var(--border-white);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   Hero Section (Immersive luxury runway)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(8, 8, 9, 0.4) 0%, rgba(8, 8, 9, 0.95) 80%);
  z-index: 2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  transform: scale(1.15);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
  margin-top: 3rem;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-heading span.italic {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-gold);
}

.hero-description {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-silver);
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Floating Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
}

.scroll-wheel {
  width: 2px;
  height: 6px;
  background-color: var(--accent-gold);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: mouseScroll 1.8s ease-in-out infinite;
}

@keyframes mouseScroll {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ==========================================================================
   Services Showcase (Premium Horizontal Grid)
   ========================================================================== */
.services-section {
  padding: var(--section-padding);
  position: relative;
  background-color: var(--bg-obsidian);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  height: 520px;
  border: 1px solid var(--border-white);
  border-radius: 2px;
  overflow: hidden;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition-smooth);
  background: linear-gradient(180deg, rgba(8, 8, 9, 0) 0%, rgba(8, 8, 9, 0.95) 100%);
  cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 4;
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: var(--transition-smooth);
  filter: brightness(0.65) grayscale(0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-card:hover::after {
  border-color: var(--accent-gold);
  inset: 15px;
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
  filter: brightness(0.75) grayscale(0);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  color: var(--accent-gold);
  position: absolute;
  top: 3rem;
  left: 2.5rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1) translateY(-5px);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-card:hover .service-number {
  color: rgba(212, 175, 55, 0.08);
}

.service-card-content {
  position: relative;
  z-index: 3;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.service-card-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-desc {
  color: var(--text-silver);
}

.service-card-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-link svg {
  transform: translateX(5px);
}

/* ==========================================================================
   The Fleet Deck (Vehicle Selection Carousel)
   ========================================================================== */
.fleet-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-obsidian) 0%, #101012 100%);
  border-top: 1px solid var(--border-white);
  border-bottom: 1px solid var(--border-white);
  position: relative;
}

.fleet-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.fleet-selector-deck {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fleet-selector-card {
  padding: 2rem;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  background: rgba(255, 255, 255, 0.01);
}

.fleet-selector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(197, 168, 128, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.fleet-selector-card.active {
  border-left-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.02);
}

.fleet-selector-card.active::before {
  opacity: 1;
}

.fleet-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.fleet-selector-card.active .fleet-name {
  color: var(--accent-gold);
}

.fleet-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.fleet-specs {
  display: flex;
  gap: 2rem;
  margin-top: 1.2rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.fleet-selector-card.active .fleet-specs {
  opacity: 1;
  max-height: 100px;
  margin-top: 1.2rem;
}

.spec-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-silver);
}

.spec-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-gold);
}

/* Fleet Showcase Display */
.fleet-display-panel {
  position: relative;
  height: 500px;
  width: 100%;
  border: 1px solid var(--border-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.fleet-display-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1) rotate(1deg);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  z-index: 1;
}

.fleet-display-img.active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  z-index: 2;
}

.fleet-display-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 9, 0.8) 0%, rgba(8, 8, 9, 0) 60%);
  z-index: 3;
}

.fleet-details-box {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  z-index: 4;
}

.fleet-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.amenity-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-white);
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  border-radius: 1px;
}

/* ==========================================================================
   The Experience Pillars (Premium Grid)
   ========================================================================== */
.experience-section {
  padding: var(--section-padding);
  background-color: var(--bg-obsidian);
  position: relative;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pillar-card {
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--border-white);
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 2px;
}

.pillar-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  background: var(--bg-card);
  box-shadow: var(--gold-glow);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 2.5rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1) rotate(5deg);
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.pillar-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   The Reservation Chamber (Premium Booking Form)
   ========================================================================== */
.booking-section {
  padding: var(--section-padding);
  background: radial-gradient(circle at top, rgba(20, 20, 22, 0.4) 0%, var(--bg-obsidian) 100%);
  border-top: 1px solid var(--border-white);
  border-bottom: 1px solid var(--border-white);
}

.booking-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.booking-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.booking-tab-btn {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2rem;
  border: 1px solid var(--border-white);
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.booking-tab-btn.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.05);
  box-shadow: 0 0 15px rgba(184, 151, 102, 0.08);
}

.booking-form-box {
  padding: 4rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.booking-step-content {
  display: none;
}

.booking-step-content.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper svg {
  position: absolute;
  left: 1.2rem;
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-input, .form-select {
  width: 100%;
  padding: 1.1rem 1.2rem 1.1rem 3.2rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-white);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-radius: 1px;
  transition: var(--transition-smooth);
}

/* Custom styling for inputs on focus */
.form-input:focus, .form-select:focus {
  border-color: var(--accent-gold);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 15px rgba(184, 151, 102, 0.1);
}

.form-input:focus + svg, .form-select:focus + svg {
  stroke: var(--accent-gold);
}

.form-select option {
  background: var(--bg-obsidian);
  color: var(--text-silver);
}

/* Step 2: Vehicle Booking Selector */
.booking-vehicle-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.booking-vehicle-card {
  border: 1px solid var(--border-white);
  padding: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  position: relative;
  text-align: center;
}

.booking-vehicle-card::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-white);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.booking-vehicle-card.selected {
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.05);
  box-shadow: var(--gold-glow);
}

.booking-vehicle-card.selected::before {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.booking-vehicle-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.booking-vehicle-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.booking-vehicle-caps {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-silver);
  border-top: 1px solid var(--border-white);
  padding-top: 1rem;
}

/* Step 3: Inquiry Review Recap */
.recap-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-white);
  padding: 2.5rem;
  border-radius: 2px;
  margin-bottom: 3rem;
}

.recap-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-white);
  padding-bottom: 1rem;
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.recap-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.recap-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
}

.recap-val {
  font-size: 0.95rem;
  color: var(--text-silver);
  font-weight: 500;
}

/* Form Actions Button Control */
.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-white);
  padding-top: 2rem;
}

.booking-progress-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.booking-btns-right {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   Premium FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--bg-obsidian);
  position: relative;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-card {
  border: 1px solid var(--border-white);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-white);
  letter-spacing: 0.01em;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.faq-trigger svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  transition: transform 0.5s ease;
}

.faq-body {
  height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: var(--transition-smooth);
}

.faq-content {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 2rem;
}

/* FAQ Active state animations */
.faq-card.open {
  border-color: var(--border-gold);
  background: var(--bg-card);
}

.faq-card.open .faq-trigger {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  color: #000000;
}

.faq-card.open .faq-trigger svg {
  transform: rotate(45deg);
}

/* ==========================================================================
   Premium Testimonials
   ========================================================================== */
.testimonials-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-obsidian) 0%, #0d0d0f 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 3rem;
  border: 1px solid var(--border-white);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--border-gold);
  line-height: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-silver);
  margin-bottom: 2rem;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-white);
  padding-top: 1.5rem;
}

.author-initials {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.05);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

.author-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Premium Editorial Footer
   ========================================================================== */
.footer {
  background-color: #050506;
  border-top: 1px solid var(--border-white);
  padding: 6rem 3rem 3rem 3rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 5rem auto;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo-img {
  height: 120px;
  width: auto;
  filter: invert(1);
  transition: var(--transition-smooth);
}

.footer-brand-logo:hover .footer-brand-logo-img {
  transform: scale(1.02);
  filter: invert(1) drop-shadow(0 0 10px rgba(184, 151, 102, 0.45));
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 320px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-silver);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-gold);
}

.footer-column-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border-white);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--text-white);
}

/* ==========================================================================
   About Us Section Styling
   ========================================================================== */
.about-section {
  padding: var(--section-padding);
  background-color: var(--bg-obsidian);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-philosophy-title span {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-gold);
}

.about-philosophy-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 1px;
  border: 1px solid var(--border-gold);
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.about-philosophy-image:hover .about-philosophy-img {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Founder WSJ / Forbes Layout */
.about-founder-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: start;
}

.about-founder-left {
  position: sticky;
  top: 120px;
}

.about-image-frame {
  position: relative;
  border-radius: 2px;
  overflow: visible;
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
}

.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 1px;
  filter: brightness(0.9) contrast(1.05);
  transition: var(--transition-smooth);
}

.about-image-frame:hover .about-img {
  transform: scale(1.01);
  filter: brightness(1) contrast(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  box-shadow: var(--gold-glow);
  z-index: 10;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-white);
}

.about-founder-right {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.about-title span {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-gold);
}

.about-bio-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.about-description {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-white);
  padding-top: 2.5rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsiveness for About Section */
@media (max-width: 1024px) {
  .about-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-founder-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-founder-left {
    position: static;
  }
  
  .about-bio-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-image-badge {
    right: 1rem;
    bottom: -1rem;
    padding: 1.2rem;
  }
  
  .about-img {
    height: 400px;
  }
  
  .about-philosophy-img {
    height: 320px;
  }
}

/* ==========================================================================
   Responsive Architecture & Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
  :root {
    --section-padding: 6rem 2rem;
  }
  
  .services-grid {
    gap: 1.5rem;
  }
  
  .fleet-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .fleet-display-panel {
    height: 400px;
  }
  
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .header {
    padding: 1.5rem 2rem;
  }
  
  .header.scrolled {
    padding: 1rem 2rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .service-card {
    height: 480px;
  }
  
  .booking-vehicle-deck {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-cta .phone-link,
  .nav-cta .btn-gold {
    display: none !important;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 1rem;
  }
  
  .hero-actions button, .hero-actions a {
    width: 100%;
  }
  
  .booking-tabs {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
    margin-bottom: 2rem;
  }

  .booking-tab-btn {
    padding: 0.8rem 1.5rem;
    text-align: center;
    width: 100%;
  }

  .booking-form-box {
    padding: 2rem 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .recap-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .booking-actions {
    flex-direction: column-reverse;
    gap: 1.5rem;
    align-items: stretch;
  }
  
  .booking-progress-text {
    text-align: center;
  }
  
  .booking-btns-right {
    flex-direction: column;
    gap: 1rem;
  }
  
  .booking-btns-right button {
    width: 100%;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .fleet-specs {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }

  .fleet-details-box {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }

  .about-image-badge {
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    padding: 1rem !important;
    max-width: calc(100% - 3rem) !important;
  }

  .faq-header {
    padding: 1.5rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
  }
  
  .hero-subtitle {
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
  }

  .preloader-logo-container {
    width: 280px !important;
  }
  
  .preloader-logo-img {
    width: 240px !important;
  }
}
