/* ========================================
   JT AUTO RENTAL - COMPLETE HOMEPAGE REDESIGN
   Navy + Teal Luxury Theme
   Version: 2.0
   ======================================== */

/* ===== SECTION 1: NAVIGATION BAR (Fixed) ===== */
.navbar-luxury {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-luxury.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand-luxury {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    text-decoration: none;
}

.navbar-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.navbar-menu-luxury {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-luxury {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link-luxury::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-primary);
    transition: width 0.3s ease;
}

.nav-link-luxury:hover {
    color: var(--teal-primary);
}

.nav-link-luxury:hover::after,
.nav-link-luxury.active::after {
    width: 100%;
}

.nav-btn-login {
    background: var(--teal-gradient);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 169, 0.3);
}

.nav-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 169, 0.4);
    color: white;
}

/* ===== SECTION 2: HERO SECTION (Optimized Height) ===== */
.hero-section-premium {
    min-height: auto;
    padding: 140px 0 100px 0;
    background: var(--hero-gradient);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated car background pattern */
.hero-section-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    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='%23ffffff' fill-opacity='0.05'%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.4;
    animation: patternSlide 30s linear infinite;
}

@keyframes patternSlide {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-section-premium .hero-content,
.hero-content-premium,
.hero-content {
    position: relative;
    z-index: 2;
    color: white !important;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.hero-section-premium .hero-title,
.hero-section-premium h1,
.hero-title-premium,
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    color: white !important;
}

.hero-title-gradient {
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-premium,
.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons-premium,
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-premium {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-primary {
    background: var(--teal-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 184, 169, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 184, 169, 0.5);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

/* Hero Stats Cards - Single Row Layout */
.hero-stats,
.hero-stats-premium {
    margin-top: 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-premium:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--teal-primary);
    box-shadow: 0 10px 30px rgba(0, 184, 169, 0.3);
}

.stat-number-premium {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label-premium {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Floating Search Bar at Bottom of Hero */
.hero-search-floating {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 10;
}

/* ===== SECTION 3: QUICK BOOKING SECTION ===== */
.quick-booking-section {
    background: var(--white);
    padding: 100px 0 80px 0;
}

.section-title-luxury {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-subtitle-luxury {
    font-size: 1.1rem;
    color: var(--gray-500);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-divider-luxury {
    width: 80px;
    height: 4px;
    background: var(--teal-gradient);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.booking-form-luxury {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border: 2px solid var(--gray-100);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group-luxury {
    position: relative;
}

.form-label-luxury {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input-luxury {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-luxury:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(0, 184, 169, 0.1);
}

.form-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--teal-primary);
    font-size: 1.2rem;
}

.btn-search-luxury {
    width: 100%;
    padding: 1.25rem;
    background: var(--teal-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.3);
}

.btn-search-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 184, 169, 0.4);
}

/* 3 Easy Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.3);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--gold-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== SECTION 4: POPULAR VEHICLE COLLECTION ===== */
.featured-section-premium {
    background: var(--gray-50);
    padding: 80px 0;
}

.vehicle-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--teal-primary);
    border-color: var(--teal-primary);
    color: white;
    transform: translateY(-2px);
}

.cars-showcase-grid-premium,
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.premium-car-card-enhanced,
.vehicle-card-luxury {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E5E7EB;
    position: relative;
}

.premium-car-card-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--teal-primary), var(--emerald));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-car-card-enhanced:hover::before {
    opacity: 1;
}

.premium-car-card-enhanced:hover,
.vehicle-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 184, 169, 0.2);
}

.car-image-container-premium,
.vehicle-image-wrapper {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #F9FAFB, #E5E7EB);
    overflow: hidden;
}

.car-main-image-premium,
.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-car-card-enhanced:hover .car-main-image-premium,
.vehicle-card-luxury:hover .vehicle-image {
    transform: scale(1.08);
}

/* Rating Badge on Image */
.rating-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy-primary);
}

.rating-badge-overlay i {
    color: #F59E0B;
    font-size: 1rem;
}

.premium-car-content-enhanced,
.vehicle-content {
    padding: 1.5rem;
}

/* Car Header with Name and Price */
.car-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.car-title-section {
    flex: 1;
}

.car-name-premium-enhanced,
.vehicle-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

/* Star Rating Below Name */
.rating-stars-inline {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.rating-stars-inline i {
    color: #F59E0B;
    font-size: 0.85rem;
}

.rating-stars-inline i.star-empty {
    color: #D1D5DB;
}

.rating-count {
    margin-left: 0.5rem;
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 600;
}

.car-price-premium {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 184, 169, 0.2);
    min-width: 90px;
}

