:root {
    /* Colors - Clean White Theme */
    --bg-color: #ffffff;
    --surface-color: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --accent-color: #8CC63F;
    /* Cadigor Green */
    --accent-hover: #76A935;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --container-padding: 2rem;
    --max-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-full {
    width: 100%;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header / Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.desktop-nav a:hover,
.desktop-nav .active {
    color: white;
    opacity: 0.8;
}

.btn-nav {
    background: var(--accent-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(140, 198, 63, 0.15) 0%, rgba(140, 198, 63, 0.08) 100%),
        url('hero_background.png') center/cover no-repeat;
    padding: 120px 0 80px;
    margin-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.65));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--surface-color);
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fleet-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-category {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.card-features span {
    background: var(--surface-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.card-price .price {
    color: var(--accent-color);
}

/* Services Section */
.services-section {
    background: var(--surface-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(140, 198, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    max-width: 550px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem 0 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    background: var(--surface-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item .label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item .value {
    color: var(--text-secondary);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.1);
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #e5e5e5;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.footer-contact {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.footer-contact-item .icon {
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
}

.footer-social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    /* Remove fill: currentColor to let SVG define itself or inherit specifically */
}

/* Facebook uses fill */
.footer-social-icon[aria-label="Facebook"] svg {
    fill: currentColor;
}

/* Instagram uses stroke */
.footer-social-icon[aria-label="Instagram"] svg {
    stroke: currentColor;
    fill: none;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
}

list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0a0a0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

input,
select,
textarea {
    width: 100%;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 1rem;
    color: white;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #a0a0a0;
}

input[type="date"],
input[type="datetime-local"] {
    cursor: pointer;
}

input[type="date"],
input[type="datetime-local"] {
    cursor: pointer;
}

/* Fleet Page Specific */
.fleet-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.fleet-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.fleet-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.fleet-filters {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.fleet-section {
    min-height: 400px;
    padding: 60px 0;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.spec-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .about-container,
    .contact-container,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .card-specs {
        grid-template-columns: 1fr;
    }

    .fleet-hero h1 {
        font-size: 2rem;
    }
}

/* Vehicle Detail Page (VDP) Styles */
.vdp-main {
    margin-top: var(--header-height);
    background: #fff;
}

.vdp-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.vdp-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.vdp-image-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    transition: all 0.2s ease;
    z-index: 5;
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-main:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--accent-color);
    color: white;
}

.gallery-nav.prev {
    left: 1rem;
}

.gallery-nav.next {
    right: 1rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) #f0f0f0;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.thumb {
    flex: 0 0 120px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

.thumb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.thumb.active {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.vdp-title-container h1 {
    font-size: 3.5rem;
    margin: 0.5rem 0 1.5rem;
}

.vdp-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vdp-price .price {
    color: var(--accent-color);
}

.vdp-quick-specs {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.vdp-cta {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* VDP Details Grid */
.vdp-details-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: -40px;
}

.vdp-specs-card,
.vdp-marketing-card,
.vdp-advantages-card,
.vdp-help-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.vdp-specs-card h2,
.vdp-marketing-card h2,
.vdp-advantages-card h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.specs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.specs-list li {
    font-size: 1.05rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.specs-list li strong {
    color: var(--text-primary);
    width: 200px;
    display: inline-block;
}

.vdp-marketing-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Advantages List */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.advantages-list .icon {
    width: 40px;
    height: 40px;
    background: rgba(140, 198, 63, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.vdp-help-card {
    background: var(--text-primary);
    color: white;
    text-align: center;
}

.vdp-help-card h3 {
    color: white;
}

.vdp-help-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* Responsive VDP */
@media (max-width: 992px) {

    .vdp-hero-container,
    .vdp-details-grid {
        grid-template-columns: 1fr;
    }

    .vdp-hero {
        text-align: center;
    }

    .vdp-title-container h1 {
        font-size: 2.5rem;
    }

    .vdp-details-grid {
        margin-top: 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding-top: 50px;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalScale 0.3s ease;
}

@keyframes modalScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-secondary);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.addons-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.checkbox-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.price-summary {
    background: var(--text-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.total-price span {
    color: var(--accent-color);
}

.price-banner {
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #FFF;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Customer Reviews Section */
.reviews-section {
    background: #fdfdfd;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-content {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.review-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.review-info span {
    font-size: 0.85rem;
    color: #999;
}

/* Vehicle Detail Specific Reviews */
.vdp-reviews-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Airport Transfers Page */
.transfers-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content-transfer {
    width: 100%;
}

.hero-content-transfer h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
}

.transfer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.selling-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.point-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.point-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.point-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.point-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hybrid-deal-banner {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a1a1a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hybrid-deal-banner::after {
    content: 'SALE';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-color);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.deal-icon {
    font-size: 3.5rem;
}

.deal-text h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.deal-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.deal-text strong {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.price-display-banner {
    background: #f8f9fa;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.booking-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.booking-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .transfer-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .transfers-hero {
        height: 30vh;
    }

    .hero-content-transfer h1 {
        font-size: 2.5rem;
    }

    .hybrid-deal-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* FAQ Active State */
.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.faq-item.active .faq-question {
    background: #fff;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Large enough to fit content */
    border-top: 1px solid #f0f0f0;
}

/* Home Page Search Widget */
.search-widget-container {
    margin-top: 3rem;
    width: 100%;
    max-width: 900px;
    z-index: 10;
}

.search-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.5rem;
    align-items: flex-end;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-group input {
    padding: 0.85rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fdfdfd;
}

.search-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-submit {
    height: 52px;
    padding: 0 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Fleet Change Dates Bar */
.fleet-date-bar {
    background: #1a1a1a;
    color: white;
    padding: 1.25rem 0;
    position: sticky;
    top: 80px;
    z-index: 90;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.date-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-dates-display {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.date-display-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.date-display-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.date-display-item strong {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.btn-change-dates {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-change-dates:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .search-form {
        grid-template-columns: 1fr 1fr;
    }

    .search-submit {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
    }

    .search-submit {
        grid-column: span 1;
    }

    .date-bar-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .current-dates-display {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* Price Stack for Dynamic Pricing */
.price-stack {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.total-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-per-day {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Reveal on Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Grid Items using reveal-stagger class */
.reveal-stagger>.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger>.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger>.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger>.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger>.reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger>.reveal:nth-child(6) {
    transition-delay: 0.6s;
}

/* Scale Reveal Variation */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale.reveal-active {
    opacity: 1;
    transform: scale(1);
}

/* Skeleton Loaders */
.skeleton {
    background: #2a2a2a;
    background: linear-gradient(90deg, #2a2a2a 25%, #333 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton-card {
    height: 450px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-image {
    width: 100%;
    height: 220px;
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-title {
    height: 24px;
    width: 70%;
    margin-bottom: 1rem;
}

.skeleton-text {
    height: 14px;
    width: 100%;
    margin-bottom: 0.5rem;
}

.skeleton-button {
    height: 48px;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 30px;
}

/* Legal Pages Styling */
.legal-main {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--bg-primary);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #111;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-left: 4px solid var(--primary-accent);
    padding-left: 1rem;
}

.legal-section p,
.legal-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    border-top: 1px solid var(--accent-color);
    padding: 1.5rem;
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: #e5e5e5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-cookie-accept:hover {
    background-color: #cda434;
}

.btn-cookie-decline {
    background-color: transparent;
    color: #999;
    border: 1px solid #444;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-cookie-decline:hover {
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}