/* ============================================
   IQ Limousine - Design System
   Premium Dark Theme with Gold Accents
   ============================================ */

/* ============= CSS Variables ============= */
:root {
  /* Colors */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #1a1a1a;
  --color-bg-tertiary: #2a2a2a;
  --color-gold: #b48b32;
  --color-gold-hover: #d1a546;
  --color-gold-dark: #8c6a23;
  --color-white: #ffffff;
  --color-gray-light: #e5e5e5;
  --color-gray: #999999;
  --color-gray-dark: #666666;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;
  --line-height-base: 1.6;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============= Reset & Base Styles ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-white);
  line-height: var(--line-height-base);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ============= Typography ============= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-3xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-2xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray-light);
}

/* ============= Layout Utilities ============= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
  background-color: var(--color-bg-primary);
}

.section-dark {
  background-color: var(--color-bg-secondary);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-gold);
}

/* ============= Buttons ============= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, #b48b32 0%, #d6af54 50%, #f0d077 75%, #d6af54 100%);
  background-size: 200% auto;
  color: var(--color-bg-primary);
  box-shadow: 0 4px 20px rgba(180, 139, 50, 0.4),
    0 0 15px rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  letter-spacing: 1.5px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6),
    0 0 25px rgba(212, 175, 55, 0.4);
  background-position: right center;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 2px solid var(--color-white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Visibility Utilities */
.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }
}

/* ============= Header & Navigation ============= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Softer border */
  transition: var(--transition-base);
}

.header-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  /* Deeper shadow */
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  min-height: 80px;
}

/* Logo - Centered and enlarged */
.logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  height: 100%;
}

.logo {
  height: 65px;
  width: auto;
  object-fit: contain;
}

/* ============= Desktop Hamburger Menu ============= */
/* Show toggle on desktop */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 48px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  margin-left: 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
  border-color: var(--color-gold);
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 3px;
  transition: all var(--transition-base);
}

.mobile-menu-toggle:hover span {
  background: var(--color-gold);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Menu as Drawer for Desktop */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 100px 50px 50px;
  gap: var(--spacing-lg);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  list-style: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.nav-menu.active {
  right: 0;
}

/* Desktop Media Query Adjustments */
@media (min-width: 1025px) {
  .nav {
    padding: 12px 0;
    justify-content: space-between;
    position: relative;
  }

  .nav {
    min-height: 80px;
    padding: 20px 0;
  }

  /* Logo CENTERED */
  .logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .logo {
    height: 70px;
    transition: transform var(--transition-base);
  }

  .logo:hover {
    transform: scale(1.05);
  }

  /* Menu toggle on the LEFT (extreme) */
  .mobile-menu-toggle {
    order: 1;
    margin-left: 0;
    margin-right: auto;
    padding: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    width: 45px;
    height: 45px;
  }

  .mobile-menu-toggle span {
    background: var(--color-gold);
    height: 3px;
  }

  /* Book Now on the RIGHT */
  .nav-right {
    order: 3;
    margin-left: auto;
    margin-right: 0;
  }

  /* Drawer nav items styling */
  .nav-link {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 300;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    color: var(--color-gold);
    padding-left: 15px;
    background: rgba(212, 175, 55, 0.05);
  }

  /* Enhanced drawer for desktop */
  .nav-menu {
    width: 380px;
    padding: 120px 60px 60px;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  position: relative;
  z-index: 1005;
}

/* Overlay for Desktop Drawer */
body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.menu-open::before {
  opacity: 1;
  pointer-events: all;
}

/* Luxury Nav Links (Base) */
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition-base);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.05);
  /* Match desktop hover bg */
}

.nav-link.active::after {
  width: 100%;
}


/* ============= Hero Section ============= */
.hero {
  /* Standard Section Layout */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero-car.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px var(--spacing-md) 60px;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Glassmorphism Card (Desktop) */
.hero-glass-card {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  z-index: 20;
}

/* Inner Glow Effect */
.hero-glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.hero-pretitle {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray-light);
  margin-bottom: -10px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  background: linear-gradient(135deg, #e6c87f 0%, #b48b32 50%, #f0d077 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 4px 20px rgba(180, 139, 50, 0.15);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-white);
  max-width: 700px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  margin: var(--spacing-sm) 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  color: var(--color-gray-light);
  font-weight: 500;
}

.trust-icon {
  font-style: normal;
  color: var(--color-gold);
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.hero-cta .btn {
  min-width: 160px;
}

/* Feature Pills (Bottom Row) */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--spacing-lg);
}

