/* ============================================
   FAST TOURS — Premium Design System
   Dark Luxury Theme with Gold Accents
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --bg-primary: #0f0f11;
  --bg-secondary: #17171a;
  --bg-card: #1f1f24;
  --bg-card-hover: #28282e;
  --bg-glass: rgba(31, 31, 36, 0.7);
  --bg-glass-light: rgba(255, 255, 255, 0.05);
  
  --gold: #c41115;
  --gold-light: #e02f34;
  --gold-dark: #9e0e11;
  --amber: #d2143a;
  
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #6b7a99;
  
  --border-color: rgba(196, 17, 21, 0.15);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --gradient-gold: linear-gradient(135deg, #c41115, #9e0e11);
  --gradient-dark: linear-gradient(135deg, #0f0f11, #1f1f24);
  --gradient-hero: linear-gradient(135deg, rgba(15, 15, 17, 0.95), rgba(31, 31, 36, 0.88));
  --gradient-card: linear-gradient(145deg, rgba(31, 31, 36, 0.9), rgba(15, 15, 17, 0.95));
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 25px rgba(196, 17, 21, 0.22);
  --shadow-gold-lg: 0 8px 40px rgba(196, 17, 21, 0.32);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --nav-height: 80px;
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-primary);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

html::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul, ol {
  list-style: none;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.text-gold { color: var(--gold); }
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ── */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 1px;
}

.section-header h2 {
  margin-bottom: 18px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 0 40px;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  z-index: 1001;
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--bg-primary);
  font-weight: 900;
}

.nav-logo span:last-child {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-normal);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-gold) !important;
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  -webkit-text-fill-color: #ffffff !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 8s infinite ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 17, 21, 0.1);
  border: 1px solid rgba(196, 17, 21, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 25px;
}

.hero-badge i {
  font-size: 0.8rem;
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 700px;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(196, 17, 21, 0.2);
  z-index: -1;
  border-radius: 2px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 550px;
  margin-bottom: 35px;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-glass);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Hero Split Layout ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Hero Booking Widget ── */
.hero-booking-widget {
  background: rgba(10, 14, 26, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(196, 17, 21, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  animation: fadeInRight 0.8s ease 0.6s both;
}

.hero-booking-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-booking-widget::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 17, 21, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.booking-widget-header {
  text-align: center;
  margin-bottom: 22px;
  position: relative;
}

.booking-widget-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 auto 12px;
  animation: pulseGlow 3s ease-in-out infinite;
}

.booking-widget-header h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.booking-widget-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.booking-widget-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.widget-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.widget-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-field label i {
  color: var(--gold);
  margin-right: 4px;
  font-size: 0.75rem;
}

.widget-field .form-control {
  padding: 11px 14px;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-field .form-control:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(196, 17, 21, 0.1);
}

.widget-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.widget-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  margin-top: 4px;
  border-radius: var(--radius-sm);
}

.widget-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.widget-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.widget-trust-item i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #ffffff;
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── Vehicle Cards ── */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.vehicle-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 17, 21, 0.2);
}

.vehicle-card:hover::before {
  opacity: 1;
}

.vehicle-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1f35, #0f1424);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.vehicle-card-image img {
  width: 90%;
  height: 85%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.vehicle-card:hover .vehicle-card-image img {
  transform: scale(1.08);
}

.vehicle-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vehicle-card-body {
  padding: 25px;
}

.vehicle-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.vehicle-type {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 15px;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
}

.vehicle-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.vehicle-spec i {
  color: var(--gold);
  font-size: 0.9rem;
}

.vehicle-spec span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vehicle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle-price {
  display: flex;
  flex-direction: column;
}

.vehicle-price .amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.vehicle-price .period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Stats Section ── */
.stats-section {
  background: linear-gradient(135deg, rgba(196, 17, 21, 0.05), rgba(232, 147, 12, 0.03));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: var(--border-color);
}

.stat-item:last-child::after {
  display: none;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(196, 17, 21, 0.1);
  border: 1px solid rgba(196, 17, 21, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.4rem;
  color: var(--gold);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Features / Why Choose Us ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 17, 21, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 17, 21, 0.2);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(196, 17, 21, 0.1);
  border: 1px solid rgba(196, 17, 21, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  text-align: center;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bg-primary);
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.testimonial-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--text-primary);
  margin-bottom: 15px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-dark {
  background: var(--gradient-gold);
  color: #ffffff;
  padding: 14px 32px;
}

