* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --red: #e31e24;
    --yellow: #ffd700;
    --white: #ffffff;
    --gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --gold: #d4af37;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* NAVIGATION */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 115px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.highlight {
    color: var(--red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--red));
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-instagram,
.nav-phone {
    width: 45px;
    height: 45px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    transition: all 0.3s;
}

.nav-instagram:hover,
.nav-phone:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.1) rotate(5deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--yellow);
    transition: all 0.3s;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 50%, var(--black) 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.02) 2px,
            rgba(255, 215, 0, 0.02) 4px
        );
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(227, 30, 36, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    padding: 0 40px;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-pretext {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.highlight-text {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
}

.hero-feature i {
    color: var(--yellow);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, #b71c1c 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(227, 30, 36, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-secondary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.hero-car-showcase {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-3d-container {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.hero-car-image {
    width: 600px;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(255, 215, 0, 0.4));
}

.car-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.3), transparent 70%);
    filter: blur(30px);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--yellow);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--yellow);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* STATS BAR */
.stats-bar {
    background: var(--gray);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--yellow);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECTION STYLING */
.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--yellow);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

/* ABOUT SECTION */
.about-section {
    padding: 120px 0;
    background: var(--black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 32px;
    color: var(--yellow);
    min-width: 40px;
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image-main,
.about-image-secondary {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--yellow);
}

.about-image-main {
    grid-column: 1 / -1;
    height: 350px;
}

.about-image-secondary {
    height: 250px;
}

.about-image-main img,
.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image-main:hover img,
.about-image-secondary:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.about-image-main:hover .image-overlay,
.about-image-secondary:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay p {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

/* BRANDS SECTION */
.brands-section {
    padding: 120px 0;
    background: var(--gray);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.brand-card {
    background: var(--black);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    border-color: var(--yellow);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.brand-logo-container {
    width: 150px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 10px;
    padding: 15px;
}

.brand-logo-container img {
    width: 500%;
    height: 500%;
    object-fit: contain;
}

.brand-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.brand-card p {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
}

/* CATEGORIES SECTION */
.categories-section {
    padding: 120px 0;
    background: var(--black);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 2px solid transparent;
    background: var(--gray);
}

.category-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
}

.category-image-container {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.category-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card-new:hover .category-image-container img {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 28px;
}

.category-info {
    padding: 25px;
}

.category-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--white);
}

.category-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.category-count {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 120px 0;
    background: var(--gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card-new {
    background: var(--black);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s;
    position: relative;
}

.product-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.bestseller {
    background: var(--yellow);
    color: var(--black);
}

.product-badge.new {
    background: #2196f3;
    color: var(--white);
}

.product-badge.hot {
    background: var(--red);
    color: var(--white);
}

.product-badge.premium {
    background: var(--gold);
    color: var(--black);
}

.product-image-container {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--gray);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card-new:hover .product-image-container img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card-new:hover .product-overlay {
    opacity: 1;
}

.btn-view-product {
    background: var(--yellow);
    color: var(--black);
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-view-product:hover {
    transform: scale(1.05);
}

.product-info-new {
    padding: 25px;
}

.product-category {
    display: inline-block;
    font-size: 11px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info-new h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
    min-height: 50px;
}

.product-price-new {
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.btn-inquire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-inquire:hover {
    background: var(--yellow);
    color: var(--black);
}

/* SERVICES SECTION */
.services-section {
    padding: 120px 0;
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--yellow);
    transform: translateY(-10px);
    background: var(--light-gray);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* GALLERY SECTION */
.gallery-section {
    padding: 120px 0;
    background: var(--gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--yellow);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--white);
}

.gallery-info p {
    color: var(--yellow);
    font-size: 14px;
}

.gallery-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-expand:hover {
    transform: scale(1.1) rotate(90deg);
}

/* INSTAGRAM SECTION */
.instagram-section {
    padding: 80px 0;
    background: var(--black);
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.instagram-header i {
    font-size: 48px;
    color: #e4405f;
    margin-bottom: 20px;
}

.instagram-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.instagram-handle {
    font-size: 20px;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

.instagram-handle:hover {
    text-decoration: underline;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instagram-post {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    display: block;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228, 64, 95, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 48px;
    color: var(--white);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 120px 0;
    background: var(--gray);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 50px;
    background: var(--black);
    border-radius: 20px;
    border: 2px solid var(--yellow);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
    font-size: 24px;
    color: var(--yellow);
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author strong {
    display: block;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--yellow);
    font-size: 14px;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.1);
    background: var(--red);
    color: var(--white);
}

/* CONTACT SECTION */
.contact-section {
    padding: 120px 0;
    background: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--yellow);
}

.contact-detail-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-detail-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-item a:hover {
    color: var(--yellow);
}

.contact-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: all 0.3s;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.contact-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--yellow);
    height: 600px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-map {
    background: var(--yellow);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    padding: 80px 0 30px;
    border-top: 2px solid var(--yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-tagline {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact i {
    color: var(--yellow);
    width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.1) rotate(5deg);
}

/* FLOATING ELEMENTS */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-car-image {
        width: 400px;
        height: 300px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid,
    .brands-grid,
    .categories-grid,
    .products-grid,
    .services-grid,
    .gallery-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.admin-link{
    color:#666;
    font-size:12px;
    margin-left:10px;
    text-decoration:none;
}

.admin-link:hover{
    color:#fff;
}

.brand-nav{
    position:sticky;
    top:80px;
    z-index:100;
    background:#111;
    padding:15px 0;
    border-top:1px solid rgba(255,255,255,0.1);
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.brand-nav .container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.brand-nav-item{
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.15);
    transition:0.3s;
}

.brand-nav-item:hover{
    background:#d4af37;
    color:#111;
}
section{
    position: relative;
}

section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.05),
        transparent
    );
    pointer-events: none;
}
.brand-card-link{
    text-decoration: none;
    color: inherit;
    display: block;
}
/* ===========================
   Coming Soon Page
=========================== */

.coming-soon-container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,var(--black),var(--gray));
    padding:40px;
}

.coming-soon-card{
    max-width:700px;
    width:100%;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,215,0,.2);
    border-radius:20px;
    padding:60px 50px;
    text-align:center;
    backdrop-filter:blur(12px);
}

.coming-icon{
    font-size:70px;
    color:var(--yellow);
    margin-bottom:25px;
}

.coming-soon-card h1{
    font-size:42px;
    margin-bottom:20px;
}

.coming-soon-card p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:15px;
    font-size:17px;
}

.coming-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.nav-instagram,
.nav-phone,
.whatsapp-float,
.social-btn {
    text-decoration: none;
}