﻿/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFC107;
    --secondary-gold: #FF9800;
    --dark-bg: #000000;
    --light-bg: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #000000;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ==================== ADVANCED KEYFRAME ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.7) rotate(-5deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 193, 7, 0.8), 0 0 60px rgba(255, 152, 0, 0.6);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(255, 193, 7, 0.5);
    }

    50% {
        border-color: rgba(255, 193, 7, 1);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 193, 7, 1), 0 0 30px rgba(255, 152, 0, 0.8);
    }
}

@keyframes flow-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Reveal on Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--transition-smooth);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s var(--transition-smooth);
}

    .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s var(--transition-smooth);
}

    .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-scale {
    opacity: 0;
    transform: scale(0.8) rotate(-3deg);
    transition: all 1s var(--transition-bounce);
}

    .reveal-scale.active {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

/* Stagger animation delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* ==================== HERO SECTION - ULTRA PREMIUM ==================== */
.c99-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c99-hero-bg-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.c99-hero-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: scaleIn 2s ease-out;
    transform-origin: center;
    transition: transform 0.1s ease-out;
}

.c99-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

.c99-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
}

.c99-hero-subtitle-top {
    font-size: 14px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out 0.2s both;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.c99-hero-title {
    font-size: 80px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -3px;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .c99-hero-title span {
        display: block;
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: textGlow 3s infinite;
    }

.c99-hero-subtitle {
    font-size: 22px;
    color: #cccccc;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.7s both;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.c99-hero-cta-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.c99-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: #000000;
    padding: 20px 55px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.5);
    transition: all 0.4s var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

    .c99-hero-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s ease;
    }

    .c99-hero-cta:hover::before {
        left: 100%;
    }

    .c99-hero-cta:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 60px rgba(255, 193, 7, 0.7);
    }

.c99-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    padding: 20px 55px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

    .c99-hero-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-gold);
        transform: translateY(-5px);
    }

.c99-hero-cta-mobile-call {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: #000000;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    transition: all 0.4s var(--transition-smooth);
    padding: 20px 55px;
}

/* Floating particles effect - Enhanced */
.c99-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;
}

.c99-hero-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.6), transparent);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
    pointer-events: none;
}

    .c99-hero-particle:nth-child(1) {
        width: 6px;
        height: 6px;
        left: 10%;
        top: 20%;
        animation-delay: 0s;
    }

    .c99-hero-particle:nth-child(2) {
        width: 8px;
        height: 8px;
        left: 20%;
        top: 60%;
        animation-delay: 1s;
    }

    .c99-hero-particle:nth-child(3) {
        width: 5px;
        height: 5px;
        left: 30%;
        top: 40%;
        animation-delay: 2s;
    }

    .c99-hero-particle:nth-child(4) {
        width: 7px;
        height: 7px;
        left: 40%;
        top: 70%;
        animation-delay: 0.5s;
    }

    .c99-hero-particle:nth-child(5) {
        width: 6px;
        height: 6px;
        left: 50%;
        top: 30%;
        animation-delay: 1.5s;
    }

    .c99-hero-particle:nth-child(6) {
        width: 8px;
        height: 8px;
        left: 60%;
        top: 80%;
        animation-delay: 2.5s;
    }

    .c99-hero-particle:nth-child(7) {
        width: 5px;
        height: 5px;
        left: 70%;
        top: 50%;
        animation-delay: 0.8s;
    }

    .c99-hero-particle:nth-child(8) {
        width: 7px;
        height: 7px;
        left: 80%;
        top: 25%;
        animation-delay: 1.8s;
    }

    .c99-hero-particle:nth-child(9) {
        width: 6px;
        height: 6px;
        left: 90%;
        top: 65%;
        animation-delay: 2.2s;
    }

    .c99-hero-particle:nth-child(10) {
        width: 8px;
        height: 8px;
        left: 15%;
        top: 85%;
        animation-delay: 1.2s;
    }

/* Scroll Indicator */
.c99-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: float 3s infinite ease-in-out;
}

    .c99-hero-scroll-indicator svg {
        width: 30px;
        height: 30px;
        color: var(--primary-gold);
        animation: fadeInUp 1s ease-out 1.5s both;
    }
/* ==================== NEW ICONS SECTION - ULTRA PREMIUM ==================== */
.new-icons-section {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .new-icons-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

.section-header {
    padding: 0 60px 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 25px;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        border-radius: 3px;
    }

.section-subtitle {
    font-size: 17px;
    color: #666666;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.view-all-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

    .view-all-btn::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.6s ease;
    }

    .view-all-btn:hover::before {
        left: 100%;
    }

    .view-all-btn:hover {
        background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
        color: #000000;
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
    }

    .view-all-btn svg {
        width: 20px;
        height: 20px;
        transition: transform 0.4s var(--transition-bounce);
    }

    .view-all-btn:hover svg {
        transform: translateX(8px);
    }

/* Carousel Container - Ultra Premium */
.car-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 60px;
}