.price-amount {
    color: var(--teal-primary);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.price-period {
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-specs-premium-enhanced,
.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem 0;
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
}

.spec-item-premium-enhanced,
.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-icon-premium-enhanced,
.spec-icon {
    color: var(--teal-primary);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.car-action-btn-premium,
.btn-book-now {
    width: 100%;
    padding: 0.875rem;
    background: var(--teal-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.car-action-btn-premium:hover,
.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.4);
    color: white;
}

.car-action-btn-premium i {
    transition: transform 0.3s ease;
}

.car-action-btn-premium:hover i {
    transform: translateX(5px);
}

.explore-more-section-premium,
.btn-view-all {
    display: block;
    margin: 0 auto;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--teal-primary);
    border: 2px solid var(--teal-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--teal-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.3);
}

/* ===== SECTION 5: WHY CHOOSE US ===== */
.why-choose-premium {
    background: white;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card-premium {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--teal-primary);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-premium {
    width: 90px;
    height: 90px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 184, 169, 0.3);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 184, 169, 0.4);
}

.feature-title-premium {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.feature-description-premium {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-number-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* ===== SECTION 6: HOW IT WORKS ===== */
.how-it-works-section {
    background: var(--hero-gradient);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    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='%23ffffff' fill-opacity='0.03'%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.4;
}

.section-title-white {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.timeline-step-number {
    width: 120px;
    height: 120px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 184, 169, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.timeline-step-icon {
    font-size: 3.5rem;
}

.timeline-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.timeline-step-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Arrow between steps */
.timeline-arrow {
    position: absolute;
    top: 50px;
    right: -2rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.timeline-step:last-child .timeline-arrow {
    display: none;
}

/* ===== SECTION 7: PREMIUM SERVICES ===== */
.services-section-premium,
.premium-services-section {
    background: white;
    padding: 80px 0;
}

.section-header-premium,
.section-title-premium {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    font-family: 'Playfair Display', serif;
}

.section-subtitle-premium {
    font-size: 1.1rem;
    color: var(--gray-500);
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 2rem;
    line-height: 1.7;
}

.divider-premium {
    width: 80px;
    height: 4px;
    background: var(--teal-gradient);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card-premium,
.service-card-luxury {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.service-card-premium::before,
.service-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--teal-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-card-premium:hover,
.service-card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 184, 169, 0.2);
    border-color: var(--teal-primary);
}

.service-card-premium:hover::before,
.service-card-luxury:hover::before {
    transform: scaleX(1);
}

.service-icon-premium,
.service-icon-luxury {
    width: 100px;
    height: 100px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 184, 169, 0.3);
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-premium,
.service-card-luxury:hover .service-icon-luxury {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 184, 169, 0.5);
}

.service-title-premium,
.service-title-luxury {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.service-description-premium,
.service-description-luxury {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Image placeholder for vehicle cards */
.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    transition: opacity 0.3s ease;
}

.car-main-image-premium.loaded + .image-placeholder,
.vehicle-image.loaded + .image-placeholder {
    opacity: 0;
    pointer-events: none;
}

/* View All Vehicles Button */
.btn-view-all-vehicles-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--teal-gradient);
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 184, 169, 0.3);
    border: none;
}

.btn-view-all-vehicles-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 184, 169, 0.4);
    color: white;
}

.btn-view-all-vehicles-premium i:first-child {
    font-size: 1.2rem;
}

.btn-view-all-vehicles-premium i:last-child {
    transition: transform 0.3s ease;
}

.btn-view-all-vehicles-premium:hover i:last-child {
    transform: translateX(5px);
}

/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SECTION 8: CUSTOMER TESTIMONIALS ===== */
.testimonials-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--teal-primary);
    opacity: 0.1;
}

.testimonial-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.customer-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--teal-primary);
    object-fit: cover;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 0.25rem;
}

.customer-role {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.testimonial-rating {
    color: var(--amber);
    font-size: 1.2rem;
}

/* Carousel Controls */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--teal-primary);
    width: 40px;
    border-radius: 6px;
}

