/* ============================================
   MODERN 2025 HERO SECTION
   Color Palette: #880808 (red), #000000 (black), #ffffff (white)
   ============================================ */

.hero-2025 {
    position: relative;
    min-height: 140vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

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

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    z-index: 2;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(136, 8, 8, 0.1);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

.red-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, rgba(136, 8, 8, 0.1) 100%);
    z-index: 4;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

/* ============================================
   HERO CONTAINER & GRID
   ============================================ */

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4rem;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 100vh;
}

/* ============================================
   TEXT ZONE (LEFT SIDE)
   ============================================ */

.hero-text-zone {
    animation: fadeInLeft 1s ease-out;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3 {
    display: block;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-headline .line-1 {
    animation-delay: 0.2s;
}

.hero-headline .line-2 {
    animation-delay: 0.4s;
}

.hero-headline .line-3 {
    animation-delay: 0.6s;
}

.highlight-red {
    color: #880808;
    position: relative;
    display: inline-block;
}

.highlight-red::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #880808;
    animation: expandWidth 1s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.btn-primary-hero {
    background: #880808;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #880808;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::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;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-primary-hero:hover {
    background: #aa0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 8, 8, 0.4);
}

.btn-secondary-hero {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.btn-secondary-hero:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* ============================================
   VISUAL ZONE (RIGHT SIDE)
   ============================================ */

.hero-visual-zone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s forwards;
    opacity: 0;
}

.car-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(136, 8, 8, 0.4) 0%, rgba(136, 8, 8, 0.2) 40%, transparent 70%);
    filter: blur(30px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.hero-car-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: carFloat 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes carFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateY(2deg);
    }
    50% {
        transform: translateY(-5px) rotateY(0deg);
    }
    75% {
        transform: translateY(-15px) rotateY(-2deg);
    }
}

/* ============================================
   OFFER BADGE FOR CAR
   ============================================ */

.offer-badge-hero {
    position: absolute;
    top: 10%;
    right: 10%;
    background: #880808;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(136, 8, 8, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(136, 8, 8, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(136, 8, 8, 0.6);
    }
}

/* ============================================
   MODERN 2025 ANIMATION (NO OFFER)
   ============================================ */