.car-carousel {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 50px;
    -webkit-overflow-scrolling: touch;
}

    .car-carousel::-webkit-scrollbar {
        display: none;
    }

.car-card {
    flex: 0 0 420px;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transition: all 0.6s var(--transition-bounce);
    cursor: pointer;
    position: relative;
}

    .car-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
        pointer-events: none;
    }

    .car-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
        z-index: 2;
        pointer-events: none;
    }

    .car-card:hover::before {
        opacity: 1;
    }

    .car-card:hover::after {
        opacity: 1;
        top: -60%;
        left: 100%;
    }

    .car-card:hover {
        transform: translateY(-25px) scale(1.03);
        box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    }

.car-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.car-card:hover .car-image {
    transform: scale(1.2) rotate(3deg);
}

.registered-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: pulse 3s infinite;
    z-index: 3;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.car-info {
    padding: 35px;
    text-align: left;
    position: relative;
    z-index: 3;
}

.car-name {
    font-size: 22px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.car-card:hover .car-name {
    color: var(--secondary-gold);
}

.car-price {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    display: inline-block;
}

.car-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: 18px;
    gap: 15px;
}

.car-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    transition: transform 0.4s var(--transition-bounce);
}

    .car-detail-item:hover {
        transform: translateY(-8px);
    }

.car-detail-icon {
    width: 26px;
    height: 26px;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}

.car-detail-item:hover .car-detail-icon {
    color: var(--secondary-gold);
    transform: scale(1.3) rotate(10deg);
}

.car-detail-text {
    font-size: 11px;
    color: #666666;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    line-height: 1.5;
}

/* Pagination Dots - Ultra Premium */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 70px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: all 0.5s var(--transition-bounce);
    position: relative;
}

    .dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        border: 2px solid transparent;
        border-radius: 50%;
        transition: all 0.5s ease;
    }

    .dot:hover {
        background-color: #999999;
        transform: scale(1.2);
    }

    .dot.active {
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        width: 50px;
        border-radius: 7px;
        animation: glow 2s infinite;
    }

        .dot.active::after {
            border-color: rgba(255, 193, 7, 0.4);
        }

/* ==================== IGNITE PASSION SECTION - ULTRA PREMIUM ==================== */
.ignite-section {
    background: #0a0a0a;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .ignite-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .ignite-section .section-title {
        color: #ffffff;
        font-size: 52px;
        font-weight: 900;
        margin-bottom: 25px;
        letter-spacing: -2px;
    }

        .ignite-section .section-title::after {
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        }

    .ignite-section .section-subtitle {
        color: #999999;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.8;
    }

/* Passion Carousel - Ultra Premium */
.passion-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 60px;
}

.passion-carousel {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 50px;
    -webkit-overflow-scrolling: touch;
}

    .passion-carousel::-webkit-scrollbar {
        display: none;
    }

.passion-card {
    flex: 0 0 420px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s var(--transition-bounce);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

    .passion-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.4), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 2;
    }

    .passion-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.2), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
        z-index: 3;
        pointer-events: none;
    }

    .passion-card:hover::before {
        opacity: 1;
    }

    .passion-card:hover::after {
        opacity: 1;
        top: -60%;
        left: 100%;
    }

    .passion-card:hover {
        transform: translateY(-20px) scale(1.04);
        box-shadow: 0 25px 70px rgba(255, 193, 7, 0.4);
    }

.passion-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.passion-card:hover .passion-image {
    transform: scale(1.25) rotate(4deg);
}

.passion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.98), transparent);
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
}

.passion-text {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.passion-card:hover .passion-text {
    color: var(--primary-gold);
}

.passion-arrow {
    width: 36px;
    height: 36px;
    color: #ffffff;
    background: rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    padding: 9px;
    transition: all 0.5s var(--transition-bounce);
}

.passion-card:hover .passion-arrow {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #000000;
    transform: rotate(45deg) scale(1.2);
}

/* Pagination Dots for Passion Section */
.passion-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 70px;
}

.passion-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #333333;
    cursor: pointer;
    transition: all 0.5s var(--transition-bounce);
}

    .passion-dot:hover {
        background-color: #666666;
        transform: scale(1.2);
    }

    .passion-dot.active {
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        width: 50px;
        border-radius: 7px;
        animation: glow 2s infinite;
    }

