* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FAF7F3;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 247, 243, 0.95) !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(45deg, #5E936C, #DCC5B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color:#333 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color:#5E936C !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #5E936C, #DCC5B2);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #5E936C, #DCC5B2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Cars Section */
.cars-section {
    padding: 5rem 0;
    background: #FAF7F3;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #5E936C;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.car-card {
    background: #FAF7F3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.car-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image {
    transform: scale(1.05);
}

.car-info {
    padding: 2rem;
}

.car-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.car-price {
    font-size: 2rem;
    font-weight: bold;
    color: #5E936C;
    margin-bottom: 1rem;
}

.car-features {
    list-style: none;
    margin-bottom: 2rem;
}

.car-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F0E4D3;
    display: flex;
    align-items: center;
}

.car-features li:before {
    content: '✓';
    color: #DCC5B2;
    font-weight: bold;
    margin-right: 0.5rem;
}

.rent-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #5E936C, #DCC5B2);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rent-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Discount Section */
.discount-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #5E936C, #DCC5B2);
    color: #fff;
    text-align: center;
}

.discount-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 600px;
    border: 1px solid rgba(255,255,255,0.2);
}

.discount-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.discount-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.discount-highlight {
    font-size: 3rem;
    font-weight: bold;
    color: #F0E4D3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #DCC5B2;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #DCC5B2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem;
    background: #DCC5B2;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #5E936C;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Rental Calculator */
.calculator {
    background: #F0E4D3;
    padding: 3rem 0;
}

.calc-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FAF7F3;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calc-form {
    display: grid;
    gap: 1rem;
}

.calc-form select, .calc-form input {
    padding: 1rem;
    border: 2px solid #F0E4D3;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.calc-form select:focus, .calc-form input:focus {
    outline: none;
    border-color: #DCC5B2;
}

.calc-result {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(45deg, #5E936C, #DCC5B2);
    color: #fff;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.calc-result.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* WhatsApp Button Styles */
.whatsapp-rent-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
}
.whatsapp-rent-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #1fba5a;
}

.whatsapp-chat-btn{
    display: inline-block;
    width: 100%;
    padding: 0.8rem;
    background: #25D366;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-chat-btn:hover{
    background: #128C7E;
    transform: translateY(-2px);
}

/* Slider Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-arrow:hover {
    background: rgba(0,0,0,0.8);
}

.left-arrow {
    left: 30px;
}

.right-arrow {
    right: 30px;
}

/* WhatsApp Floating Button with Text */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float-text {
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 30px 0 0 30px;
    font-weight: bold;
    font-size: 14px;
    margin-right: -10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-float-container:hover .whatsapp-float-text {
    transform: translateX(0);
    opacity: 1;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
}

@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-text {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* Articles Section */
.articles-section {
    padding: 5rem 0;
    background: #F0E4D3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: #FAF7F3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.article-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #5E936C, #DCC5B2);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.article-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

.article-tag {
    background: #F0E4D3;
    padding: 3px 8px;
    border-radius: 10px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: fadeInUp 0.5s;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    color: #333;
}

/* Article Content Styles */
.article-full {
    line-height: 1.8;
}

.article-full img {
    width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
}

.article-full h2 {
    color: #5E936C;
    margin: 2rem 0 1rem;
}

.article-full p {
    margin-bottom: 1rem;
}

.article-full ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

/* Mobile Optimization for Articles */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem 1.5rem;
    }
}
/* Modern Cars Grid */
.cars-grid-modern {
    max-width: 1400px;
    margin: 0 auto;
}

.fleet-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #5E936C, #DCC5B2);
    border-radius: 2px;
}

.cars-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Modern Car Cards */
.car-card-modern {
    background: #FAF7F3;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(217, 162, 153, 0.2);
}

.car-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.car-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.car-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 25px 25px 0 0;
}

.car-card-modern:hover .car-image-modern {
    transform: scale(1.1);
}

/* Brand Logo Overlay */
.brand-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 10px;
    background: rgba(255,255,255,0.95);
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,1);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Modern Car Info */
.car-info-modern {
    padding: 2rem;
    text-align: center;
}