/* ===== SECTION 9: SPECIAL OFFERS/DEALS ===== */
.special-offers-section {
    background: var(--teal-gradient);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.special-offers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    background: var(--gold-gradient);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.offer-percentage {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.offer-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-claim-offer {
    background: white;
    color: var(--teal-primary);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-claim-offer:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION 10: TRUST BADGES ===== */
.trust-badges-section {
    background: white;
    padding: 80px 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.trust-badge {
    text-align: center;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--teal-primary);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.badge-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    font-weight: 600;
}

/* Partner Logos */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.partner-logo {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    max-width: 150px;
    margin: 0 auto;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== SECTION 11: BLOG/NEWS SECTION ===== */
/* NOTE: PHP Backend Required - Create blog table in database:
   - blog_posts (id, title, excerpt, image, date, author, slug)
   - Fetch latest 3 posts with: SELECT * FROM blog_posts ORDER BY date DESC LIMIT 3
*/
.blog-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--teal-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    color: var(--teal-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    gap: 1rem;
}

/* ===== SECTION 12: NEWSLETTER SUBSCRIPTION ===== */
/* NOTE: PHP Backend Required - Create newsletter_subscribers table:
   - newsletter_subscribers (id, email, subscribed_at, status)
   - Handle AJAX form submission to subscribe.php
*/
.newsletter-section {
    background: var(--navy-primary);
    padding: 80px 0;
    color: white;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--teal-primary);
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--teal-primary);
    background: rgba(255, 255, 255, 0.15);
}

.btn-subscribe {
    padding: 1rem 2.5rem;
    background: var(--teal-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 184, 169, 0.4);
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 184, 169, 0.5);
}

/* ===== SECTION 13: FOOTER ===== */
.footer-luxury {
    background: linear-gradient(135deg, #0B132B 0%, #1C2541 50%, #0B132B 100%);
    color: white;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer-luxury::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.footer-luxury::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--teal-gradient);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.8rem;
}

.footer-logo-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 184, 169, 0.4);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 184, 169, 0.6);
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--teal-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    background: transparent;
    border-color: var(--teal-primary);
}

.social-icon:hover::before {
    opacity: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    position: relative;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--teal-primary);
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(0, 184, 169, 0.1);
    color: white;
}

.contact-icon {
    color: var(--teal-primary);
    font-size: 1.35rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15);
    color: var(--teal-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.copyright strong {
    color: var(--teal-primary);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-gradient);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--teal-primary);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* ===== SECTION 14: FLOATING ELEMENTS ===== */
.floating-elements {
    position: fixed;
    z-index: 999;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 184, 169, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 184, 169, 0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(0, 184, 169, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(0, 184, 169, 0.6); }
}

/* Scroll to Top Button */
.scroll-top-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-button:hover {
    background: var(--teal-primary);
    transform: translateY(-5px);
}

