/* ============================================
   CAROLA CAR RENTAL - FULL CSS STYLESHEET
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES - GLOBAL COLOR PALETTE
   ============================================ */
:root {
    /* Primary Colors */
    --primary-red: #ff4757;
    --primary-red-light: #ff6b7a;
    --primary-red-dark: #ee2f42;
    --primary-red-pale: #ffe5e9;
    
    /* Neutral Colors */
    --color-dark: #2c3e50;
    --color-dark-light: #34495e;
    --color-gray: #6c757d;
    --color-gray-light: #95a5a6;
    --color-gray-lighter: #bdc3c7;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #e9ecef;
    --bg-gradient-start: #f8f9fa;
    --bg-gradient-end: #e9ecef;
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-muted: #95a5a6;
    --text-white: #ffffff;
    
    /* Border Colors */
    --border-light: #e9ecef;
    --border-gray: #dee2e6;
    
    /* Shadow Colors */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    
    /* Transition */
    --transition-speed: 0.3s;
    
    /* Font Families */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

p {
    font-family: var(--font-body);
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    padding: 1rem 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-dark) !important;
    transition: all var(--transition-speed) ease;
}

.navbar-brand:hover {
    color: var(--primary-red) !important;
}

.navbar-brand img{
    width: 120px;
    height: auto;
}

.navbar-nav {
    font-family: var(--font-body);
}

.navbar-nav .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1rem;
    margin: 0 15px;
    padding: 8px 0;
    position: relative;
    transition: all var(--transition-speed) ease;
    border-bottom:2px solid transparent ;
}





.navbar-nav .nav-link:hover {
    border-bottom: 2px solid var(--primary-red-dark);
}

.dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-family: var(--font-body);
    color: var(--text-primary);
    padding: 10px 20px;
    transition: all var(--transition-speed) ease;
}

.dropdown-item:hover {
    background-color: var(--primary-red-pale);
    color: var(--primary-red);
    padding-left: 25px;
}

.navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.main-btn{
    background-color: #ee2f42;
    color: white;
    font-family:var(--font-heading);
    padding: 10px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 2px solid transparent;
    font-weight: 600;
}

.main-btn:hover{
    background-color: white;
    border: 2px solid var(--primary-red-dark);
    transition-duration: 0.4s;
    color: #2c3e50;
}


/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    padding: 80px 0 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-badge {
    display: inline-block;
    background-color: var(--primary-red-pale);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    transition: all var(--transition-speed) ease;
    animation: fadeInDown 0.8s ease;
}

.category-badge:hover {
    background-color: var(--primary-red);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.car-showcase {
    position: relative;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.car-showcase img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: all var(--transition-speed) ease;
}

.car-showcase img:hover {
    transform: scale(1.02);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary-red {
    color: var(--primary-red) !important;
}

.bg-primary-red {
    background-color: var(--primary-red) !important;
}

.btn-primary-red {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all var(--transition-speed) ease;
}

.btn-primary-red:hover {
    background-color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets and Below (768px) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-collapse {
        padding: 20px 0;
    }
}

/* Mobile Devices (576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-section {
        padding: 50px 0 60px 0;
        min-height: auto;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-brand .logo-icon {
        width: 35px;
        height: 35px;
    }

    .category-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background-color: var(--primary-red);
    color: var(--text-white);
}

::-moz-selection {
    background-color: var(--primary-red);
    color: var(--text-white);
}

.popular-cars-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-red-pale);
    color: var(--primary-red);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
}

/* ============================================
   CAR CARD STYLES
   ============================================ */
.popular-cars-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-red-pale);
    color: var(--primary-red);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
}

/* ============================================
   CAR CARD STYLES
   ============================================ */
.car-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Car Image Container */
.car-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