.car-name-modern {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-features-modern {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.car-features-modern li {
    padding: 0.8rem;
    background: linear-gradient(135deg, #F0E4D3, #DCC5B2);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    text-align: center;
    transition: all 0.3s ease;
}

.car-features-modern li:hover {
    background: linear-gradient(135deg, #5E936C, #DCC5B2);
    color: white;
    transform: translateY(-2px);
}

/* Modern WhatsApp Button */
.whatsapp-chat-btn-modern {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.whatsapp-chat-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.whatsapp-chat-btn-modern:hover::before {
    left: 100%;
}

.whatsapp-chat-btn-modern:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Trending Section */
.trending-section {
    background: linear-gradient(135deg, #F0E4D3, #DCC5B2);
    padding: 3rem;
    border-radius: 30px;
    margin-top: 4rem;
}

.trending-title {
    color: #5E936C;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.trending-cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Trending Car Cards */
.trending-car-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.trending-car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.trending-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.trending-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trending-car-card:hover .trending-car-image {
    transform: scale(1.05);
}

.brand-logo-trending {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.logo-img-small {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #5E936C, #DCC5B2);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-car-info {
    padding: 1.5rem;
    text-align: center;
}

.trending-car-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.trending-car-info p {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cars-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trending-cars-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .trending-title {
        font-size: 2.2rem;
    }
    
    .car-features-modern {
        grid-template-columns: 1fr;
    }
    
    .trending-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .car-card-modern {
        border-radius: 20px;
    }
    
    .car-image-container {
        height: 220px;
    }
    
    .trending-image-container {
        height: 150px;
    }
    
    .brand-logo {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 15px;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
}



/* Enhanced View More Card */
.view-more-card {
    background: linear-gradient(135deg, #5E936C, #DCC5B2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border: 2px dashed rgba(255,255,255,0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.view-more-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.view-more-card:hover::before {
    left: 100%;
}

.view-more-card:hover {
    background: linear-gradient(135deg, #DCC5B2, #F0E4D3);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(217, 162, 153, 0.3);
}

.view-more-container {
    text-align: center;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.view-more-icon {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.view-more-card:hover .view-more-icon {
    color: white;
    transform: scale(1.1) rotate(90deg);
}

.view-more-container h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more-container p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.car-count {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.view-more-card:hover .car-count {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.whatsapp-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-more-card:hover .whatsapp-indicator {
    color: #25D366;
    transform: scale(1.05);
}

.whatsapp-indicator svg {
    transition: all 0.3s ease;
}

.view-more-card:hover .whatsapp-indicator svg {
    transform: scale(1.2);
}




















/* Option 4: Animated Letters */
.drive-in-style-v4 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.drive-in-style-v4 span {
    display: inline-block;
    color: #5E936C;
    animation: letterBounce 2s infinite;
    transition: all 0.3s ease;
}

.drive-in-style-v4 span:nth-child(odd) {
    animation-delay: 0.1s;
}

.drive-in-style-v4 span:nth-child(even) {
    animation-delay: 0.2s;
    color: #819067;
}

.drive-in-style-v4:hover span {
    color: #F0E4D3;
    text-shadow: 0 0 10px rgba(198, 233, 187, 0.8);
    transform: scale(1.1);
}

@keyframes letterBounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-4px); }
}




















/* Discount Banner Styles */
.discount-banner {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    animation: bounceIn 1s ease-out, pulse 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.discount-banner:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.discount-icon {
    font-size: 1.5rem;
    animation: rotate 2s linear infinite;
}

.discount-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.discount-percentage {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 900;
    text-align: center;
    backdrop-filter: blur(10px);
}

.discount-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.close-banner {
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-banner:hover {
    opacity: 1;
}

@keyframes bounceIn {
    0% { transform: translateX(-50%) scale(0); opacity: 0; }
    50% { transform: translateX(-50%) scale(1.1); }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .discount-banner {
        padding: 12px 20px;
        top: 70px;
        left: 10px;
        right: 10px;
        transform: none;
        width: calc(100% - 20px);
    }
    
    .discount-banner:hover {
        transform: scale(1.02);
    }
    
    .discount-text {
        font-size: 0.8rem;
    }
}