/* ==================== THINKING TO SELL SECTION - ORIGINAL ==================== */
.sell-section {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.sell-section-wrapper {
    position: relative;
    width: 100%;
}

.sell-section-top {
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
    padding: 80px 60px 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .sell-section-top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.015) 2px, rgba(0,0,0,0.015) 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.015) 2px, rgba(0,0,0,0.015) 4px);
        z-index: 0;
    }

    .sell-section-top > * {
        position: relative;
        z-index: 2;
    }

.sell-section .section-title {
    color: #000000;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.sell-section .section-description {
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.minutes-flow-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    z-index: 3;
}

.minutes-flow {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: flow-right 30s linear infinite;
    font-size: 20px;
    font-weight: 600;
    color: rgba(0,0,0,0.15);
    white-space: nowrap;
}

.minute-flow-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.minute-flow-icon {
    width: 28px;
    height: 28px;
    fill: rgba(0,0,0,0.2);
}

.minute-flow-text {
    font-size: 18px;
    font-weight: 700;
    color: rgba(0,0,0,0.25);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sell-car-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: -100px auto 0;
    z-index: 100;
    padding: 0 20px;
}

.car-image-frame {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: visible;
}

.counter-circle {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid #FFA500;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    z-index: 110;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #FFA500;
    font-style: italic;
    line-height: 1;
}

.car-main-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    display: block;
    position: relative;
    z-index: 100;
}

.sell-section-bottom {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 150px 60px 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.discover-more-btn {
    background: #ffffff;
    color: #000000;
    padding: 18px 50px;
    border: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    margin-bottom: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
    position: relative;
    z-index: 50;
}

    .discover-more-btn:hover {
        background: #FFA500;
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(255,165,0,0.4);
    }

    .discover-more-btn svg {
        width: 18px;
        height: 18px;
    }

.sell-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 50;
}

.sell-feature-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 3px solid #FFA500;
    border-radius: 22px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .sell-feature-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(255,165,0,0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .sell-feature-box:hover::after {
        opacity: 1;
    }

    .sell-feature-box:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(255,165,0,0.35);
        border-color: #FFB84D;
    }

.sell-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: #FFA500;
    position: relative;
    z-index: 2;
}