.btn-dark:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-glass);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-column ul li a i {
  font-size: 0.8rem;
  color: var(--gold);
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-normal);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gradient-gold);
  border: none;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.newsletter-form button:hover {
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── Page Header (Inner Pages) ── */
.page-header {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(196, 17, 21, 0.08), transparent 60%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--gold);
}

/* ── Forms ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-normal);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 17, 21, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0aec0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

select.form-control option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-body);
}

.filter-tab:hover {
  border-color: rgba(196, 17, 21, 0.3);
  color: var(--text-primary);
}

.filter-tab.active {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--bg-primary);
  font-weight: 600;
}

/* ── Service Cards ── */
.service-card {
  display: flex;
  gap: 30px;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: all var(--transition-slow);
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 17, 21, 0.2);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: rgba(196, 17, 21, 0.1);
  border: 1px solid rgba(196, 17, 21, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(196, 17, 21, 0.08);
  border: 1px solid rgba(196, 17, 21, 0.15);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.service-feature-tag i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-color);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--gradient-gold);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  z-index: 2;
}

.timeline-content {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 25px;
  max-width: 350px;
}

.timeline-content .year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-content h4 {
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
}

/* ── Contact Info ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 25px;
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  border-color: rgba(196, 17, 21, 0.2);
  transform: translateX(5px);
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(196, 17, 21, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-info-card p {
  font-size: 0.9rem;
}

.contact-info-card a {
  color: var(--gold);
}

.contact-form-wrapper {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrapper h3 {
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  margin-bottom: 25px;
}

/* ── Map ── */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.8) contrast(1.1) brightness(0.7);
  transition: filter var(--transition-normal);
}

.map-section iframe:hover {
  filter: grayscale(0.3) contrast(1) brightness(0.9);
}

/* ── Booking Steps ── */
.booking-progress {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  position: relative;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 1;
  max-width: 180px;
}

.booking-step::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 55%;
  width: calc(100% - 10px);
  height: 2px;
  background: var(--border-glass);
}

.booking-step:last-child::after {
  display: none;
}

.booking-step.active .step-circle,
.booking-step.completed .step-circle {
  background: var(--gradient-gold);
  color: #ffffff;
  border-color: transparent;
}

.booking-step.active::after,
.booking-step.completed::after {
  background: var(--gradient-gold);
}

.step-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  background: var(--bg-card);
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.step-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.booking-step.active .step-label {
  color: var(--gold);
}

.booking-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.booking-form-section {
  display: none;
}

.booking-form-section.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

/* ── Selected Vehicle Banner ── */
.selected-vehicle-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: rgba(196, 17, 21, 0.08);
  border: 1px solid rgba(196, 17, 21, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 25px;
  animation: fadeInDown 0.5s ease both;
}

.selected-vehicle-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.selected-vehicle-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--bg-primary);
}

.selected-vehicle-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.selected-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
}

.selected-vehicle-details h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.selected-price {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.change-vehicle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.change-vehicle-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 17, 21, 0.08);
}

/* ── About Page ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-intro-image .experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  text-align: center;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 17, 21, 0.2);
}

.value-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
}

/* ── Success Message ── */
.success-message {
  text-align: center;
  padding: 40px;
}

.success-message i {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 20px;
}

.success-message h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.success-message p {
  margin-bottom: 25px;
}

/* ── Back to Top ── */
.back-to-top {
  display: none !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 99;
  box-shadow: var(--shadow-gold);
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-lg);
}

/* ── Utility Classes ── */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.gap-20 { gap: 20px; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── Visual Vehicle Selection Grid ── */
.vehicle-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.vehicle-select-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 15px 12px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.vehicle-select-card:hover {
  border-color: rgba(196, 17, 21, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(196, 17, 21, 0.05);
}

.vehicle-select-card.selected {
  border-color: var(--gold);
  background: rgba(196, 17, 21, 0.03);
  box-shadow: 0 0 12px rgba(196, 17, 21, 0.15);
}

.vehicle-select-img {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

.vehicle-select-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.vehicle-select-card:hover .vehicle-select-img img {
  transform: scale(1.05);
}

.vehicle-select-meta h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-light);
}

.vehicle-select-meta .type {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-select-meta .price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

.vehicle-select-meta .price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.select-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-normal);
}

.vehicle-select-card.selected .select-badge {
  opacity: 1;
  transform: scale(1);
}

/* Error styling for visual grid */
.vehicle-select-grid.has-error {
  border: 1px solid #ef4444;
  border-radius: var(--radius-md);
  padding: 10px;
}


/* ── Floating Sticky WhatsApp Button ── */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none !important;
}

.whatsapp-sticky:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.65);
  background-color: #20ba5a;
}