.feature-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.feature-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-pill .feature-icon {
  font-size: 24px;
  background: rgba(212, 175, 55, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.feature-pill .feature-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-pill .feature-main {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
}

.feature-pill .feature-sub {
  font-size: 12px;
  color: var(--color-gray);
}

/* ============= Booking Form ============= */
.booking-form {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: 1rem;
  /* Larger for readability */
  color: #ffffff;
  /* Clean White */
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
}

.form-select option {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: var(--color-gray-dark);
}

.form-note {
  font-size: var(--font-size-sm);
  color: var(--color-gray);
  text-align: center;
  margin-top: var(--spacing-sm);
}

/* ============= Cards ============= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

/* Specific centering for 7th card in Services section on desktop */
@media (min-width: 992px) {
  #services .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #services .card-grid>.card:nth-child(7) {
    grid-column: 2;
  }

  /* Specific centering for 4th card in Why Choose Us section on desktop */
  #why-choose .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #why-choose .card-grid>.card:nth-child(4) {
    grid-column: 2;
  }
}

.card {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
  border-radius: var(--radius-md);
  font-size: 32px;
  position: relative;
  z-index: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .card-icon {
  transform: scale(1.15) rotateY(10deg);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4),
    0 0 20px rgba(212, 175, 55, 0.3);
  animation: iconPulse 2s ease-in-out infinite;
}

.card:hover .card-icon::before {
  opacity: 1;
  animation: iconShine 1.5s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4),
      0 0 20px rgba(212, 175, 55, 0.3);
  }

  50% {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6),
      0 0 30px rgba(212, 175, 55, 0.5);
  }
}

@keyframes iconShine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(200%) rotate(45deg);
  }
}

.card-title {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.card-description {
  text-align: center;
  color: var(--color-gray);
  font-size: var(--font-size-sm);
}

/* ============= Fleet Carousel ============= */
.fleet-carousel {
  position: relative;
  margin-top: var(--spacing-xl);
  overflow: hidden;
}

.fleet-track {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: var(--spacing-md) 0;
  scrollbar-width: none;
}

.fleet-track::-webkit-scrollbar {
  display: none;
}

.fleet-card {
  min-width: 300px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fleet-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.fleet-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fleet-info {
  padding: var(--spacing-md);
  text-align: center;
}

.fleet-name {
  font-size: var(--font-size-lg);
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
}

/* ============= FAQ Accordion ============= */
.faq-container {
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
}

.faq-item {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: var(--spacing-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
}

.faq-icon {
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--spacing-md) var(--spacing-md);
  color: var(--color-gray-light);
}

/* ============= Reviews Section ============= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.review-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.review-stars {
  color: var(--color-gold);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

.review-text {
  font-style: italic;
  color: var(--color-gray-light);
  margin-bottom: var(--spacing-md);
}

.review-author {
  font-weight: 600;
  color: var(--color-white);
}

/* ============= Location Tags ============= */
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: var(--spacing-lg) 0;
}

.location-tag {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: var(--font-size-sm);
  color: var(--color-gold);
  transition: all var(--transition-base);
  cursor: pointer;
}

.location-tag:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}


/* ============= Reviews Section ============= */
.section-reviews {
  background: #000;
  position: relative;
  overflow: hidden;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

/* Left Side - Reviews Content */
.reviews-content {
  max-width: 600px;
}

.reviews-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  color: var(--color-white);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reviews-carousel {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 24px;
  padding: var(--spacing-2xl);
  position: relative;
  min-height: 320px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.reviews-carousel.revealed {
  opacity: 1;
  transform: translateY(0);
}

.review-item {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.review-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A961, #D4AF37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-author-name {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.review-date {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.google-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Review Header Icons Container */
.review-header-icons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Google Maps Link */
.google-maps-link {
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  padding: 4px;
}

.google-maps-link:hover {
  transform: scale(1.1) translateY(-2px);
  background: rgba(72, 181, 100, 0.1);
}

.google-maps-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  transition: filter 0.3s ease;
}

.google-maps-link:hover .google-maps-icon {
  filter: drop-shadow(0 4px 10px rgba(72, 181, 100, 0.4));
}

/* Rating Row with Stars and Badge */
.review-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.star {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.star.filled {
  color: #FDB614;
  text-shadow: 0 0 10px rgba(253, 182, 20, 0.4);
}

.verified-badge {
  display: flex;
  align-items: center;
  margin-left: 4px;
  animation: fadeInScale 0.6s ease-out 0.8s both;
  filter: drop-shadow(0 2px 8px rgba(66, 133, 244, 0.4));
  position: relative;
}

.verified-badge svg {
  filter: drop-shadow(0 2px 4px rgba(66, 133, 244, 0.3));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.verified-badge:hover svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 12px rgba(66, 133, 244, 0.6));
}

/* Add a subtle pulse effect */
.verified-badge::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.3) 0%, transparent 70%);
  animation: verifiedPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes verifiedPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.review-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
  border-color: var(--color-gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--color-bg-primary);
}

