/* ============================================
   CarUp Rental - Main Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a5276;
    --primary-green: #27ae60;
    --light-green: #2ecc71;
    --dark-green: #1e8449;
    --teal: #48c9b0;
    --white: #ffffff;
    --light-bg: #f8fffe;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


.seo-blog-link {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.seo-blog-link:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list li:not(:last-child)::after {
    content: '·';
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero Section - Clean 3D
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    height: 70vh;
    max-height: 650px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 0;
}

.hero-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: 0;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 20%, rgba(0,0,0,0.1) 50%),
        linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.6) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 40px 0 20px;
}

@keyframes carSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text {
    text-align: center;
    padding-bottom: 40px;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: textSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8), 2px 2px 2px rgba(255,255,255,0.4);
}

.hero-text .highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 30px;
    /* text-shadow: 1px 1px 4px rgba(255,255,255,0.8), 0 0 8px rgba(255,255,255,0.4); */
    animation: textSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.btn-reserve-hero {
    animation: textSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-reserve-hero {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 42px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.btn-reserve-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

/* ========================= Blog */

.blog {
    position: relative;
    padding: 15px 0 100px;
    margin-top: -20px;
    background: var(--white);
    overflow: hidden;
    z-index: 1;
}

.blog-grid {
    position: relative;
    z-index: 1;
}

/* ============================================
   Fleet Section
   ============================================ */
.fleet {
    position: relative;
    padding: 15px 0 100px;
    margin-top: -20px;
    background: var(--white);
    overflow: hidden;
    z-index: 1;
}

.fleet-header {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Fleet background wave - S-curve swoosh */
.fleet-bg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.fleet-bg-wave svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.car-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.car-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.car-image {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.seo-content {
    padding: 40px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.seo-content p {
    margin-bottom: 15px;
}

.car-image img {
    max-height: 240px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.08);
}

.car-info {
    padding: 20px;
}

.car-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.car-specs {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.car-price {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.car-price i {
    color: var(--primary-green);
    margin-right: 5px;
}

.car-price strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.btn-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--dark-green), #166534);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

/* ============================================
   WhatsApp Banner Section
   ============================================ */
.whatsapp-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.banner-card {
    background: linear-gradient(135deg, #1a5276 0%, #1e8449 50%, #27ae60 100%);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(26, 82, 118, 0.3);
    overflow: hidden;
    position: relative;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.banner-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.banner-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
}

.banner-icon-chat {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon-chat i {
    font-size: 1.8rem;
    color: var(--white);
}

.banner-text-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 15px;
}

.btn-reserve-now {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.btn-reserve-now:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 50%;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 25px;
}

.banner-whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.banner-whatsapp-icon i {
    font-size: 2rem;
    color: var(--white);
}

.banner-chat-text {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 12px;
}

.banner-chat-text strong {
    font-weight: 700;
}

.banner-features {
    display: flex;
    gap: 20px;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.banner-feature i {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* ============================================
   Rental Conditions Section
   ============================================ */
.conditions {
    padding: 80px 0;
    background: var(--light-bg);
}

.conditions .section-title {
    text-align: center;
    display: block;
    margin-bottom: 50px;
}

.conditions .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.condition-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.condition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.condition-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.condition-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.condition-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about .section-title {
    text-align: center;
    display: block;
    margin-bottom: 40px;
}

.about .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact .section-title {
    text-align: center;
    display: block;
    margin-bottom: 50px;
}

.contact .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-logo {
    width: 130px;
    height: 55px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-green);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
}

/* ============================================
   Animations
   ============================================ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .banner-card {
        flex-direction: column;
        padding: 30px;
    }

    .banner-left, .banner-right {
        flex: 1;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Amazing Mobile Navbar */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(26, 82, 118, 0.97), rgba(30, 132, 73, 0.95));
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 999;
        display: flex;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-list.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-list.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-list.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-list.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-list.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-list li:not(:last-child)::after {
        display: none;
    }

    .nav-link {
        color: #000;
        font-size: 1.15rem;
        font-weight: 600;
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        letter-spacing: 0.5px;
    }

    .nav-link::after {
        background: #ffffff;
    }

    .nav-link:hover {
        color: #2ecc71;
    }

    /* Mobile nav overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 998;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hamburger */
    .hamburger {
        display: flex;
        z-index: 1001;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hamburger span {
        position: absolute;
        width: 24px;
        height: 2.5px;
        background: var(--text-dark);
        border-radius: 3px;
        transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-7px);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(7px);
    }

    .hamburger.active span {
        background: #ffffff;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Hero Mobile Layout */
    .hero {
        min-height: 85vh;
        height: auto;
        max-height: none;
        align-items: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px 60px;
        align-items: center;
        justify-content: center;
    }

    .hero-text {
        flex: none;
        max-width: 100%;
        text-align: center;
        order: 2;
        padding-bottom: 10px;
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .btn-reserve-hero {
        padding: 14px 36px;
        font-size: 1rem;
    }

    /* Fleet Mobile */
    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .car-image {
        height: 160px;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .banner-features {
        flex-direction: column;
        gap: 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .banner-text-left h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 75vh;
    }

    .hero-content {
        padding: 75px 15px 40px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-reserve-hero {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .fleet-grid {
        max-width: 100%;
    }

    .banner-card {
        padding: 25px 20px;
    }

    .banner-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-right {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.6rem;
    }
}
