/* ============================================
   YOURS TO RENT - MAIN STYLESHEET
   Premium Dark Theme with Gold/Orange Accents
   ============================================ */

/* CSS Variables */
:root {
  /* Brand Colors - Gold/Orange/Red Gradient */
  --primary-gold: #ffd700;
  --primary-orange: #ff8c00;
  --primary-red: #dc143c;

  /* Gradient */
  --gradient-brand: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #dc143c 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  --gradient-orange: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);

  /* Dark Theme Colors */
  --bg-dark: #0a0a0a;
  --bg-dark-2: #111111;
  --bg-dark-3: #1a1a1a;
  --bg-dark-4: #222222;
  --bg-card: rgba(26, 26, 26, 0.9);

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #888888;
  --text-dark: #333333;

  /* Border Colors */
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(255, 215, 0, 0.3);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.2);

  /* Fonts */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Dark Theme */
.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-orange);
}

/* Utility Classes */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.py-6 {
  padding: var(--section-padding);
}

.py-5 {
  padding: 80px 0;
}

.py-4 {
  padding: 60px 0;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--bg-dark-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-bar::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(300%);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-gradient {
  background: var(--gradient-brand);
  color: var(--bg-dark);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--bg-dark);
}

.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline-light:hover {
  background: var(--text-white);
  color: var(--bg-dark);
}

.btn-light {
  background: var(--text-white);
  color: var(--bg-dark);
  border: none;
}

.btn-light:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--primary-gold);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
}

/* Hero Search Card */
.hero-search-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.hero-search-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.search-form .form-group {
  margin-bottom: 20px;
}

.search-form label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.search-form label i {
  color: var(--primary-gold);
  margin-right: 8px;
}

.form-control,
.form-select {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  background: var(--bg-dark-4);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  color: var(--text-white);
}

.form-select option {
  background: var(--bg-dark-3);
  color: var(--text-white);
}

/* Price Range Slider */
.price-range-slider {
  padding: 10px 0;
}

.form-range {
  width: 100%;
  height: 6px;
  background: var(--bg-dark-4);
  border-radius: var(--radius-full);
  appearance: none;
}

.form-range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--gradient-brand);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}

.price-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-labels .current-price {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.hero-scroll-indicator i {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================
   TRUSTED SECTION
   ============================================ */
.trusted-section {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.trusted-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trusted-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 24px;
  width: auto;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.5;
  transition: var(--transition-normal);
}

.trusted-logos img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
  background: var(--bg-dark);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  aspect-ratio: 1;
  transition: var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.category-icon i {
  font-size: 1.25rem;
  color: var(--bg-dark);
}

.category-content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-white);
}

.category-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.category-price {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.875rem;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-brand);
  color: var(--bg-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================
   FEATURED VEHICLES SECTION
   ============================================ */
.featured-section {
  background: var(--bg-dark-2);
}

.featured-nav {
  display: flex;
  gap: 12px;
}

.swiper-btn-prev,
.swiper-btn-next {
  width: 48px;
  height: 48px;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
  border-color: var(--primary-gold);
}

/* Vehicle Cards */
.vehicle-card {
  background: var(--bg-dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: var(--transition-normal);
}

.vehicle-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.vehicle-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.vehicle-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-instant {
  background: #10b981;
  color: white;
}

.badge-featured {
  background: var(--gradient-brand);
  color: var(--bg-dark);
}

.badge-superhost {
  background: #8b5cf6;
  color: white;
}

.badge-luxury {
  background: var(--primary-gold);
  color: var(--bg-dark);
}

.badge-economy {
  background: #3b82f6;
  color: white;
}

.badge-classic {
  background: #ef4444;
  color: white;
}

.favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: var(--transition-fast);
}

.favorite-btn:hover,
.favorite-btn.active {
  background: var(--primary-red);
}

.favorite-btn.active i {
  font-weight: 900;
}

.vehicle-content {
  padding: 20px;
}

.vehicle-rating {
  color: var(--primary-gold);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.vehicle-rating i {
  margin-right: 4px;
}

.vehicle-title {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-white);
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.813rem;
  color: var(--text-muted);
}

.vehicle-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vehicle-specs i {
  color: var(--primary-gold);
  font-size: 0.75rem;
}

.vehicle-location {
  font-size: 0.813rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.vehicle-location i {
  color: var(--primary-gold);
  margin-right: 4px;
}

.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.vehicle-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.vehicle-price .period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Swiper Pagination */
.swiper-pagination {
  margin-top: 32px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--bg-dark-4);
  opacity: 1;
  transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
  background: var(--gradient-brand);
  width: 30px;
  border-radius: var(--radius-full);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
  background: var(--bg-dark);
}

.how-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.how-tab {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.how-tab:hover {
  border-color: var(--primary-gold);
}

.how-tab.active {
  background: var(--gradient-brand);
  color: var(--bg-dark);
  border-color: transparent;
}

.how-tab i {
  font-size: 1rem;
}

.how-content {
  display: none;
}

.how-content.active {
  display: block;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: white;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.3;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-dark-3);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-normal);
}