/* Trust Badge */
.trust-badge {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.trust-badge.revealed {
  opacity: 1;
  transform: translateY(0);
}

.badge-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
}

.badge-text {
  color: var(--color-gray);
}

.badge-brand {
  font-weight: 600;
  color: var(--color-white);
}

.badge-icon {
  width: 16px;
  height: 16px;
}

/* Right Side - Owner Section */
.owner-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owner-card {
  position: relative;
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(1.02);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.owner-card.revealed {
  opacity: 1;
  transform: scale(1);
}

.owner-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.video-play-button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* One-time pulse animation on reveal */
.owner-card.revealed .video-play-button {
  animation: playButtonPulse 0.6s ease-out 0.5s;
}

@keyframes playButtonPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}

.video-play-button:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 1);
}

.video-play-button svg {
  width: 32px;
  height: auto;
}

.play-text {
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--color-bg-primary);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .reviews-content {
    max-width: 100%;
    text-align: center;
  }

  .reviews-title {
    text-align: center;
  }

  .trust-badge {
    display: flex;
    justify-content: center;
  }

  .owner-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============= Footer ============= */
.footer {
  background: #0D0D0D;
  /* Dark rich background */
  padding: 80px 0 40px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  /* Subtle Gold Border */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* --- Brand/Info Column --- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 110px;
  /* Increased size */
  width: auto;
  margin-bottom: 15px;
  object-fit: contain;
  align-self: flex-start;
  /* Prevent stretching */
}

.footer-desc {
  color: #B0B0B0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-badges {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-icon {
  color: var(--color-gold);
  font-style: normal;
}

/* --- Columns Styling --- */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Links Lists --- */
.footer-list,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-list a::before {
  content: '•';
  color: #666;
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1;
}

.footer-list a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

/* --- Contact Info --- */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E0E0E0;
}

.contact-icon {
  color: var(--color-gold);
  font-style: normal;
  font-size: 1.1rem;
}

.footer-contact a {
  color: #E0E0E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--color-gold);
}

/* --- Legal Links (Below Contact) --- */
.footer-legal {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin-bottom: 8px;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* Center Brand Info */
  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto 15px auto;
    align-self: center;
    /* Reset alignment for mobile */
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-badges {
    justify-content: center;
  }

  /* Center Lists */
  .footer-col {
    align-items: center;
  }

  .footer-list a {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-legal {
    align-items: center;
    margin-top: 20px;
  }
}

/* ============= Animations ============= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  z-index: 1;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Autocomplete Styles --- */
.autocomplete-items {
  position: absolute;
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-top: none;
  z-index: 9999;
  /* Ensure it stays on top */
  top: 100%;
  left: 0;
  right: 0;
  background-color: #111;
  /* Solid dark background */
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  max-height: 300px;
  overflow-y: auto;
}

.autocomplete-item {
  padding: 12px 15px;
  cursor: pointer;
  background-color: #111;
  /* Solid dark background */
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray);
  font-size: 14px;
  transition: all 0.2s;
}

.autocomplete-item:hover {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--text-white);
  padding-left: 20px;
  /* Slide effect */
}

.autocomplete-active {
  background-color: var(--accent-gold) !important;
  color: #000 !important;
}

.autocomplete-item strong {
  color: var(--accent-gold);
  font-weight: 700;
}

/* --- Fleet Marquee Styles --- */
.fleet-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 30px 0;
  margin-top: 20px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.fleet-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.fleet-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Move half the length (one set) */
}

.fleet-card {
  min-width: 320px;
  max-width: 320px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  border: 1px solid #222;
}

.fleet-card:hover {
  transform: scale(1.05);
  border-color: var(--color-gold);
  z-index: 2;
}

.fleet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fleet-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px 15px 15px;
  text-align: center;
}

.fleet-name {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}


/* --- Areas We Serve Section --- */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

/* Map Container */
.areas-map-container {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
}

.map-label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-gray);
  z-index: 10;
}

.areas-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
}

/* Right Content */
.areas-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.areas-list-title {
  font-size: 13px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: -10px;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-pill {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-white);
  transition: all 0.3s ease;
  cursor: default;
}

.area-pill:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.airport-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.airport-header {
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.airport-list {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

.areas-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.areas-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.area-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-white);
}

.feature-icon {
  color: var(--color-gold);
  font-style: normal;
}

/* Bottom CTA Bar */
.areas-cta-bar {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.areas-cta-bar h3 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.section-subtitle {
  display: block;
  color: var(--text-gray);
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--text-white);
}

@media (max-width: 992px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .areas-map-container {
    height: 300px;
  }
}