/* Price Badge */
.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--bg-white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-badge .price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.price-badge .period {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Car Details Container */
.car-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Car Header (Name + Rating) */
.car-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.car-name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.car-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.car-rating i {
    color: var(--color-star);
    font-size: 1rem;
}

.car-rating span {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Car Specifications List */
.car-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.car-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.car-specs li:last-child {
    border-bottom: none;
}

.car-specs li i {
    color: var(--primary-red);
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.car-specs li span {
    flex: 1;
}

/* Rent Now Button */
.btn-rent {
    width: 100%;
    padding: 14px 24px;
    border: 2px solid var(--color-dark);
    background-color: transparent;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin-top: auto;
}

.btn-rent:hover {
    background-color: var(--color-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .car-image {
        height: 240px;
    }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
    .popular-cars-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-badge {
        font-size: 0.8125rem;
        padding: 6px 20px;
    }
    
    .car-image {
        height: 220px;
    }
    
    .car-name {
        font-size: 1.25rem;
    }
}

/* Extra Small Devices (< 576px) */
@media (max-width: 575px) {
    .popular-cars-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .car-details {
        padding: 20px;
    }
    
    .car-image {
        height: 200px;
    }
    
    .price-badge {
        padding: 10px 16px;
    }
    
    .price-badge .price {
        font-size: 1.25rem;
    }
    
    .car-specs li {
        font-size: 0.875rem;
    }
}

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ============================================
   MODAL STYLES
   ============================================ */

/* Modal Bottom Fade Animation */
.modal-bottom .modal-dialog {
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.modal-bottom.show .modal-dialog {
    transform: translateY(0);
}

/* Modal Content */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.modal-body {
    padding: 24px;
}

/* Modal Car Preview */
.modal-car-preview {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-light);
}

.modal-car-preview img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    margin-bottom: 16px;
}

.modal-car-preview h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.modal-specs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.modal-specs span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-specs i {
    color: var(--primary-red);
    font-size: 1rem;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0;
}

.modal-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Reservation Form */
.reservation-form .form-label {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.reservation-form .form-control {
    font-family: var(--font-body);
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.reservation-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 71, 87, 0.15);
    outline: none;
}

/* Modal Footer */
.modal-footer {
    border-top: 1px solid var(--border-light);
    padding: 20px 24px;
    gap: 12px;
}

.modal-footer .btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}

.modal-footer .btn-secondary {
    background-color: var(--bg-lighter);
    border: 2px solid var(--border-gray);
    color: var(--text-primary);
}

.modal-footer .btn-secondary:hover {
    background-color: var(--border-gray);
    border-color: var(--color-gray);
}

.btn-whatsapp {
    background-color: #25D366;
    border: 2px solid #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

/* Modal Backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Responsive Modal */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-car-preview h4 {
        font-size: 1.25rem;
    }
    
    .modal-specs {
        gap: 12px;
    }
    
    .modal-specs span {
        font-size: 0.8125rem;
    }
    
    .modal-price {
        font-size: 1.75rem;
    }
}

/* ============================================
   PRICE BREAKDOWN STYLES
   ============================================ */

.price-breakdown {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    border: 2px solid var(--border-light);
}

.breakdown-header {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breakdown-header i {
    color: var(--primary-red);
    font-size: 1.25rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
    font-family: var(--font-body);
}

.breakdown-row:last-of-type {
    border-bottom: none;
}

.breakdown-row span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.breakdown-row strong {
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 600;
}

.discount-row {
    color: var(--primary-red);
}

.discount-row span {
    color: var(--primary-red);
    font-weight: 600;
}

.discount-row strong {
    color: var(--primary-red);
}

.total-row {
    background-color: var(--color-dark);
    margin: 12px -20px -20px -20px;
    padding: 16px 20px;
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.total-row span {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.total-row strong {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.total-row .total-price {
    color: #FFD700;
}

/* Contract Notice */
.contract-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.contract-notice i {
    color: #ffc107;
    font-size: 1.125rem;
}

/* Discount Badge */
.discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.discount-badge i {
    font-size: 1.125rem;
}

/* Responsive Price Breakdown */
@media (max-width: 576px) {
    .price-breakdown {
        padding: 16px;
    }
    
    .breakdown-header {
        font-size: 1rem;
    }
    
    .breakdown-row {
        padding: 10px 0;
    }
    
    .breakdown-row span {
        font-size: 0.875rem;
    }
    
    .breakdown-row strong {
        font-size: 0.9375rem;
    }
    
    .total-row {
        margin: 12px -16px -16px -16px;
        padding: 14px 16px;
    }
    
    .total-row strong {
        font-size: 1.25rem;
    }
    
    .contract-notice {
        font-size: 0.8125rem;
        padding: 10px 12px;
    }
    
    .discount-badge {
        font-size: 0.875rem;
        padding: 10px 14px;
    }
}

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-red-pale);
    color: var(--primary-red);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PRICING TABLE
   ============================================ */

.pricing-table-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-table {
    margin: 0;
    font-family: var(--font-body);
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
}

.pricing-table thead th {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 24px 20px;
    border: none;
    text-align: center;
    vertical-align: middle;
}

.pricing-table thead th.car-column {
    text-align: left;
}

.season-column {
    min-width: 150px;
}

.season-column i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.season-column div {
    font-size: 1rem;
    margin-bottom: 4px;
}

.season-column small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
}

.highlight-season {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    position: relative;
}

.highlight-season::after {
    content: '🔥 HOT';
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Table Body */
.pricing-table tbody tr {
    transition: all var(--transition-speed) ease;
}

.pricing-table tbody tr:hover {
    background-color: var(--bg-light);
    transform: scale(1.01);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table tbody td {
    padding: 24px 20px;
    border-bottom: 1px solid var(--bg-lighter);
    vertical-align: middle;
}

.car-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-dark);
}

.car-name i {
    color: var(--primary-red);
    margin-right: 12px;
    font-size: 1.25rem;
}

.car-name span {
    display: block;
    margin-bottom: 6px;
}

.car-name small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-cell {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
}

.price-cell span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 4px;
}

.highlight-price {
    color: var(--primary-red);
    position: relative;
}

.highlight-price::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary-red-pale);
    border-radius: 12px;
    z-index: -1;
}

/* ============================================
   DISCOUNT CARDS
   ============================================ */

.discount-header {
    text-align: center;
    margin-bottom: 32px;
}

.discount-header i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 16px;
}