.step-icon i {
  font-size: 2rem;
  color: var(--primary-gold);
}

.step:hover .step-icon {
  background: var(--gradient-brand);
  border-color: transparent;
}

.step:hover .step-icon i {
  color: var(--bg-dark);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.938rem;
  color: var(--text-muted);
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--border-gold);
}

.connector-line {
  width: 40px;
  height: 2px;
  background: var(--border-gold);
}

.step-connector i {
  margin-left: -5px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  background: var(--bg-dark-2);
}

.benefits-image {
  position: relative;
  padding: 40px;
}

.benefits-image .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.floating-card {
  position: absolute;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.floating-card span {
  font-weight: 600;
  color: var(--text-white);
}

.floating-card.card-1 {
  top: 60px;
  right: 0;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 120px;
  left: 0;
  animation-delay: 0.5s;
}

.floating-card.card-3 {
  bottom: 40px;
  right: 40px;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.benefits-content {
  padding-left: 40px;
}

.benefits-list {
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  transition: var(--transition-normal);
}

.benefit-item:hover {
  border-color: var(--border-gold);
  transform: translateX(8px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 1.25rem;
  color: var(--primary-gold);
}

.benefit-text h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
}

.service-card.featured {
  border-color: var(--primary-gold);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, var(--bg-dark-3) 100%);
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-brand);
  color: var(--bg-dark);
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition-normal);
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-gold);
}

.service-card:hover .service-icon {
  background: var(--gradient-brand);
}

.service-card:hover .service-icon i {
  color: var(--bg-dark);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.938rem;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: var(--primary-gold);
  font-size: 0.75rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--bg-dark-2);
}

.testimonial-card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.testimonial-rating {
  margin-bottom: 16px;
}

.testimonial-rating i {
  color: var(--primary-gold);
  margin-right: 2px;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.813rem;
  color: var(--text-muted);
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */
.locations-section {
  background: var(--bg-dark);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.location-card:hover img {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
}

.location-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--text-white);
}

.location-overlay span {
  font-size: 0.875rem;
  color: var(--primary-gold);
}

/* ============================================
   APP SECTION
   ============================================ */
.app-section {
  background: var(--bg-dark-2);
  overflow: hidden;
}

.app-content {
  padding-right: 40px;
}

.app-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-dark-3);
  border-radius: var(--radius-md);
}

.app-feature i {
  color: var(--primary-gold);
  font-size: 1.25rem;
}

.app-feature span {
  font-weight: 500;
  color: var(--text-white);
}

.app-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.app-btn img {
  height: 48px;
  width: auto;
  transition: var(--transition-fast);
}

.app-btn:hover img {
  transform: scale(1.05);
}

.app-qr {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-qr img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
}

.app-qr span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.app-mockup {
  position: relative;
  text-align: center;
}

.phone-mockup {
  max-width: 300px;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  z-index: -1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--bg-dark);
}

.cta-card {
  position: relative;
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--bg-dark);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--bg-dark);
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
}

.newsletter-section h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.newsletter-section p {
  color: var(--text-muted);
  margin: 0;
}

.newsletter-form .input-group {
  max-width: 500px;
  margin-left: auto;
}

.newsletter-form .form-control {
  padding: 16px 20px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.newsletter-form .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark-2);
  padding-top: 80px;
}

.footer-main {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--bg-dark);
}

.footer-links h5 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-white);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 8px;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-payments span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-payments i {
  font-size: 1.5rem;
  color: var(--text-muted);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-brand);
  border: none;
  border-radius: 50%;
  color: var(--bg-dark);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
  .mega-menu {
    width: 600px;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-card.featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--bg-dark-2);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 15px;
    border: 1px solid var(--border-dark);
  }

  .mega-menu {
    width: 100%;
    position: static;
  }

  .mega-menu .col-md-3 {
    margin-bottom: 20px;
  }

  .nav-actions {
    margin-top: 20px;
    justify-content: center;
  }

  .hero-search-card {
    margin-top: 40px;
  }

  .hero-stats {
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .step-connector {
    display: none;
  }

  .benefits-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .benefits-image {
    padding: 20px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .py-6 {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item {
    flex: 1 0 40%;
  }

  .categories-grid,
  .services-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .how-tabs {
    flex-direction: column;
  }

  .how-tab {
    width: 100%;
    justify-content: center;
  }

  .app-features {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .newsletter-form .input-group {
    flex-direction: column;
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    border-radius: var(--radius-md);
    width: 100%;
  }

  .newsletter-form .btn {
    margin-top: 12px;
  }

  .footer-payments {
    margin-top: 16px;
    justify-content: start;
  }

  .trusted-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .trusted-logos {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-search-card {
    padding: 24px;
  }

  .floating-card {
    display: none;
  }

  .featured-nav {
    display: none;
  }
}