/* WhatsApp Button (Optional) */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title-premium {
        font-size: 3.5rem;
    }
    
    .cars-showcase-grid-premium,
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .hero-title,
    .hero-title-premium {
        font-size: 3rem;
    }
    
    .timeline-steps {
        grid-template-columns: 1fr;
    }
    
    .timeline-arrow {
        display: none;
    }
    
    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-menu-luxury {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section-premium {
        padding: 120px 0 60px 0;
    }
    
    .hero-title,
    .hero-title-premium {
        font-size: 2.25rem;
    }
    
    .hero-subtitle,
    .hero-subtitle-premium {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons-premium,
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-premium {
        width: 100%;
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-card-premium {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-number-premium {
        font-size: 2rem;
    }
    
    .stat-label-premium {
        font-size: 0.75rem;
    }
    
    .cars-showcase-grid-premium,
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .chat-button,
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .scroll-top-button {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .section-title-premium {
        font-size: 2rem;
    }
    
    .hero-stats-premium {
        grid-template-columns: 1fr;
    }
    
    .premium-car-card-enhanced,
    .vehicle-card-luxury {
        margin: 0 1rem;
    }
    
    .booking-form-luxury {
        padding: 2rem 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-teal {
    color: var(--teal-primary);
}

.text-navy {
    color: var(--navy-primary);
}

.bg-teal {
    background: var(--teal-primary);
}

.bg-navy {
    background: var(--navy-primary);
}

.container-luxury {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--teal-primary);
    color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Loading Animation for Vehicle Cards */
.vehicle-image-wrapper.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===== 🔧 PREMIUM SUFFIX CLASSES (FOR INDEX.PHP) ===== */

/* Quick Booking Section - Premium Classes */
.quick-booking-section-premium {
    padding: 80px 0;
    background: white;
    position: relative;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-premium {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle-premium {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.divider-premium {
    width: 80px;
    height: 4px;
    background: var(--teal-gradient);
    margin: 20px auto 0;
    border-radius: var(--radius-full);
}

.booking-form-container-premium {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(11, 19, 43, 0.1);
    border: 1px solid rgba(0, 184, 169, 0.1);
}

.quick-booking-form-premium .form-group-premium {
    margin-bottom: 0;
}

.form-label-premium {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 8px;
}

.form-label-premium i {
    color: var(--teal-primary);
    margin-right: 8px;
}

.form-control-premium {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 4px rgba(0, 184, 169, 0.1);
}

.booking-form-footer-premium {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-search-premium {
    flex: 1;
    min-width: 250px;
    padding: 16px 32px;
    background: var(--teal-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-search-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 184, 169, 0.4);
}

.booking-steps-premium {
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-step-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.step-number-premium {
    width: 32px;
    height: 32px;
    background: var(--teal-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 184, 169, 0.3);
}

.step-arrow-premium {
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* Why Choose Us - Premium Classes */
.why-choose-premium {
    padding: 80px 0;
    background: var(--gray-50);
}

.feature-card-premium {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(11, 19, 43, 0.08);
    border: 1px solid transparent;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(11, 19, 43, 0.15);
    border-color: var(--teal-primary);
}

.feature-icon-premium {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--teal-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.25);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
    transform: scale(1.1) rotate(5deg);
}

.feature-title-premium {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.feature-description-premium {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===== HOW IT WORKS SECTION - PREMIUM CLASSES ===== */
.how-it-works-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B132B 0%, #1C2541 50%, #2A3F5F 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-premium::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.15), transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.how-it-works-premium::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.12), transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.timeline-premium {
    position: relative;
    max-width: 1200px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-item-premium {
    position: relative;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.timeline-item-premium:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item-premium:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-item-premium:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-content-premium {
    background: white;
    padding: 50px 35px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-content-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 90px rgba(0, 184, 169, 0.4);
    border-color: var(--teal-primary);
}

.timeline-icon-premium {
    width: 100px;
    height: 100px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 184, 169, 0.5);
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

/* Pulsing ring effect around icon */
.timeline-icon-premium::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid rgba(0, 184, 169, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
}

.timeline-content-premium:hover .timeline-icon-premium {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 50px rgba(0, 184, 169, 0.7);
}

.timeline-content-premium:hover .timeline-icon-premium::before {
    opacity: 1;
    inset: -15px;
}

.timeline-title-premium {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.timeline-description-premium {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
    flex-grow: 1;
}

.timeline-number-premium {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--teal-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 10px 30px rgba(0, 184, 169, 0.5);
    border: 5px solid #0B132B;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-content-premium:hover .timeline-number-premium {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 184, 169, 0.7);
}

/* ===== VEHICLE FILTERS - PREMIUM CLASSES ===== */
.vehicle-filters-premium {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn-premium {
    padding: 12px 28px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn-premium:hover {
    border-color: var(--teal-primary);
    color: var(--teal-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.2);
}

.filter-btn-premium.active {
    background: var(--teal-gradient);
    color: white;
    border-color: var(--teal-primary);
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.3);
}

.filter-btn-premium i {
    font-size: 1.1rem;
}

/* ===== TESTIMONIALS SECTION - PREMIUM CLASSES ===== */
.testimonials-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card-premium {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(11, 19, 43, 0.1);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card-premium::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3.5rem;
    color: rgba(0, 184, 169, 0.06);
    transition: all 0.4s ease;
}

.testimonial-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 184, 169, 0.2);
    border-color: var(--teal-primary);
}

.testimonial-card-premium:hover::before {
    color: rgba(0, 184, 169, 0.12);
    transform: scale(1.1);
}

.testimonial-rating-premium {
    display: flex;
    gap: 6px;
    margin-bottom: 25px;
}

.testimonial-rating-premium i {
    color: #F59E0B;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover .testimonial-rating-premium i {
    transform: scale(1.1);
}

.testimonial-text-premium {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-100);
}

.author-avatar-premium {
    width: 60px;
    height: 60px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover .author-avatar-premium {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(0, 184, 169, 0.5);
}

.author-info-premium {
    flex: 1;
}

.author-name-premium {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 4px;
}

.author-role-premium {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===== SPECIAL OFFERS SECTION - PREMIUM CLASSES ===== */
.special-offers-premium {
    padding: 100px 0;
    background: var(--teal-gradient);
    position: relative;
    overflow: hidden;
}

.special-offers-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.offers-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card-premium {
    background: white;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(11, 19, 43, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.offer-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(11, 19, 43, 0.25);
}

.offer-badge-premium {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #F59E0B;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-icon-premium {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 184, 169, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.offer-icon-premium::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 3px solid var(--teal-primary);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.offer-card-premium:hover .offer-icon-premium {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 184, 169, 0.6);
}

.offer-title-premium {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.offer-description-premium {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.offer-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy-primary);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(11, 19, 43, 0.3);
}

.offer-cta-premium:hover {
    background: var(--teal-primary);
    transform: translateX(8px);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 184, 169, 0.4);
}

/* ===== PAYMENT SECTION - PREMIUM CLASSES ===== */
.payment-trust-premium {
    padding: 80px 0;
    background: white;
}

.payment-methods-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.payment-method-card-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    min-height: 140px;
}

.payment-method-card-premium:hover {
    border-color: var(--teal-primary);
    box-shadow: 0 10px 30px rgba(0, 184, 169, 0.15);
    transform: translateY(-5px);
}

.payment-icon-premium {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon-premium img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-name-premium {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.trust-features-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #F9FAFB, #FFFFFF);
    border-radius: 15px;
    flex-wrap: wrap;
}

.trust-feature-item-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.trust-feature-item-premium i {
    font-size: 1.5rem;
    color: var(--teal-primary);
}

/* ===== NEWSLETTER SECTION - PREMIUM CLASSES ===== */
.newsletter-premium {
    padding: 80px 0;
    background: var(--navy-primary);
    position: relative;
    overflow: hidden;
}

.newsletter-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.15), transparent);
    border-radius: 50%;
}

.newsletter-content-premium {
    position: relative;
    z-index: 2;
}

.newsletter-text-premium {
    margin-bottom: 30px;
}

.newsletter-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.newsletter-subtitle-premium {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.newsletter-form-premium {
    max-width: 600px;
}

.newsletter-input-group-premium {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-input-premium {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input-premium::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-premium:focus {
    outline: none;
    border-color: var(--teal-primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn-premium {
    padding: 16px 40px;
    background: var(--teal-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 184, 169, 0.4);
}

.newsletter-disclaimer-premium {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* Responsive for Premium Classes */
@media (max-width: 992px) {
    .booking-form-footer-premium {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .booking-steps-premium {
        width: 100%;
        justify-content: center;
    }
    
    .timeline-premium {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
    }
    
    .timeline-content-premium {
        padding: 45px 35px;
    }
    
    .timeline-icon-premium {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .timeline-number-premium {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        top: -32px;
    }
    
    .timeline-title-premium {
        font-size: 1.65rem;
    }
    
    .timeline-description-premium {
        font-size: 1rem;
    }
    
    .testimonials-grid-premium {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 600px;
    }
    
    .testimonial-card-premium {
        padding: 40px 30px;
    }
    
    .offers-grid-premium {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 600px;
    }
    
    .offer-card-premium {
        padding: 45px 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .booking-form-container-premium {
        padding: 25px;
    }
    
    .btn-search-premium {
        width: 100%;
    }
    
    .section-title-premium {
        font-size: 2rem;
    }
    
    .how-it-works-premium {
        padding: 60px 0;
    }
    
    .timeline-premium {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 50px;
        max-width: 90%;
    }
    
    .timeline-content-premium {
        padding: 40px 30px;
    }
    
    .timeline-icon-premium {
        width: 85px;
        height: 85px;
        font-size: 2rem;
    }
    
    .timeline-number-premium {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        top: -30px;
        border-width: 4px;
    }
    
    .timeline-title-premium {
        font-size: 1.5rem;
    }
    
    .timeline-description-premium {
        font-size: 0.95rem;
    }
    
    .testimonials-premium {
        padding: 60px 0;
    }
    
    .testimonials-grid-premium {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        max-width: 90%;
    }
    
    .testimonial-card-premium {
        padding: 35px 25px;
    }
    
    .author-avatar-premium {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .testimonial-rating-premium i {
        font-size: 1rem;
    }
    
    .special-offers-premium {
        padding: 60px 0;
    }
    
    .offers-grid-premium {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        max-width: 90%;
    }
    
    .offer-card-premium {
        padding: 40px 25px;
    }
    
    .offer-icon-premium {
        width: 85px;
        height: 85px;
        font-size: 2.4rem;
    }
    
    .offer-title-premium {
        font-size: 1.6rem;
    }
    
    .offer-badge-premium {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .vehicle-filters-premium {
        gap: 10px;
    }
    
    .filter-btn-premium {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .payment-methods-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-features-premium {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-input-group-premium {
        flex-direction: column;
    }
    
    .newsletter-btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .footer-luxury {
        padding: 60px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .footer-column:first-child {
        grid-column: 1;
    }
    
    .footer-column h3 {
        font-size: 1.25rem;
    }
    
    .footer-bottom-links {
        gap: 1.25rem;
        flex-direction: column;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .newsletter-title-premium {
        font-size: 2rem;
    }
}

/* ========================================
   END OF HOMEPAGE-NEW.CSS
   All sections complete
   ======================================== */