.discount-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.discount-header p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.discount-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--bg-lighter);
    position: relative;
    height: 100%;
}

.discount-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.discount-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
}

.discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-red);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.discount-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red-pale) 0%, var(--primary-red-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.discount-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.discount-percentage {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.discount-content p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   INFO SECTION
   ============================================ */

.info-section {
    margin-top: 60px;
}

.info-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid var(--primary-red);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-top: 4px;
}

.info-card h5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.info-card p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    border-radius: 20px;
}

.cta-section h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-section p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.4);
}

.btn-cta:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 71, 87, 0.6);
    color: var(--text-white);
}

.btn-cta i {
    font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .pricing-table thead th {
        padding: 20px 16px;
        font-size: 0.875rem;
    }

    .season-column i {
        font-size: 1.25rem;
    }

    .season-column div {
        font-size: 0.875rem;
    }

    .pricing-table tbody td {
        padding: 20px 16px;
    }

    .price-cell {
        font-size: 1.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .pricing-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .pricing-table-wrapper {
        border-radius: 12px;
    }

    .pricing-table thead th {
        padding: 16px 12px;
        font-size: 0.75rem;
    }

    .season-column {
        min-width: 100px;
    }

    .season-column i {
        font-size: 1rem;
    }

    .season-column div {
        font-size: 0.75rem;
    }

    .season-column small {
        font-size: 0.65rem;
    }

    .car-name {
        font-size: 1rem;
    }

    .car-name small {
        font-size: 0.75rem;
    }

    .price-cell {
        font-size: 1.25rem;
    }

    .price-cell span {
        font-size: 0.75rem;
    }

    .discount-header h3 {
        font-size: 1.5rem;
    }

    .discount-percentage {
        font-size: 2rem;
    }

    .cta-section {
        padding: 40px 24px;
    }

    .cta-section h3 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 14px 32px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .section-header {
        margin-bottom: 40px;
    }

    .pricing-table thead th {
        padding: 12px 8px;
    }

    .pricing-table tbody td {
        padding: 16px 8px;
    }

    .car-name i {
        display: none;
    }

    .info-card {
        flex-direction: column;
        padding: 24px;
    }

    .discount-icon {
        width: 60px;
        height: 60px;
    }

    .discount-icon i {
        font-size: 1.5rem;
    }
}

.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    margin-top: 5em;
}

.about-content .lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content .description-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.25rem;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--primary-red);
}

.floating-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-dark);
}

.floating-badge span {
    display: block;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-red);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Review Card */
.review-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-speed) ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #ffc107;
    font-size: 1.125rem;
}

.review-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-lighter);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red-pale) 0%, var(--primary-red-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-avatar i {
    font-size: 1.25rem;
    color: var(--primary-red);
}

.reviewer-details h5 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.reviewer-details span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Swiper Customization */
.swiper {
    padding: 20px 0 60px 0;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
    color: var(--primary-red);
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: var(--text-white);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-gray-light);
    opacity: 1;
    transition: all var(--transition-speed) ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-red);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   PRE-FOOTER SECTION
   ============================================ */

.prefooter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    text-align: center;
}

.prefooter-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.prefooter-content p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
}

.social-link.facebook:hover {
    background-color: var(--facebook);
    border-color: var(--facebook);
}

.social-link.instagram:hover {
    background-color: var(--instagram);
    border-color: var(--instagram);
}

.social-link.twitter:hover {
    background-color: var(--twitter);
    border-color: var(--twitter);
}

.social-link.linkedin:hover {
    background-color: var(--linkedin);
    border-color: var(--linkedin);
}

