/* ===== CSS Variables ===== */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #1e293b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #06b6d4;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-gradient-alt: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
  color: white;
}

.car-animation {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 1s infinite;
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 600;
  animation: pulse 1.5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ===== Navigation ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary-color) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand i {
  font-size: 2rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 0.0rem;
  color: var(--text-dark) !important;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--primary-color);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
  left: 10%;
}

.btn-book-now {
  background: var(--bg-gradient-alt);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: white;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-book-now::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: left 0.5s;
}

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

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
}
/* Guardian-style dark navy blue */
.guardian-btn {
    background-color: #9D59E6; 
    color: #ffffff;
    border: none;
}

.guardian-btn:hover {
    background-color: #935AEE; 
    color: #ffffff;
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.hero-content {
  color: white;
  z-index: 2;
}
.hero-content {
    padding-top: 80px;
    padding-bottom: 32px;
}

@media (max-width: 768px) {
    .hero-content {
      padding-top: 80px;
      padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .booking-card {
        margin-bottom: 80px;
    }
}

@media (max-width: 991.98px) {
  #mainNavbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  
  }

  .hero-section {
    padding-top: 80px; /* Fixed-top navbar */
  }
}

  @media (max-width: 991.98px) {
    .booking-card {
      margin-bottom: 3rem;
    }
  }




.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
  background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 600px;
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}


/* ===== Booking Card ===== */
.booking-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
}

.booking-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-header h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.booking-header p {
  color: var(--text-light);
  margin: 0;
}

.booking-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form .form-control,
.booking-form .form-select {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-weight: 500;
  transition: var(--transition);
  background: white;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
  transform: translateY(-1px);
}

.booking-info {
  text-align: center;
}

.booking-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1rem;
  text-align: center;
  animation: slideDown 0.5s ease-out;
}

.success-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Section Styles ===== */
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--bg-gradient-alt);
  border-radius: 2px;
}

.section-title.text-start::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.7;
}

.section-subtitle.text-start {
  margin-left: 0;
  margin-right: 0;
}

/* ===== Services Section ===== */
.services-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  border-radius: 24px 24px 0 0;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.02), rgba(139, 92, 246, 0.02));
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 24px;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(99, 102, 241, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.service-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.service-card:hover .service-icon::before {
  animation: shine 0.8s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

.service-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.3;
  position: relative;
}

.service-card h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.5s ease;
}

.service-card:hover h4::after {
  width: 60px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
}

/* ===== Fleet Section ===== */
.fleet-section {
  background: white;
  position: relative;
}

.fleet-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.fleet-section .container {
  position: relative;
  z-index: 2;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  border: 2px solid #e2e8f0;
  background: white;
  color: var(--text-dark);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient-alt);
  transition: left 0.3s ease;
  z-index: -1;
}

.filter-btn.active::before,
.filter-btn:hover::before {
  left: 0;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#fleet {
  padding-top: 120px;
  padding-bottom: 120px;
  margin-top: 0;
  margin-bottom: 0;
  overflow: visible;
}

#fleet {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: visible !important;
}


/* ===== Car Cards ===== */
.car-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  height: 100%;
}
.car-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.car-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.car-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.car-badge.premium {
  background: var(--bg-gradient-alt);
  color: white;
}

.car-badge.popular {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.car-badge.family {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.car-badge.eco {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.car-badge.exclusive {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.car-rating {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.car-rating i {
  color: var(--accent-color);
}

.wishlist-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.wishlist-btn.active {
  background: var(--danger-color);
  color: white;
}

.wishlist-btn.active i {
  color: white;
}

.car-details {
  padding: 1.5rem;
}

.car-details h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.car-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.6;
}

.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feature-tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

.car-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.current-price {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}

.current-price small {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.discount-badge {
  background: var(--success-color);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.btn-book {
  background: var(--bg-gradient-alt);
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: white;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-book::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: left 0.5s;
}

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

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* ===== About Section ===== */
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

#about {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: visible !important;
}


.about-content {
  padding-right: 2rem;
}

.feature-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-gradient-alt);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1.5rem;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.feature-content h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
}

.experience-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--bg-gradient-alt);
  color: white;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.badge-number {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background: white;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-info h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.customer-role {
  color: var(--text-light);
  font-size: 0.875rem;
}

.rating {
  margin-left: auto;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.testimonial-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

#testimonials {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/* ===== CTA Section ===== */
.cta-section {
  background: var(--bg-gradient);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.cta-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
}

.cta-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.cta-section {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/* ===== Footer ===== */
.footer-section {
  background: var(--secondary-color);
  color: white;
  padding: 4rem 0 1rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand i {
  font-size: 2rem;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-widget h5 {
  font-family: "Poppins", sans-serif;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 0.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--primary-light);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--bg-gradient-alt);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

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

  .booking-card {
    margin-top: 1rem;
    padding: 1.5rem;
  }

  .services-section,
  .fleet-section,
  .about-section,
  .testimonials-section {
    padding: 4rem 0;
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .feature-item {
    flex-direction: column;
    text-align: justify;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .rating {
    margin-left: 0;
    margin-top: 0.5rem;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .service-card,
  .car-card,
  .testimonial-card {
    margin-bottom: 2rem;
  }

  .car-details {
    padding: 1.25rem;
  }

  .service-card {
    padding: 2rem;
  }

  .car-pricing {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .btn-book {
    width: 100%;
  }

  .experience-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }
}

.services-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 576px) {
  .services-section {
  padding-top: 80px;
  padding-bottom: 80px;
  }
}

/* ===== Loading Animation ===== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== AOS Animation Overrides ===== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ===== Utility Classes ===== */
.text-gradient {
  background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
}
