/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #e31837;
    --accent-color: #ff2d4d;
    --text-color: #f0f0f0;
    --text-light: #a0a0a0;
    --bg-color: #0d0d0d;
    --bg-light: #151515;
    --bg-card: #1a1a1a;
    --border-color: #2a2a2a;
    --shadow: 0 2px 15px rgba(227, 24, 55, 0.15);
    --shadow-lg: 0 5px 30px rgba(227, 24, 55, 0.25);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-red: linear-gradient(135deg, #e31837 0%, #ff2d4d 100%);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none !important;
}

.whatsapp-btn i.fab.fa-whatsapp {
    font-size: 40px !important;
    color: white !important;
    line-height: 1;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top: 2px solid var(--secondary-color);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner-text h3 i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.cookie-banner-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-banner-text a:hover {
    color: var(--accent-color);
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 24, 55, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.cookie-btn-decline:hover {
    border-color: var(--text-light);
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cookie-btn-settings:hover {
    background: var(--secondary-color);
    color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.cookie-modal-close:hover {
    color: var(--secondary-color);
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
    padding-right: 20px;
}

.cookie-option-info h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.cookie-option-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gradient-red);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cookie-modal-content {
        max-height: 90vh;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

/* Navigation */
.navbar {
    background: var(--bg-color);
    box-shadow: 0 1px 0 rgba(227, 24, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.navbar-accent {
    display: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-cta {
    background: var(--secondary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-cta:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    max-width: 350px;
    margin: -25px 0;
}

.logo-text {
    margin-left: 10px;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
}

.lang-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.lang-btn.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.lang-btn .fi {
    font-size: 1.2rem;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none !important;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s;
}

/* Hero Section with Slideshow */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-image: url('images/1920x1080-bmw-olutqd2j9v4jugb3.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.indicator.active {
    background: var(--secondary-color);
    border-color: white;
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-buttons .btn-sell,
.hero-buttons .btn-sell:link,
.hero-buttons .btn-sell:visited {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-color: #27ae60;
    color: white !important;
}

.hero-buttons .btn-sell:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--bg-card);
    color: white;
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 2rem 0;
    justify-items: center;
}

.car-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: block;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.car-image {
    height: 160px;
    background: var(--bg-light);
    display: block;
    position: relative;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-placeholder {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.car-info {
    padding: 1rem;
}

.car-info h3 {
    margin-bottom: 0.4rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* When car-card is a link */
a.car-card {
    color: inherit;
}

a.car-card .car-info h3,
a.car-card .car-info p,
a.car-card .car-specs-mini span {
    color: inherit;
}

a.car-card .car-info h3 {
    color: var(--text-color);
}

a.car-card .car-specs-mini span {
    color: var(--text-light);
}

a.car-card .car-price {
    color: var(--secondary-color);
}

.car-year {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Car Specs Mini */
.car-specs-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.car-specs-mini span {
    font-size: 0.7rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.car-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

/* Car Viewing Indicator */
.car-viewing {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.viewing-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.viewing-count {
    font-weight: 600;
    color: #22c55e;
}

.car-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Featured Cars */
.featured-cars {
    padding: 4rem 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-color);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0508 0%, #2a0a10 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e31837' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== BRANDS GRID ===== */
.brands-grid-section {
    background: var(--bg-light);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-grid-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 250px;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(227, 24, 55, 0.3);
    background: var(--bg-light);
}

.brand-logo-wrapper {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.brand-logo-text {
    color: #ffffff !important;
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    filter: none !important;
}

.brand-card:hover .brand-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(227, 24, 55, 0.6));
    transform: scale(1.1);
}

.brand-card:hover .brand-logo-text {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(227, 24, 55, 0.8), 0 0 30px rgba(227, 24, 55, 0.6);
    color: #ffffff !important;
    filter: none !important;
}

.brand-logo-fallback {
    filter: brightness(0) invert(1);
}

.brand-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    transition: all 0.4s ease;
    text-align: center;
}

.brand-card:hover h4 {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(227, 24, 55, 0.4);
}

@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .brands-grid-section {
        padding: 2.5rem 0;
    }
    
    .brands-grid-title {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .brand-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .brand-logo-wrapper {
        height: 120px;
    }
    
    .brand-card h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brand-card {
        min-height: 180px;
    }
    
    .brand-logo-wrapper {
        height: 100px;
    }
    
    .brand-card h4 {
        font-size: 1rem;
    }
}

/* ===== BRAND SHOWCASE SECTION ===== */
.brand-showcase {
    padding: 60px 0;
    background: var(--bg-dark);
}

.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brand-showcase-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/2;
    text-decoration: none;
    display: block;
}

.brand-showcase-card.brand-showcase-wide {
    grid-column: span 2;
}

.brand-showcase-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.brand-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-showcase-card:hover .brand-showcase-image img {
    transform: scale(1.1);
}

.brand-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.brand-showcase-card:hover .brand-showcase-overlay {
    background: linear-gradient(to top, rgba(200,55,55,0.9) 0%, rgba(200,55,55,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

.brand-showcase-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.brand-showcase-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin: 0;
}

@media (max-width: 992px) {
    .brand-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-showcase-card.brand-showcase-wide {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .brand-showcase {
        padding: 40px 0;
    }
    
    .brand-showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .brand-showcase-card.brand-showcase-wide {
        grid-column: span 2;
    }
    
    .brand-showcase-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-showcase-overlay h3 {
        font-size: 1.1rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(227, 24, 55, 0.03) 100%);
    pointer-events: none;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-content .btn {
    margin-top: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .about-wrapper {
        gap: 3rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-number::after {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0508 50%, #2a0a10 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Filters */
.filters-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background: var(--bg-card);
    color: var(--text-color);
    cursor: pointer;
    flex: 1;
    min-width: 150px;
    transition: border-color 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Cars Listing */
.cars-listing {
    padding: 3rem 0;
}

.cars-grid-large {
    display: grid;
    gap: 2rem;
}

.car-card-large {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.car-card-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.car-image-large {
    height: 300px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.car-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card-large:hover .car-image-large img {
    transform: scale(1.05);
}

/* Car Image Gallery Styles */
.car-gallery {
    position: relative;
}

.car-gallery .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.car-gallery .gallery-image.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.car-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.gallery-dot:hover {
    background: white;
}

.car-placeholder-large {
    font-size: 6rem;
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.car-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.car-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.car-specs span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.car-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-price-large {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.whatsapp-contact {
    margin-top: 2rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-light);
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.map-placeholder {
    height: 400px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.map-placeholder p {
    font-size: 1.5rem;
    color: var(--text-light);
}

.map-note {
    font-size: 1rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-light) 0%, #0a0a0a 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--secondary-color);
}

.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: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
    text-decoration: none !important;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-icon-svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-section a[href^="tel:"],
.footer-section a[href^="mailto:"] {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.footer-section a[href^="tel:"]:hover,
.footer-section a[href^="mailto:"]:hover {
    color: white !important;
    text-decoration: none !important;
}

/* Contact page links */
.contact-info a[href^="tel:"],
.contact-info a[href^="mailto:"] {
    color: var(--text-light) !important;
}

.contact-info a[href^="tel:"]:hover,
.contact-info a[href^="mailto:"]:hover {
    color: var(--secondary-color) !important;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 5px;
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.social-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link i {
    font-size: 1.25rem;
}

.contact-info-item i {
    margin-right: 0.5rem;
    width: 18px;
    text-align: center;
}

.contact-icon {
    color: var(--secondary-color);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

.contact-item .social-links {
    margin-top: 0.5rem;
}

.contact-item .social-link {
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-card);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item .social-link:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: var(--bg-light);
    text-decoration: none !important;
}

.contact-item a {
    text-decoration: none !important;
    color: var(--text-color);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: none !important;
}

/* Global link styles - black text */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Contact Buttons */
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-phone {
    background: #25D366;
    color: white !important;
}

.btn-phone:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: var(--secondary-color);
    color: white !important;
}

.btn-email:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* Social Buttons */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    color: white !important;
    transition: all 0.3s;
}

.btn-social i {
    font-size: 1.1rem;
}

.btn-tiktok {
    background: #000000;
}

.btn-tiktok:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-facebook {
    background: #1877F2;
}

.btn-facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
    }
    
    .btn-social,
    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cars-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0.75rem 0;
    }
    
    .btn-cta {
        display: none;
    }

    .logo img {
        height: 110px;
        max-width: 280px;
        margin: -15px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .language-selector {
        margin-left: 1rem;
        gap: 0.25rem;
    }

    .lang-btn {
        padding: 0.4rem 0.5rem;
    }

    .lang-btn .fi {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        z-index: 99;
        border-bottom: 2px solid var(--secondary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .hero {
        height: 400px;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .car-card-large {
        grid-template-columns: 1fr;
    }

    .car-image-large {
        height: 200px;
    }

    .car-details {
        padding: 1.5rem;
    }

    .car-details h3 {
        font-size: 1.25rem;
    }

    .car-specs {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .car-price-large {
        font-size: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .filters {
        flex-direction: column;
        gap: 0.75rem;
    }

    .filter-select {
        width: 100%;
    }

    .cars-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .cars-grid .car-card {
        max-width: 100%;
    }

    .car-image {
        height: 120px;
    }
    
    .car-info {
        padding: 0.75rem;
    }
    
    .car-info h3 {
        font-size: 0.85rem;
    }
    
    .car-specs-mini span {
        font-size: 0.65rem;
        padding: 0.15rem 0.3rem;
    }
    
    .car-price {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-btn i.fab.fa-whatsapp {
        font-size: 32px !important;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .map-placeholder {
        height: 300px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .logo img {
        height: 90px;
        max-width: 220px;
        margin: -10px 0;
    }

    .hero {
        height: 350px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .car-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .car-footer .btn {
        width: 100%;
    }
}

/* ===== SCROLL ANIMATIONS ===== */

/* Base state - hidden */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Up */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s ease-out;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.7s ease-out;
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.7s ease-out;
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* Hero animations */
.hero-content h1 {
    animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero-content p {
    animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-content .btn,
.hero-content .hero-buttons {
    animation: heroFadeIn 1s ease-out 0.6s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar scroll effect */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(227, 24, 55, 0.15);
}

/* Card hover lift effect */
.feature-card,
.car-card,
.car-card-large {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section title animation */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
    transition: width 0.6s ease-out 0.3s;
}

.section-title.animated::after {
    width: 80px;
}

/* Button pulse on scroll */
.btn-primary.animated {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(227, 24, 55, 0);
    }
}

/* Image reveal effect */
.car-image,
.car-image-large {
    overflow: hidden;
}

.car-image::before,
.car-image-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    transform: translateX(-101%);
    z-index: 1;
    transition: transform 0.6s ease-out;
}

.car-card.animated .car-image::before,
.car-card-large.animated .car-image-large::before {
    transform: translateX(101%);
}

/* ============================================
   CAR DETAIL PAGE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb-section {
    padding: 20px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb .separator {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Car Detail Section */
.car-detail-section {
    padding: 40px 0 80px;
}

.car-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Gallery */
.car-detail-gallery {
    position: relative;
}

.car-detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
    font-size: 0.9rem;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    aspect-ratio: 4/3;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.gallery-nav-detail {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 5;
}

.gallery-nav-detail:hover {
    background: var(--secondary-color);
}

.gallery-prev-detail {
    left: 15px;
}

.gallery-next-detail {
    right: 15px;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumbnail.active {
    border-color: var(--secondary-color);
}

.thumbnail:hover {
    border-color: var(--secondary-color);
    opacity: 0.8;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.no-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* Car Info */
.car-detail-info {
    position: sticky;
    top: 100px;
}

.car-detail-header h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.car-detail-brand {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.car-detail-brand i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.car-detail-price-box {
    background: var(--gradient-red);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.price-value {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.car-detail-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.spec-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 40px;
    text-align: center;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.spec-value {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.car-detail-description {
    margin-bottom: 30px;
}

.car-detail-description h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.car-detail-description p {
    color: var(--text-light);
    line-height: 1.8;
}

.car-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.car-detail-actions .btn {
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-call {
    background: var(--gradient-red);
    color: white;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 55, 55, 0.4);
}

.btn-contact {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-contact:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.car-detail-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.car-detail-share span {
    color: var(--text-light);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn:hover {
    transform: scale(1.1);
}

/* Similar Cars */
.similar-cars-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.similar-cars-section h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.similar-cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.similar-car-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.similar-car-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.similar-car-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.similar-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.similar-car-card:hover .similar-car-image img {
    transform: scale(1.05);
}

.similar-car-info {
    padding: 20px;
}

.similar-car-info h4 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.similar-car-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE FIXES - CAR CARDS & DETAIL PAGE
   ============================================ */

/* Car Card Large - Better Responsive */
@media (max-width: 1200px) {
    .car-detail-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .car-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .car-detail-info {
        position: static;
    }
    
    .similar-cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Fix car card large on tablet */
    .car-card-large {
        flex-direction: column;
    }
    
    .car-image-large {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .car-detail-section {
        padding: 20px 0 60px;
    }
    
    .car-detail-header h1 {
        font-size: 1.6rem;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .car-detail-specs {
        grid-template-columns: 1fr;
    }
    
    .similar-cars-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-nav-detail {
        width: 40px;
        height: 40px;
    }
    
    /* Fix car cards on mobile */
    .cars-grid-large {
        grid-template-columns: 1fr;
    }
    
    .car-card-large {
        flex-direction: column;
    }
    
    .car-image-large {
        width: 100%;
        height: 220px;
        min-height: 220px;
    }
    
    .car-details {
        padding: 20px;
    }
    
    .car-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .car-footer .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .car-detail-price-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Car Badge Small (for homepage cards) */
.car-badge-small {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gradient-red);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


/* Car buttons container */
.car-buttons {
    display: flex;
    gap: 10px;
}

.car-buttons .btn {
    flex: 1;
}

.car-buttons .btn i {
    margin-right: 0;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

/* Large button */
.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Hero buttons responsive */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Sell Your Car CTA Section */
.sell-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-top: 1px solid rgba(39, 174, 96, 0.2);
    border-bottom: 1px solid rgba(39, 174, 96, 0.2);
}

.sell-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sell-cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.sell-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.sell-cta-text h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.sell-cta-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.btn-sell-cta,
.btn-sell-cta:link,
.btn-sell-cta:visited {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white !important;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
    white-space: nowrap;
}

.btn-sell-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

@media (max-width: 768px) {
    .sell-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .sell-cta-content {
        flex-direction: column;
    }
    
    .sell-cta-text h2 {
        font-size: 1.5rem;
    }
    
    .sell-cta-text p {
        font-size: 1rem;
    }
    
    .btn-sell-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===== SERVICES SECTION - ENHANCED ===== */
/* ===== BRANDS MARQUEE SECTION ===== */
.brands-marquee-section {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-light) 50%, var(--bg-color) 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-marquee-section::before,
.brands-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-color) 0%, transparent 100%);
}

.brands-marquee-section::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-color) 0%, transparent 100%);
}

.marquee-wrapper {
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 120px;
}

.brand-item:hover {
    background: rgba(227, 24, 55, 0.1);
    border-color: rgba(227, 24, 55, 0.3);
    transform: translateY(-5px) scale(1.05);
}

.brand-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.4s ease;
}

.brand-item:hover img {
    filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 15px rgba(227, 24, 55, 0.6));
    transform: scale(1.1);
}

.brand-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.brand-item:hover span {
    color: var(--secondary-color);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Marquee responsive */
@media (max-width: 768px) {
    .brands-marquee-section {
        padding: 30px 0;
    }
    
    .brands-marquee-section::before,
    .brands-marquee-section::after {
        width: 50px;
    }
    
    .marquee-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .brand-item {
        min-width: 90px;
        padding: 15px 18px;
    }
    
    .brand-item img {
        width: 40px;
        height: 40px;
    }
    
    .brand-item span {
        font-size: 0.7rem;
    }
    
    .marquee-track {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .brands-marquee-section::before,
    .brands-marquee-section::after {
        width: 30px;
    }
    
    .marquee-content {
        gap: 20px;
    }
    
    .brand-item {
        min-width: 80px;
        padding: 12px 15px;
        gap: 8px;
    }
    
    .brand-item img {
        width: 35px;
        height: 35px;
    }
    
    .brand-item span {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-color) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(227, 24, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(227, 24, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 
        0 20px 40px rgba(227, 24, 55, 0.15),
        0 0 0 1px rgba(227, 24, 55, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-featured {
    background: linear-gradient(145deg, rgba(227, 24, 55, 0.1) 0%, var(--bg-card) 100%);
    border-color: rgba(227, 24, 55, 0.3);
    transform: scale(1.02);
}

.service-card-featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-red);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(227, 24, 55, 0.3);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(227, 24, 55, 0.4);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-featured {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card-featured {
        grid-column: span 1;
        max-width: 100%;
        transform: none;
    }
    
    .service-card-featured:hover {
        transform: translateY(-10px);
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-badge {
        top: 15px;
        right: -40px;
        font-size: 0.65rem;
    }
}