.social-link.whatsapp:hover {
    background-color: var(--whatsapp);
    border-color: var(--whatsapp);
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0 0;
}

.footer-widget {
    margin-bottom: 40px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 50%;
    height: 100px;
    width: 100px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo .logo-icon::before {
    content: '🚗';
    font-size: 1.2rem;
}

.footer-logo h4 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.footer-description {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: white;
}

/* Footer Contact */
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.footer-contact .contact-item i {
    color: var(--primary-red);
    font-size: 1.125rem;
    width: 20px;
}

/* Footer Title */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 8px;
}

/* Newsletter */
.newsletter-text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.newsletter-form .input-group {
    display: flex;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    font-family: var(--font-body);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    color: var(--text-white);
    outline: none;
    box-shadow: none;
}

.btn-subscribe {
    background-color: var(--primary-red);
    border: none;
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-subscribe:hover {
    background-color: var(--primary-red-dark);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .about-section,
    .reviews-section {
        padding: 80px 0;
    }

    .stats-container {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .floating-badge {
        bottom: 20px;
        left: 20px;
        padding: 16px 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-section,
    .reviews-section,
    .prefooter-section {
        padding: 60px 0;
    }

    .stats-container {
        gap: 20px;
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .floating-badge {
        position: static;
        margin-top: 20px;
    }

    .prefooter-content h3 {
        font-size: 2rem;
    }

    .social-links {
        gap: 16px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .footer {
        padding: 60px 0 0 0;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 16px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Extra Small */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .about-content .lead-text {
        font-size: 1.125rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .review-card {
        padding: 24px;
    }

    .prefooter-content h3 {
        font-size: 1.75rem;
    }

    .prefooter-content p {
        font-size: 1rem;
    }
}


.fleet-head{
   background-color: var(--bg-gradient-start);
    
    height: 25vh;
    display: flex;
    align-items: center;
}

/* ============================================
   FLEET CARDS
   ============================================ */

.fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fleet-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Car Image */
.fleet-car-image {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.fleet-card:hover .fleet-car-image img {
    transform: scale(1.05);
}

/* Car Details */
.fleet-car-details {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Car Info */
.car-info {
    margin-bottom: 24px;
}

.car-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.car-specs-inline {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.car-specs-inline span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.car-specs-inline i {
    color: var(--primary-red);
    font-size: 1.125rem;
}

/* ============================================
   PRICING TABLE COMPACT
   ============================================ */

.pricing-table-compact {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.pricing-header {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-header i {
    color: var(--primary-red);
    font-size: 1.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.price-item {
    background: var(--bg-white);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--bg-lighter);
    transition: all var(--transition-speed) ease;
}

.price-item:hover {
    border-color: var(--primary-red-light);
    transform: translateY(-2px);
}

.price-item.highlight {
    background: linear-gradient(135deg, var(--primary-red-pale) 0%, var(--bg-white) 100%);
    border-color: var(--primary-red);
}

.price-item .period {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-item .price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-dark);
}

.price-item.highlight .price {
    color: var(--primary-red);
}

/* ============================================
   RESERVE BUTTON
   ============================================ */

.btn-reserve {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--primary-red);
    color: var(--text-white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.3);
    margin-top: auto;
}

.btn-reserve:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.5);
}

.btn-reserve i {
    font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets and Below */
@media (max-width: 991px) {
    .fleet-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .fleet-car-image {
        min-height: 400px;
        height:400px;
    }

    .fleet-car-details {
        padding: 24px;
    }

    .car-title {
        font-size: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .fleet-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .fleet-grid {
        gap: 24px;
    }

    .fleet-card {
        border-radius: 12px;
    }

    .fleet-car-image {
        min-height: 400px;
         height:400px;
    }

    .fleet-car-details {
        padding: 20px;
    }

    .car-title {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }

    .car-specs-inline {
        gap: 16px;
    }

    .car-specs-inline span {
        font-size: 0.875rem;
    }

    .pricing-table-compact {
        padding: 16px;
    }

    .pricing-header {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .price-item {
        padding: 10px 12px;
    }

    .price-item .price {
        font-size: 1.25rem;
    }

    .btn-reserve {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .car-specs-inline {
        flex-direction: column;
        gap: 8px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-item .period {
        font-size: 0.75rem;
    }

    .price-item .price {
        font-size: 1.125rem;
    }
}

/* ============================================
   MODAL STYLES (from home page)
   ============================================ */

.modal-bottom .modal-dialog {
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.modal-bottom.show .modal-dialog {
    transform: translateY(0);
}

.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid var(--bg-lighter);
    padding: 20px 24px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.modal-body {
    padding: 24px;
}

.modal-car-preview {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--bg-lighter);
}

.modal-car-preview img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 16px;
}

.modal-car-preview h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.modal-specs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.modal-specs span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-specs i {
    color: var(--primary-red);
    font-size: 1rem;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0;
}

.modal-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.reservation-form .form-label {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.reservation-form .form-control {
    font-family: var(--font-body);
    padding: 12px 16px;
    border: 2px solid var(--bg-lighter);
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.reservation-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 71, 87, 0.15);
    outline: none;
}

.modal-footer {
    border-top: 1px solid var(--bg-lighter);
    padding: 20px 24px;
    gap: 12px;
}

.modal-footer .btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}

.modal-footer .btn-secondary {
    background-color: var(--bg-lighter);
    border: 2px solid var(--bg-lighter);
    color: var(--text-primary);
}

.modal-footer .btn-secondary:hover {
    background-color: var(--color-gray-light);
    border-color: var(--color-gray-light);
}

.btn-whatsapp {
    background-color: #25D366;
    border: 2px solid #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

/* Price Breakdown */
.price-breakdown {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    border: 2px solid var(--bg-lighter);
}

.breakdown-header {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breakdown-header i {
    color: var(--primary-red);
    font-size: 1.25rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-lighter);
    font-family: var(--font-body);
}

.breakdown-row:last-of-type {
    border-bottom: none;
}

.breakdown-row span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.breakdown-row strong {
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 600;
}

.discount-row {
    color: var(--primary-red);
}

.discount-row span {
    color: var(--primary-red);
    font-weight: 600;
}

.discount-row strong {
    color: var(--primary-red);
}

.total-row {
    background-color: var(--color-dark);
    margin: 12px -20px -20px -20px;
    padding: 16px 20px;
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.total-row span {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.total-row strong {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.total-row .total-price {
    color: #FFD700;
}

.contract-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.contract-notice i {
    color: #ffc107;
    font-size: 1.125rem;
}

.discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.discount-badge i {
    font-size: 1.125rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 0;
    
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-red-pale);
    color: var(--primary-red);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   CONTACT INFO WRAPPER
   ============================================ */

.contact-info-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.info-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================
   CONTACT CARDS
   ============================================ */

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: 12px;
    border: 2px solid var(--bg-lighter);
    transition: all var(--transition-speed) ease;
}

.contact-card:hover {
    border-color: var(--primary-red-light);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.1);
}

.contact-card.whatsapp-card:hover {
    border-color: var(--whatsapp);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.whatsapp-card .card-icon {
    background: rgb(8, 158, 88);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.card-content p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.link-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
}

.link-text:hover {
    color: var(--primary-red-dark);
    gap: 12px;
}

.link-text i {
    font-size: 0.875rem;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */

.social-section {
    padding-top: 32px;
    border-top: 2px solid var(--bg-lighter);
}

.social-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.social-section p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 1.25rem;
}

.social-btn.instagram {
    background: linear-gradient(135deg, var(--instagram) 0%, #c13584 100%);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #128c7e 100%);
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MAP WRAPPER
   ============================================ */

.map-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.map-container {
    flex-grow: 1;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

/* ============================================
   QUICK INFO BOX
   ============================================ */

.quick-info-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: 12px;
}

.quick-info-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 40px;
    text-align: center;
}

.quick-info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.quick-info-item span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    margin-top: 60px;
}

.feature-box {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 16px;
}

.feature-box h5 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.feature-box p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   CTA BOX
   ============================================ */

.cta-box {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.cta-box p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.4);
}

.btn-cta:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 71, 87, 0.6);
    color: var(--text-white);
}

.btn-cta i {
    font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .contact-info-wrapper,
    .map-wrapper {
        padding: 32px;
    }

    .info-title,
    .map-title {
        font-size: 1.75rem;
    }

    .map-container {
        min-height: 350px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-info-wrapper,
    .map-wrapper {
        padding: 24px;
        margin-bottom: 24px;
    }

    .info-title,
    .map-title {
        font-size: 1.5rem;
    }

    .contact-card {
        flex-direction: row;
        padding: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.25rem;
    }

    .map-container {
        min-height: 300px;
    }

    .social-links-contact {
        flex-direction: column;
    }

    .social-btn {
        justify-content: center;
        width: 100%;
    }

    .cta-box {
        padding: 32px 24px;
        text-align: center;
    }

    .cta-box h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .cta-box p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 14px 32px;
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .features-section {
        margin-top: 40px;
    }

    .feature-box {
        padding: 24px 20px;
        margin-bottom: 16px;
    }

    .quick-info-item {
        flex-direction: column;
        text-align: center;
    }
}