.sell-feature-name {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

.sell-feature-info {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ==================== STAY CLASSY SECTION - ULTRA PREMIUM ==================== */
.classy-section {
    background: #000000;
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .classy-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255, 193, 7, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .classy-section .section-title {
        color: #ffffff;
        font-size: 52px;
        font-weight: 900;
        margin-bottom: 20px;
        letter-spacing: -2px;
        position: relative;
        z-index: 2;
    }

        .classy-section .section-title::after {
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        }

    .classy-section .section-subtitle {
        color: #999999;
        font-size: 17px;
        font-weight: 400;
        margin-bottom: 50px;
        line-height: 1.8;
        position: relative;
        z-index: 2;
    }

.explore-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #000000;
    padding: 16px 45px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 70px;
    transition: all 0.5s var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
    position: relative;
    z-index: 2;
}

    .explore-btn:hover {
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
    }

.classy-car-display {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    transition: transform 0.6s var(--transition-smooth);
}

    .classy-car-display:hover {
        transform: scale(1.03);
        box-shadow: 0 30px 90px rgba(255, 193, 7, 0.3);
    }

.classy-car-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.classy-car-display:hover .classy-car-image {
    transform: scale(1.08);
}

/* ==================== CIRCUIT99 WORLD SECTION - ULTRA PREMIUM ==================== */
.circuit-section {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .circuit-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

    .circuit-section .section-title {
        color: #000000;
        font-size: 52px;
        font-weight: 900;
        margin-bottom: 25px;
        letter-spacing: -2px;
    }

        .circuit-section .section-title::after {
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        }

    .circuit-section .section-subtitle {
        color: #666666;
        font-size: 17px;
        font-weight: 400;
        margin-bottom: 70px;
        line-height: 1.8;
    }

.circuit-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 60px;
}

.circuit-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 50px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

    .circuit-carousel::-webkit-scrollbar {
        display: none;
    }

    .circuit-carousel:active {
        cursor: grabbing;
    }

.circuit-card {
    flex: 0 0 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 25px;
    padding: 60px 45px;
    text-align: left;
    transition: all 0.6s var(--transition-bounce);
    cursor: pointer;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

    .circuit-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

    .circuit-card:hover::before {
        opacity: 1;
        top: -60%;
        left: 100%;
    }

    .circuit-card:hover {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        transform: translateY(-20px) scale(1.03);
        box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    }

        .circuit-card:hover .circuit-card-title,
        .circuit-card:hover .circuit-card-text {
            color: #ffffff;
        }

.circuit-card-title {
    font-size: 24px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 18px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.circuit-card-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.9;
    font-weight: 400;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.circuit-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.circuit-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: all 0.5s var(--transition-bounce);
}

    .circuit-dot:hover {
        background-color: #999999;
        transform: scale(1.2);
    }

    .circuit-dot.active {
        background: linear-gradient(135deg, #000000, #333333);
        width: 50px;
        border-radius: 7px;
    }

/* ==================== MOBILE RESPONSIVE STYLES ==================== */

/* ==================== MOBILE RESPONSIVE STYLES ==================== */

@media (max-width: 1024px) {
    .c99-hero-title {
        font-size: 60px;
    }

    .c99-hero-subtitle {
        font-size: 19px;
    }

    .section-title {
        font-size: 44px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-header {
        padding: 0 40px 60px;
    }

    .car-carousel-container,
    .passion-carousel-container,
    .circuit-carousel-container {
        padding: 0 40px;
    }

    .car-card,
    .passion-card {
        flex: 0 0 380px;
    }

    .circuit-card {
        flex: 0 0 360px;
    }

    .sell-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .sell-section-top {
        padding: 80px 40px 200px;
    }

    .sell-section-bottom {
        padding: 150px 40px 80px;
    }

    .sell-car-wrapper {
        max-width: 600px;
        margin: -100px auto 0;
    }

    .car-main-image {
        max-height: 330px;
    }

    .counter-circle {
        width: 105px;
        height: 105px;
        top: -52px;
        border-width: 5px;
    }

    .counter-number {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .c99-hero-section {
        height: 80vh;
    }

    .c99-hero-title {
        font-size: 44px;
    }

    .c99-hero-subtitle-top {
        font-size: 12px;
    }

    .c99-hero-subtitle {
        font-size: 17px;
    }

    .c99-hero-cta,
    .c99-hero-cta-secondary,
    .c99-hero-cta-mobile-call {
        padding: 16px 40px;
        font-size: 14px;
    }

    .c99-hero-cta-mobile-call {
        display: inline-flex;
    }

    .c99-hero-cta-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .section-header {
        padding: 0 20px 50px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .view-all-btn,
    .explore-btn {
        padding: 15px 38px;
        font-size: 13px;
    }

    .car-carousel-container,
    .passion-carousel-container,
    .circuit-carousel-container {
        padding: 0 20px;
    }

    .car-carousel,
    .passion-carousel,
    .circuit-carousel {
        gap: 25px;
        padding: 15px 0 40px;
    }

    .car-card {
        flex: 0 0 320px;
    }

    .car-image-container {
        height: 220px;
    }

    .car-info {
        padding: 28px;
    }

    .car-name {
        font-size: 19px;
    }

    .car-price {
        font-size: 23px;
    }

    .car-details {
        padding: 20px;
        gap: 12px;
    }

    .car-detail-icon {
        width: 22px;
        height: 22px;
    }

    .car-detail-text {
        font-size: 10px;
    }

    .registered-badge {
        padding: 10px 18px;
        font-size: 10px;
        top: 18px;
        right: 18px;
    }

    .passion-card {
        flex: 0 0 320px;
    }

    .passion-image {
        height: 240px;
    }

    .passion-overlay {
        padding: 28px;
    }

    .passion-text {
        font-size: 17px;
    }

    .passion-arrow {
        width: 30px;
        height: 30px;
    }

    .sell-section-top {
        padding: 60px 20px 170px;
    }

    .sell-section-bottom {
        padding: 130px 20px 60px;
    }

    .sell-section .section-title {
        font-size: 36px;
    }

    .sell-section .section-description {
        font-size: 15px;
        padding: 0 10px;
    }

    .sell-car-wrapper {
        max-width: 90%;
        margin: -85px auto 0;
    }

    .car-main-image {
        max-height: 240px;
    }

    .counter-circle {
        width: 85px;
        height: 85px;
        top: -42px;
        border-width: 4px;
    }

    .counter-number {
        font-size: 38px;
    }

    .discover-more-btn {
        padding: 16px 40px;
        font-size: 14px;
        margin-bottom: 50px;
    }

    .sell-features-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 10px;
    }

    .sell-feature-box {
        padding: 42px 30px;
    }

    .sell-feature-icon {
        width: 58px;
        height: 58px;
    }

    .sell-feature-name {
        font-size: 19px;
    }

    .sell-feature-info {
        font-size: 14px;
    }

    .classy-section,
    .circuit-section {
        padding: 80px 20px;
    }

    .new-icons-section,
    .ignite-section {
        padding: 80px 0;
    }

        .classy-section .section-title,
        .circuit-section .section-title,
        .ignite-section .section-title {
            font-size: 36px;
        }

        .classy-section .section-subtitle,
        .circuit-section .section-subtitle,
        .ignite-section .section-subtitle {
            font-size: 15px;
        }

    .classy-car-image {
        max-height: 350px;
    }

    .circuit-card {
        flex: 0 0 300px;
        padding: 45px 32px;
        min-height: 240px;
    }

    .circuit-card-title {
        font-size: 20px;
    }

    .circuit-card-text {
        font-size: 14px;
    }

    .pagination-dots,
    .passion-pagination-dots,
    .circuit-pagination-dots {
        margin-top: 50px;
        gap: 12px;
    }

    .dot,
    .passion-dot,
    .circuit-dot {
        width: 12px;
        height: 12px;
    }

        .dot.active,
        .passion-dot.active,
        .circuit-dot.active {
            width: 40px;
        }

    .c99-hero-scroll-indicator {
        bottom: 30px;
    }

        .c99-hero-scroll-indicator svg {
            width: 25px;
            height: 25px;
        }
}

@media (max-width: 480px) {
    .c99-hero-title {
        font-size: 36px;
    }

    .c99-hero-subtitle {
        font-size: 15px;
    }

    .c99-hero-cta,
    .c99-hero-cta-secondary,
    .c99-hero-cta-mobile-call {
        padding: 14px 35px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .car-card,
    .passion-card {
        flex: 0 0 280px;
    }

    .car-image-container {
        height: 180px;
    }

    .car-info {
        padding: 22px;
    }

    .car-name {
        font-size: 17px;
    }

    .car-price {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .car-details {
        padding: 16px;
        gap: 10px;
    }

    .car-detail-icon {
        width: 19px;
        height: 19px;
    }

    .car-detail-text {
        font-size: 9px;
    }

    .passion-image {
        height: 200px;
    }

    .passion-overlay {
        padding: 22px;
    }

    .passion-text {
        font-size: 16px;
    }

    .passion-arrow {
        width: 26px;
        height: 26px;
    }

    .sell-section-top {
        padding: 50px 15px 150px;
    }

    .sell-section-bottom {
        padding: 110px 15px 50px;
    }

    .sell-section .section-title {
        font-size: 28px;
    }

    .sell-section .section-description {
        font-size: 14px;
    }

    .sell-car-wrapper {
        max-width: 92%;
        margin: -75px auto 0;
    }

    .car-main-image {
        max-height: 200px;
    }

    .counter-circle {
        width: 75px;
        height: 75px;
        top: -37px;
        border-width: 3px;
    }

    .counter-number {
        font-size: 32px;
    }

    .discover-more-btn {
        padding: 14px 35px;
        font-size: 13px;
        margin-bottom: 42px;
    }

    .sell-feature-box {
        padding: 36px 26px;
    }

    .sell-feature-icon {
        width: 48px;
        height: 48px;
    }

    .sell-feature-name {
        font-size: 18px;
    }

    .sell-feature-info {
        font-size: 13px;
    }

    .circuit-card {
        flex: 0 0 260px;
        padding: 38px 28px;
    }

    .circuit-card-title {
        font-size: 18px;
    }

    .circuit-card-text {
        font-size: 13px;
    }

    .view-all-btn,
    .explore-btn {
        padding: 13px 32px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 24px;
    }

    .car-card,
    .passion-card,
    .circuit-card {
        flex: 0 0 240px;
    }

    .sell-section-top {
        padding: 40px 12px 140px;
    }

    .sell-section-bottom {
        padding: 100px 12px 40px;
    }

    .sell-car-wrapper {
        max-width: 95%;
        margin: -70px auto 0;
    }

    .car-main-image {
        max-height: 180px;
    }

    .counter-circle {
        width: 65px;
        height: 65px;
        top: -32px;
    }

    .counter-number {
        font-size: 28px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .c99-hero-section {
        height: 90vh;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .car-image-container,
    .passion-image {
        height: 160px;
    }

    .sell-section-top {
        padding: 40px 20px 130px;
    }

    .sell-section-bottom {
        padding: 100px 20px 50px;
    }

    .sell-car-wrapper {
        margin: -65px auto 0;
    }

    .car-main-image {
        max-height: 170px;
    }
}