.modern-animation-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animation-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(136, 8, 8, 0.3) 0%, rgba(136, 8, 8, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Brand Logos Animation */
.brand-logos-animation {
    position: relative;
    z-index: 5;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-item {
    position: absolute;
    animation: brandOrbit 8s linear infinite;
    animation-delay: var(--delay);
}

.brand-logo-item:nth-child(1) {
    transform: rotate(0deg) translateX(120px) rotate(0deg);
}

.brand-logo-item:nth-child(2) {
    transform: rotate(60deg) translateX(120px) rotate(-60deg);
}

.brand-logo-item:nth-child(3) {
    transform: rotate(120deg) translateX(120px) rotate(-120deg);
}

.brand-logo-item:nth-child(4) {
    transform: rotate(180deg) translateX(120px) rotate(-180deg);
}

.brand-logo-item:nth-child(5) {
    transform: rotate(240deg) translateX(120px) rotate(-240deg);
}

.brand-logo-item:nth-child(6) {
    transform: rotate(300deg) translateX(120px) rotate(-300deg);
}

.brand-logo-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(136, 8, 8, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: brandFloat 3s ease-in-out infinite;
}

.brand-logo-circle:hover {
    transform: scale(1.1);
    border-color: #880808;
    box-shadow: 0 0 20px rgba(136, 8, 8, 0.4);
}

.brand-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.brand-logo-circle:hover .brand-logo-img {
    transform: scale(1.1);
}

.brand-name-overlay {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(136, 8, 8, 0.9);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.brand-logo-circle:hover .brand-name-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

@keyframes brandOrbit {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes brandFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animated Logo (Fallback) */
.animated-logo {
    position: relative;
    z-index: 5;
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(136, 8, 8, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: circleRotate 8s linear infinite;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-top-color: #880808;
    border-radius: 50%;
    animation: borderSpin 2s linear infinite;
}

.logo-inner {
    width: 80px;
    height: 80px;
    background: rgba(136, 8, 8, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.car-icon-svg {
    width: 50px;
    height: 50px;
    animation: iconPulse 3s ease-in-out infinite;
}

.car-outline {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 4s ease-in-out infinite;
}

.wheel-1, .wheel-2 {
    animation: wheelSpin 2s linear infinite;
    transform-origin: center;
}

.windshield {
    opacity: 0;
    animation: fadeInOut 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes circleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes borderSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 200;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -200;
    }
}

@keyframes wheelSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #880808;
    border-radius: 50%;
    opacity: 0.7;
}

.dot-1 {
    top: 20%;
    left: 20%;
    animation: floatDot 3s ease-in-out infinite;
}

.dot-2 {
    top: 30%;
    right: 25%;
    animation: floatDot 3s ease-in-out infinite 0.5s;
}

.dot-3 {
    bottom: 30%;
    left: 30%;
    animation: floatDot 3s ease-in-out infinite 1s;
}

.dot-4 {
    bottom: 20%;
    right: 20%;
    animation: floatDot 3s ease-in-out infinite 1.5s;
}

.dot-5 {
    top: 50%;
    left: 10%;
    animation: floatDot 3s ease-in-out infinite 2s;
}

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Animated Rings */
.animated-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    border: 1px solid rgba(136, 8, 8, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: ringExpand 4s ease-in-out infinite;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation: ringExpand 4s ease-in-out infinite 1s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation: ringExpand 4s ease-in-out infinite 2s;
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Animation Text */
.animation-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 6;
}

.text-line {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.2rem 0;
    opacity: 0;
    transform: translateY(20px);
}

.text-line:nth-child(1) {
    animation: textReveal 6s ease-in-out infinite;
}

.text-line:nth-child(2) {
    animation: textReveal 6s ease-in-out infinite 0.5s;
}

.text-line:nth-child(3) {
    animation: textReveal 6s ease-in-out infinite 1s;
}

@keyframes textReveal {
    0%, 80%, 100% {
        opacity: 0;
        transform: translateY(20px);
    }
    10%, 70% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BRAND LOGOS SECTION (SEPARATE SECTION)
   ============================================ */

.brand-logos-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.brand-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(136, 8, 8, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.brand-logos-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brand-logos-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.brand-logos-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.brand-logos-animation-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Reuse existing brand logos animation styles but with section-specific adjustments */
.brand-logos-section .brand-logos-animation {
    position: relative;
    z-index: 5;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logos-section .brand-logo-item {
    position: absolute;
    animation: brandOrbit 12s linear infinite;
    animation-delay: var(--delay);
}

.brand-logos-section .brand-logo-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(136, 8, 8, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    animation: brandFloat 4s ease-in-out infinite;
}

.brand-logos-section .brand-logo-circle:hover {
    transform: scale(1.15);
    border-color: #880808;
    box-shadow: 0 0 30px rgba(136, 8, 8, 0.5);
    background: rgba(136, 8, 8, 0.1);
}

.brand-logos-section .brand-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(1.3) contrast(1.2);
    transition: all 0.4s ease;
}

.brand-logos-section .brand-name-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(136, 8, 8, 0.95);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.brand-logos-section .brand-logo-circle:hover .brand-name-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

/* Background Animation for Section */
.brand-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.brand-floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(136, 8, 8, 0.6);
    border-radius: 50%;
    opacity: 0.8;
}

.brand-floating-dot.dot-1 {
    top: 20%;
    left: 15%;
    animation: floatDot 4s ease-in-out infinite;
}

.brand-floating-dot.dot-2 {
    top: 25%;
    right: 20%;
    animation: floatDot 4s ease-in-out infinite 1s;
}

.brand-floating-dot.dot-3 {
    bottom: 30%;
    left: 25%;
    animation: floatDot 4s ease-in-out infinite 2s;
}

.brand-floating-dot.dot-4 {
    bottom: 25%;
    right: 15%;
    animation: floatDot 4s ease-in-out infinite 3s;
}

.no-brands-message {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-style: italic;
    padding: 2rem;
}

/* Responsive for Brand Logos Section */
@media (max-width: 768px) {
    .brand-logos-section {
        padding: 3rem 0;
    }
    
    .brand-logos-animation-wrapper {
        min-height: 300px;
    }
    
    .brand-logos-section .brand-logos-animation {
        width: 250px;
        height: 250px;
    }
    
    .brand-logos-section .brand-logo-circle {
        width: 70px;
        height: 70px;
    }
    
    .brand-logos-section .brand-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .brand-logos-section .brand-name-overlay {
        font-size: 0.7rem;
        bottom: -25px;
    }
}

@media (max-width: 480px) {
    .brand-logos-section .brand-logos-animation {
        width: 200px;
        height: 200px;
    }
    
    .brand-logos-section .brand-logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .brand-logos-section .brand-logo-img {
        width: 35px;
        height: 35px;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 6rem 0; /* Add padding for vertical spacing */
    }

    .hero-text-zone {
        order: 2; /* Move text below image on tablets */
    }

    .hero-visual-zone {
        order: 1;
        margin-bottom: 3rem;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .car-container,
    .modern-animation-container,
    .hero-carousel {
        height: 300px;
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: 90vh;
        padding: 4rem 0;
    }
    
    .hero-text-zone {
        order: 2;
    }
    
    .hero-visual-zone {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtext {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .car-container,
    .modern-animation-container,
    .hero-carousel {
        height: 220px;
        max-width: 350px;
    }
    
    .animated-logo {
        transform: scale(0.7);
    }
    
    .brand-logos-animation {
        width: 220px;
        height: 220px;
    }
    
    .brand-logo-item:nth-child(n) {
        transform: rotate(calc(var(--delay) * 120deg)) translateX(80px) rotate(calc(var(--delay) * -120deg));
    }
    
    .brand-logo-circle {
        width: 55px;
        height: 55px;
    }
    
    .brand-logo-img {
        width: 30px;
        height: 30px;
    }
    
    .animation-glow {
        width: 180px;
        height: 180px;
    }
    
    .animation-text .text-line {
        font-size: 0.9rem;
    }
    
    .shape-1,
    .shape-2,
    .shape-3 {
        width: 120px;
        height: 120px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-2025 {
        min-height: auto;
        padding: 3rem 0; /* Adjust vertical padding */
    }
    
    .hero-grid {
        min-height: auto;
        gap: 1.5rem;
        padding: 0;
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-subtext {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        max-width: 220px;
    }
    
    .car-container,
    .modern-animation-container,
    .hero-carousel {
        height: 180px;
        max-width: 300px;
    }
    
    .animated-logo {
        transform: scale(0.6);
    }
    
    .brand-logos-animation {
        width: 180px;
        height: 180px;
    }
    
    .brand-logo-item:nth-child(n) {
        transform: rotate(calc(var(--delay) * 120deg)) translateX(60px) rotate(calc(var(--delay) * -120deg));
    }
    
    .brand-logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .brand-logo-img {
        width: 25px;
        height: 25px;
    }
    
    .brand-name-overlay {
        font-size: 0.55rem;
        bottom: -18px;
        padding: 0.15rem 0.4rem;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
    }
    
    .logo-inner {
        width: 50px;
        height: 50px;
    }
    
    .car-icon-svg {
        width: 30px;
        height: 30px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1600px;
    }
    
    .hero-grid {
        gap: 6rem;
    }
    
    .hero-headline {
        font-size: 5rem;
    }
    
    .hero-subtext {
        font-size: 1.3rem;
    }
    
    .car-container,
    .modern-animation-container,
    .hero-carousel {
        height: 500px;
        max-width: 700px;
    }
    
    .animated-logo {
        transform: scale(1.2);
    }
    
    .brand-logos-animation {
        width: 400px;
        height: 400px;
    }
    
    .brand-logo-item:nth-child(n) {
        transform: rotate(calc(var(--delay) * 120deg)) translateX(150px) rotate(calc(var(--delay) * -120deg));
    }
    
    .brand-logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .brand-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .animation-glow {
        width: 400px;
        height: 400px;
    }
}

/* ============================================
   SIMPLE BRAND LOGOS SECTION (COMPACT)
   ============================================ */

.simple-brands-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(136, 8, 8, 0.1);
    border-bottom: 1px solid rgba(136, 8, 8, 0.1);
    margin-top: -2rem; /* Pull up to reduce space with hero */
    margin-bottom: 3rem; /* Space before offers */
}

.brands-section-title {
    text-align: center;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.brands-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.brand-logo-simple {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-logo-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(136, 8, 8, 0.1), transparent);
    transition: left 0.6s;
}

.brand-logo-simple:hover::before {
    left: 100%;
}

.brand-logo-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(136, 8, 8, 0.2);
    border: 1px solid rgba(136, 8, 8, 0.2);
}

.brand-img-simple {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.brand-logo-simple:hover .brand-img-simple {
    filter: grayscale(0);
    transform: scale(1.05);
}

.no-brands-text {
    text-align: center;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}

/* Simple animation for brand logos */
.brand-logo-simple {
    animation: brandSlideIn 0.6s ease-out forwards;
    opacity: 0;
}

.brand-logo-simple:nth-child(1) { animation-delay: 0.1s; }
.brand-logo-simple:nth-child(2) { animation-delay: 0.2s; }
.brand-logo-simple:nth-child(3) { animation-delay: 0.3s; }
.brand-logo-simple:nth-child(4) { animation-delay: 0.4s; }
.brand-logo-simple:nth-child(5) { animation-delay: 0.5s; }
.brand-logo-simple:nth-child(6) { animation-delay: 0.6s; }
.brand-logo-simple:nth-child(7) { animation-delay: 0.7s; }
.brand-logo-simple:nth-child(8) { animation-delay: 0.8s; }

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

/* Responsive for Simple Brands Section */
@media (max-width: 768px) {
    .simple-brands-section {
        padding: 1.5rem 0; /* Adjust padding for tablets */
        margin-top: -1rem; /* Adjust for smaller screens */
        margin-bottom: 1.5rem;
    }
    
    .brands-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .brand-logo-simple {
        width: 70px;
        height: 70px;
    }
    
    .brand-img-simple {
        width: 50px;
        height: 50px;
    }
    
    .brands-section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .brands-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.8rem;
    }
    
    .brand-logo-simple {
        width: 60px;
        height: 60px;
    }
    
    .brand-img-simple {
        width: 40px;
        height: 40px;
    }
    
    .brands-section-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 750px; /* Increased for larger format */
    height: 500px; /* Increased for larger format */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-carousel .carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex; /* To center content within */
    justify-content: center;
    align-items: center;
}

.hero-carousel .carousel-item.active {
    opacity: 1;
}
