﻿/* 🔥 FORCE TEXT VISIBILITY FIX (GLOBAL FOR SERVICES) */
.luxury-services,
.luxury-services * {
    color: #ffffff;
}

    .luxury-services p {
        color: #e9e9e9 !important;
        opacity: 1 !important;
    }

    .luxury-services h3,
    .luxury-services h2 {
        color: #ffffff !important;
        opacity: 1 !important;
    }

    /* GOLD ACCENT ONLY */
    .luxury-services .gold-text {
        color: #FFD700 !important;
    }

:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* RESET */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* HERO */
.luxury-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    padding: 40px 15px; /* prevents cutoff */
}

/* BACKGROUND */
.luxury-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
    animation: zoomBg 20s infinite alternate ease-in-out;
}

@keyframes zoomBg {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

/* OVERLAY */
.luxury-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,28,46,0.75), rgba(26,28,46,0.95));
    z-index: 2;
}

/* CONTENT */
.luxury-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.luxury-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.7);
}

.gold-text {
    color: var(--gold);
}

.luxury-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
}

/* DESCRIPTION */
.luxury-description {
    color: #eaeaea;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* PREMIUM BUTTON CARDS */
.luxury-button-group {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.luxury-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 56px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 20px; /* ← bigger text */
    font-weight: 700; /* ← heavier weight */
    letter-spacing: 1px; /* ← spacing makes large text feel premium */
    color: #fff;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,215,0,0.3);
    transition: all 0.3s ease;
    min-width: 280px; /* ← wider to match the bigger text */
}

    .luxury-btn i {
        font-size: 26px; /* ← icon scales up to match */
        color: var(--gold);
    }
    .luxury-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px; 
        background: linear-gradient(120deg, transparent, rgba(255,215,0,0.3), transparent);
        opacity: 0;
        transition: 0.4s;
    }

    .luxury-btn:hover::before {
        opacity: 1;
    }

    .luxury-btn:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,215,0,0.15);
    }

/* MOBILE */
@media (max-width: 576px) {
    .luxury-btn {
        padding: 16px 36px;
        font-size: 14px;
        min-width: 180px;
    }
}
    }

/* TRUST */
.luxury-trust {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
}

    .luxury-trust i {
        color: var(--gold);
    }

/* DESKTOP */
@media (min-width: 768px) {
    .luxury-title {
        font-size: 4rem;
    }

    .luxury-description {
        font-size: 17px;
    }
}

/* MOBILE FIX */
@media (max-width: 480px) {
    .luxury-title {
        font-size: 2rem;
    }

    .luxury-button-group {
        grid-template-columns: repeat(3, 1fr); /* stay horizontal */
        gap: 10px;
    }

    .luxury-btn {
        font-size: 11px;
        padding: 16px 6px;
    }
}



/* ROOT COLORS */
:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
    --dark-soft: #232542;
    --text-light: #ffffff;
    --text-muted: #bfc3d9;
}

/* SECTION BACKGROUND */
.luxury-calculator-section {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 60px 15px;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.luxury-calculator-container {
    max-width: 1100px;
    margin: auto;
}

/* GLASS CARD */
.luxury-form-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

/* BADGE */
.floating-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--gold);
    font-size: 12px;
    border: 1px solid var(--gold);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
}

/* HEADLINE */
.main-headline {
    font-size: 28px;
    color: var(--text-light);
    line-height: 1.3;
}

.gold-gradient {
    background: linear-gradient(45deg, #FFD700, #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DIVIDER */
.headline-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px 0;
    border-radius: 10px;
}

/* DESCRIPTION */
.hero-description {
    color: var(--text-muted);
    font-size: 14px;
}

/* FEATURES */
.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.highlight {
    background: rgba(255,215,0,0.08);
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 12px;
    color: var(--gold);
}

/* BUYING POWER CARD */
.buying-power-card {
    margin-top: 25px;
    background: linear-gradient(135deg, #FFD700, #caa500);
    color: #000;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    animation: pulseGlow 3s infinite;
}

.power-value {
    font-size: 32px;
    font-weight: bold;
}

/* FORM */
.premium-form {
    margin-top: 25px;
}

/* LABEL */
.field-label {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

/* INPUT */
.premium-input {
    display: flex;
    align-items: center;
    background: var(--dark-soft);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid transparent;
    transition: 0.3s;
}

    .premium-input:focus-within {
        border-color: var(--gold);
        box-shadow: 0 0 10px rgba(255,215,0,0.4);
    }

.input-currency {
    color: var(--gold);
    margin-right: 5px;
}

.premium-input-field {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
}

/* BUTTONS */
.car-type-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

    .car-type-buttons .type-btn:last-child {
        grid-column: span 2;
    }

.type-btn {
    background: var(--dark-soft);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px;
    border-radius: 12px;
    transition: 0.3s;
}

    .type-btn:hover,
    .type-btn.active {
        background: var(--gold);
        color: black;
        transform: translateY(-3px);
    }

/* SUBMIT BUTTON */
.premium-submit-btn {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #FFD700, #ffae00);
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .premium-submit-btn:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 20px rgba(255,215,0,0.3);
    }

/* TRUST BADGES */
.form-trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ANIMATIONS */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(255,215,0,0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(255,215,0,0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255,215,0,0.3);
    }
}

/* MOBILE FIRST */
@media (min-width: 768px) {
    .main-headline {
        font-size: 38px;
    }

    .form-row {
        display: flex;
        gap: 15px;
    }

        .form-row .form-field-group {
            flex: 1;
        }
}

/* FLOATING BADGE ANIMATION */
.floating-badge {
    animation: floatY 3s ease-in-out infinite;
}

/* BUTTON ICON BOUNCE */
.luxury-btn i {
    animation: iconBounce 2s infinite;
}

/* TRUST ICON PULSE */
.luxury-trust i {
    animation: pulseIcon 2s infinite;
}

/* KEYFRAMES */
@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}
.luxury-form-content:hover {
    box-shadow: 0 20px 60px rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.4);
}
.luxury-btn:active {
    transform: scale(0.95);
}

.premium-submit-btn:active {
    transform: scale(0.97);
}




/* ABOUT SECTION */
.luxury-about {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #ffffff;
}

/* CONTAINER */
.luxury-about-container {
    max-width: 1200px;
    margin: auto;
}

/* TAG */
.luxury-section-tag {
    display: inline-flex;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid #FFD700;
    border-radius: 30px;
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 15px;
}

/* TITLE */
.luxury-section-title {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
}

/* DIVIDER */
.luxury-section-divider {
    width: 70px;
    height: 3px;
    background: #FFD700;
    margin: 15px auto 40px;
}

/* GRID */
.luxury-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* IMAGE */
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    transition: 0.5s;
}

    .about-main-img:hover {
        transform: scale(1.05);
    }

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.4);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #fff;
}

/* CONTENT TEXT FIX */
.luxury-about-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.luxury-about-text {
    color: #e6e6e6;
    line-height: 1.7;
    font-size: 14px;
}

/* STATS (FIXED VISIBILITY) */
.luxury-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.stat-item {
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.25);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* NUMBER FIX (VERY IMPORTANT) */
.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255,215,0,0.3);
}

/* LABEL FIX */
.stat-label {
    font-size: 13px;
    color: #ffffff !important;
    opacity: 0.95;
}

/* FEATURES */
.luxury-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    color: #e6e6e6;
}

    .feature-item i {
        color: #FFD700;
        font-size: 18px;
        margin-top: 3px;
    }

/* CTA */
.luxury-about-btn {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 18px;
    background: #FFD700;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

    .luxury-about-btn:hover {
        transform: translateY(-3px);
    }

/* RESPONSIVE */
@media (min-width: 768px) {
    .luxury-about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .luxury-section-title {
        font-size: 42px;
    }
}

/* SERVICES WRAPPER */
.luxury-services {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: white;
}

/* CONTAINER */
.services-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #FFD700;
    border-radius: 30px;
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 10px;
}

.services-title {
    font-size: 36px;
    font-weight: 800;
}

.services-subtitle {
    color: #cfcfcf;
    max-width: 600px;
    margin: 10px auto;
    font-size: 14px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* CARD */
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
}

    .service-card i {
        font-size: 24px;
        color: #FFD700;
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #fff;
    }

    .service-card p {
        font-size: 13px;
        color: #cfcfcf;
        line-height: 1.6;
    }

    /* HOVER */
    .service-card:hover {
        transform: translateY(-5px);
        border-color: #FFD700;
        box-shadow: 0 10px 30px rgba(255,215,0,0.1);
    }

/* CTA */
.services-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-btn {
    display: inline-flex;
    gap: 10px;
    padding: 12px 20px;
    background: #FFD700;
    color: black;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

    .cta-btn:hover {
        transform: translateY(-3px);
    }

/* DESKTOP */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-title {
        font-size: 44px;
    }
}




/* SECTION */
.premium-advantages {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* CONTAINER */
.advantages-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.advantages-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 10px;
}

.header-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}

.header-subtitle {
    color: #f2f2f2;
    font-size: 14px;
    max-width: 600px;
    margin: 10px auto;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* FEATURE CARD (CLICKABLE FEEL) */
.feature-item {
    background: rgba(26,28,46,0.9);
    border: 1px solid rgba(255,215,0,0.2);
    padding: 20px;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}

    /* HOVER LIFT = CLICKABLE FEEL */
    .feature-item:hover {
        transform: translateY(-6px);
        border-color: #FFD700;
        box-shadow: 0 12px 30px rgba(255,215,0,0.12);
    }

/* NUMBER */
.feature-number {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 12px;
    color: #FFD700;
    opacity: 0.8;
}

/* ICON */
.feature-icon {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 10px;
}

/* TITLE */
.feature-item h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

/* TEXT FIX (IMPORTANT) */
.feature-item p {
    font-size: 13px;
    color: #f2f2f2;
    line-height: 1.6;
}

/* BADGE */
.feature-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    color: #000;
    background: #FFD700;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* STATS ROW */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

/* STAT BLOCK (DASHBOARD STYLE) */
.stat-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    padding: 18px;
    border-radius: 14px;
    text-align: center;
}

/* NUMBER FIX */
.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
}

/* LABEL FIX */
.stat-label {
    font-size: 13px;
    color: #ffffff;
    opacity: 1;
}

/* MOBILE */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-title {
        font-size: 44px;
    }

    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* SECTION */
.brands-premium-section {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* CONTAINER */
.brands-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.brands-header {
    text-align: center;
    margin-bottom: 40px;
}

.brands-badge {
    display: inline-flex;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid #FFD700;
    border-radius: 30px;
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 10px;
}

.brands-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}

.brands-subtitle {
    color: #f2f2f2;
    font-size: 14px;
    max-width: 600px;
    margin: 10px auto;
}

/* GRID */
.brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* CARD */
.brand-card {
    background: rgba(26,28,46,0.9);
    border: 1px solid rgba(255,215,0,0.15);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    /* HOVER = CLICKABLE FEEL */
    .brand-card:hover {
        transform: translateY(-6px);
        border-color: #FFD700;
        box-shadow: 0 12px 30px rgba(255,215,0,0.12);
    }

/* ICON */
.brand-icon {
    font-size: 22px;
    color: #FFD700;
}

/* TEXT */
.brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* BUTTON STYLE ACTION */
.brand-action {
    display: inline-flex;
    gap: 6px;
    margin-top: 5px;
    font-size: 12px;
    color: #FFD700;
    transition: 0.3s;
}

/* ARROW ANIMATION */
.brand-card:hover .brand-action i {
    transform: translateX(4px);
    transition: 0.3s;
}

/* LINK CLEAN */
.brand-link {
    text-decoration: none;
    display: block;
}

/* MOBILE */
@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-title {
        font-size: 44px;
    }
}




/* SECTION */
.premium-vehicles-section {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* CONTAINER */
.premium-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.section-subtitle {
    color: #f2f2f2;
    font-size: 14px;
    max-width: 600px;
    margin: 10px auto;
}

/* GRID */
.vehicles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

/* CARD (CLICKABLE PREMIUM FEEL) */
.vehicle-card {
    display: block;
    background: rgba(26,28,46,0.92);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

    .vehicle-card:hover {
        transform: translateY(-6px);
        border-color: #FFD700;
        box-shadow: 0 12px 35px rgba(255,215,0,0.12);
    }

/* IMAGE */
.vehicle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .vehicle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* BADGE */
.vehicle-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFD700;
    color: #000;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* CONTENT */
.vehicle-content {
    padding: 15px;
}

/* TITLE */
.vehicle-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

    .vehicle-title span {
        color: #FFD700;
    }

/* SPECS */
.vehicle-specs {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #f2f2f2;
    margin: 10px 0;
}

/* FOOTER */
.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

/* PRICE */
.vehicle-price {
    font-size: 18px;
    font-weight: 800;
    color: #FFD700;
}

/* BUTTON (CLICKABLE FEEL) */
.vehicle-btn {
    background: #FFD700;
    color: #000;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    gap: 6px;
    align-items: center;
    transition: 0.3s;
}

    .vehicle-btn:hover {
        transform: scale(1.05);
    }

/* MOBILE */
@media (min-width: 768px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 44px;
    }
}



/* SECTION */
.premium-banners {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* CONTAINER */
.premium-banners-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.banners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* CARD BASE */
.banner-card {
    border-radius: 18px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
    background: rgba(26,28,46,0.9);
    transition: 0.3s;
}

    /* HOVER = CLICKABLE FEEL */
    .banner-card:hover {
        transform: translateY(-6px);
        border-color: #FFD700;
        box-shadow: 0 12px 35px rgba(255,215,0,0.12);
    }

/* ICON */
.banner-icon {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 10px;
}

/* TAG */
.banner-tag {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #FFD700;
    border-radius: 30px;
    font-size: 11px;
    color: #FFD700;
    margin-bottom: 10px;
}

/* TITLE */
.banner-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.banner-desc {
    font-size: 13px;
    color: #f2f2f2;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* FEATURES */
.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #fff;
    margin-bottom: 15px;
}

    .banner-features span i {
        color: #FFD700;
        margin-right: 5px;
    }

/* BUTTON (IMPORTANT CLICK FEEL) */
.banner-btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 14px;
    background: #FFD700;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

    .banner-btn:hover {
        transform: scale(1.05);
    }

/* MOBILE RESPONSIVE */
@media (min-width: 768px) {
    .banners-grid {
        grid-template-columns: 1fr 1fr;
    }

    .banner-title {
        font-size: 26px;
    }
}




.luxury-testimonials {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* container */
.luxury-testimonials-container {
    max-width: 1200px;
    margin: auto;
}

/* header */
.luxury-testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.luxury-badge {
    display: inline-flex;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #FFD700;
    border-radius: 30px;
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 15px;
}

.luxury-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.luxury-subtitle {
    color: #e6e6e6;
    font-size: 15px;
    max-width: 600px;
    margin: 10px auto;
}

.luxury-divider {
    width: 80px;
    height: 3px;
    background: #FFD700;
    margin: 15px auto;
}

/* GRID */
.luxury-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* CARD */
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

    /* hover = clickable feel */
    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: #FFD700;
        box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    }

/* quote */
.quote-icon {
    font-size: 40px;
    color: #FFD700;
    opacity: 0.8;
}

/* TEXT (FIXED VISIBILITY) */
.testimonial-text {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    margin: 10px 0 20px;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #ffb300);
}

.user-info h4 {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.user-info span {
    font-size: 12px;
    color: #ccc;
}

/* rating */
.rating {
    margin-top: 10px;
    color: #FFD700;
    letter-spacing: 2px;
}

/* FOOTER */
.luxury-testimonials-footer {
    margin-top: 40px;
    text-align: center;
}

.trust-box {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 12px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.3);
    color: #fff;
    font-size: 13px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .luxury-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .luxury-title {
        font-size: 42px;
    }
}






:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* SECTION */
.premium-contact-section {
    background: radial-gradient(circle at top, #232542, var(--dark));
    padding: 80px 15px;
    color: white;
}

/* CONTAINER */
.premium-contact-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-badge {
    display: inline-flex;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-weight: 600;
}

.contact-title {
    font-size: 34px;
    font-weight: 800;
    color: white;
    margin-top: 10px;
}

.contact-subtitle {
    color: #cfcfcf;
    max-width: 600px;
    margin: auto;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* CARDS */
.form-card, .info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 18px;
    padding: 25px;
    backdrop-filter: blur(12px);
}

/* INPUTS */
.form-group-modern {
    position: relative;
    margin-bottom: 15px;
}

.modern-input {
    width: 100%;
    padding: 14px 14px 14px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #232542;
    color: white;
    outline: none;
    transition: 0.3s;
}

    .modern-input:focus {
        border-color: var(--gold);
        box-shadow: 0 0 12px rgba(255,215,0,0.25);
    }

/* ICON */
.input-icon {
    position: absolute;
    left: 12px;
    top: 14px;
    color: var(--gold);
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--gold), #ffb400);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    color: black;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255,215,0,0.3);
    }

/* INFO ITEMS */
.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

    .info-item i {
        color: var(--gold);
        font-size: 18px;
        margin-top: 3px;
    }

/* SOCIAL */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        color: white;
        transition: 0.3s;
    }

        .social-links a:hover {
            background: var(--gold);
            color: black;
            transform: translateY(-3px);
        }

/* RESPONSIVE */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-title {
        font-size: 42px;
    }
}

:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* SECTION */
.premium-vendors {
    background: radial-gradient(circle at top, #232542, var(--dark));
    padding: 60px 0;
    overflow: hidden;
    color: white;
}

/* CONTAINER */
.vendors-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    text-align: center;
}

/* HEADER */
.vendors-badge {
    display: inline-flex;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vendors-header h3 {
    font-size: 30px;
    font-weight: 800;
    color: white;
}

.vendors-subtitle {
    color: #cfcfcf;
    font-size: 14px;
    max-width: 600px;
    margin: 10px auto 25px;
    line-height: 1.6;
}

/* MARQUEE WRAPPER */
.vendors-marquee {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.vendors-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

/* PAUSE ON HOVER */
.vendors-marquee:hover .vendors-track {
    animation-play-state: paused;
}

/* LOGO CARD (TEXT BASED FOR VISIBILITY) */
.vendor-logo {
    min-width: 160px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    color: white;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 14px;
    text-align: center;
    transition: 0.3s;
    user-select: none;
    white-space: nowrap;
}

    /* HOVER EFFECT (IMPORTANT FOR PREMIUM FEEL) */
    .vendor-logo:hover {
        transform: translateY(-6px) scale(1.05);
        background: rgba(255,215,0,0.1);
        border-color: var(--gold);
        color: var(--gold);
        box-shadow: 0 10px 25px rgba(255,215,0,0.15);
    }

/* ANIMATION */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .vendor-logo {
        min-width: 130px;
        font-size: 12px;
        padding: 14px;
    }

    .vendors-header h3 {
        font-size: 22px;
    }
}







/* SECTION */
.premium-inventory-section {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* HEADER */
.inventory-header {
    text-align: center;
    margin-bottom: 40px;
}

.inventory-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 10px;
}

.inventory-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.inventory-subtitle {
    color: #f2f2f2;
    font-size: 14px;
}

/* STATS */
.inventory-stats {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.stat-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 12px;
    color: #fff;
}

/* GRID */
.inventory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* CARD */
.inventory-card {
    background: rgba(26,28,46,0.9);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

    /* HOVER */
    .inventory-card:hover {
        transform: translateY(-6px);
        border-color: #FFD700;
        box-shadow: 0 12px 35px rgba(255,215,0,0.12);
    }

/* IMAGE */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BADGE */
.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFD700;
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* CONTENT */
.card-content {
    padding: 15px;
}

/* TITLE */
.car-header h3 {
    font-size: 18px;
    color: #fff;
}

.car-header span {
    color: #FFD700;
    font-size: 12px;
}

/* PRICE */
.car-price {
    font-size: 22px;
    font-weight: 800;
    color: #FFD700;
    margin: 8px 0;
}

/* SPECS */
.car-specs {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #f2f2f2;
    flex-wrap: wrap;
}

/* DESCRIPTION */
.car-description {
    font-size: 13px;
    color: #f2f2f2;
    margin: 10px 0;
}

/* BUTTONS */
.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary {
    background: #FFD700;
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    transition: 0.3s;
}

    /* CLICK FEEL */
    .btn-primary:hover {
        transform: translateY(-2px);
    }

.btn-icon {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,215,0,0.2);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
}

/* MOBILE */
@media (min-width: 768px) {
    .inventory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}





/* ===========================
   GLOBAL VISIBILITY FIX
   =========================== */

.car-details-premium,
.container {
    background: #0f111a;
    color: #ffffff;
}

    /* Force ALL text visible */
    .container,
    .container * {
        color: #ffffff !important;
    }

/* Muted text override */
.text-muted {
    color: #d6d6d6 !important;
}

/* ===========================
   IMAGE AREA
   =========================== */

#mainCarImage {
    border-radius: 16px;
    background: #1a1d2b;
    padding: 10px;
}

/* Thumbnails */
.img-thumbnail {
    border: 2px solid transparent;
    transition: 0.3s ease;
}

    .img-thumbnail:hover {
        border-color: #F77D0A;
        transform: scale(1.05);
    }

/* ===========================
   TAB BUTTONS (FIX VISIBILITY)
   =========================== */

.tab-buttons-container {
    gap: 10px;
    flex-wrap: wrap;
}

.tab-button {
    flex: 1;
    padding: 12px 10px;
    border-radius: 10px;
    border: none;
    background: #1c2030;
    color: #fff !important;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    min-width: 120px;
}

    .tab-button:hover {
        background: #F77D0A;
        color: #000 !important;
    }

    .tab-button.active {
        background: #F77D0A;
        color: #000 !important;
    }

/* ===========================
   CONTENT CARD
   =========================== */

.card.shadow-sm {
    background: #161a28;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tables */
.table,
.table th,
.table td {
    color: #ffffff !important;
}

    .table th {
        color: #F77D0A !important;
    }

/* Price visibility */
.fw-bold.h4 {
    color: #F77D0A !important;
}

/* ===========================
   FEATURES LIST
   =========================== */

.list-group-item {
    background: transparent !important;
    border: none;
    color: #ffffff !important;
}

/* ===========================
   FLOATING BUTTONS FIX (IMPORTANT)
   =========================== */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999; /* FIX: always on top */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* BUTTON BASE */
.float-btn {
    background: #F77D0A;
    color: #000 !important;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: 0.3s ease;
}

    /* SECOND BUTTON */
    .float-btn:not(.float-btn-pay) {
        background: #1e2235;
        color: #fff !important;
        border: 1px solid #F77D0A;
    }

    .float-btn:hover {
        transform: translateY(-4px);
    }

/* ===========================
   RECOMMENDED CARS FIX
   =========================== */

.car-card {
    background: #161a28;
    color: #fff;
}

    .car-card .card-title,
    .car-card p {
        color: #fff !important;
    }

.view-btn {
    background: #F77D0A;
    color: #000 !important;
    font-weight: 600;
    border: none;
}

    .view-btn:hover {
        background: #ff9a2f;
    }

/* ===========================
   MOBILE FIX
   =========================== */

@media (max-width: 768px) {

    .tab-buttons-container {
        flex-direction: column;
    }

    .floating-buttons {
        right: 10px;
        bottom: 10px;
        width: 90%;
    }

    .float-btn {
        justify-content: center;
    }
}





:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* SECTION BACKGROUND */
.premium-brand-section {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* CONTAINER */
.premium-brand-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.brand-header {
    text-align: center;
    margin-bottom: 40px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 15px;
    background: rgba(255,215,0,0.08);
}

.brand-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff; /* ✅ FIX: strong visibility */
    line-height: 1.3;
}

    .brand-title span {
        color: var(--gold);
    }

.brand-divider {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto;
}

.brand-subtitle {
    color: #e6e6e6; /* ✅ FIX: readable on dark */
    font-size: 14px;
    max-width: 600px;
    margin: auto;
}

/* GRID */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* CARD */
.brand-card {
    text-decoration: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    /* hover glow */
    .brand-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255,215,0,0.15), transparent);
        opacity: 0;
        transition: 0.4s;
    }

    .brand-card:hover::before {
        opacity: 1;
    }

    /* hover effect */
    .brand-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
    }

/* ICON */
.brand-icon {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
}

/* BRAND NAME (MOST IMPORTANT FIX) */
.brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff; /* ✅ FIX: ensures visibility */
    margin-bottom: 8px;
}

/* ACTION TEXT */
.brand-action {
    font-size: 12px;
    color: var(--gold);
    opacity: 0.9;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-title {
        font-size: 22px;
    }

    .brand-card {
        padding: 18px;
    }
}






:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* SECTION */
.premium-cars-section {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* CONTAINER */
.premium-cars-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.cars-header {
    text-align: center;
    margin-bottom: 40px;
}

.cars-badge {
    display: inline-flex;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-size: 12px;
    background: rgba(255,215,0,0.08);
    margin-bottom: 10px;
}

.cars-title {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff; /* FIX: visibility */
}

    .cars-title span {
        color: var(--gold);
    }

.cars-divider {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto;
}

/* GRID */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.car-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

    .car-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold);
    }

/* IMAGE */
.car-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .car-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;
    }

.car-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.car-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,28,46,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.car-card:hover .car-overlay {
    opacity: 1;
}

.car-overlay a {
    background: var(--gold);
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

/* CONTENT */
.car-content {
    padding: 15px;
}

.car-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff; /* FIX */
    margin-bottom: 10px;
}

    .car-title span {
        color: var(--gold);
    }

/* PRICE */
.car-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .car-price .label {
        color: #ccc;
        font-size: 12px;
    }

    .car-price .value {
        color: var(--gold);
        font-weight: bold;
    }

/* INFO */
.car-info {
    font-size: 13px;
    color: #e6e6e6;
    margin-bottom: 10px;
}

    .car-info i {
        color: var(--gold);
        margin-right: 5px;
    }

/* DESCRIPTION */
.car-desc {
    font-size: 13px;
    color: #d6d6d6; /* FIX visibility */
    margin-bottom: 15px;
    line-height: 1.5;
}

/* BUTTON */
.car-btn {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

    .car-btn:hover {
        transform: scale(1.03);
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cars-grid {
        grid-template-columns: 1fr;
    }

    .cars-title {
        font-size: 22px;
    }
}




:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* SECTION */
.electric-section {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: white;
}

/* CONTAINER */
.electric-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.electric-header {
    text-align: center;
    margin-bottom: 40px;
}

.electric-badge {
    display: inline-flex;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 15px;
    background: rgba(255,215,0,0.08);
}

.electric-title {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff; /* FIX: visibility */
}

    .electric-title span {
        color: var(--gold);
    }

.electric-divider {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto;
}

.electric-subtitle {
    color: #e6e6e6;
    font-size: 14px;
    max-width: 600px;
    margin: auto;
}

/* GRID */
.electric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.electric-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    /* glow hover */
    .electric-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255,215,0,0.15), transparent);
        opacity: 0;
        transition: 0.4s;
    }

    .electric-card:hover::before {
        opacity: 1;
    }

    .electric-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
    }

/* ICON */
.electric-icon {
    font-size: 26px;
    color: var(--gold);
}

/* TEXT (CRITICAL FIX FOR VISIBILITY) */
.electric-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff; /* FIX */
    margin: 0;
}

.electric-text p {
    font-size: 13px;
    color: #dcdcdc; /* FIX readability */
    margin: 3px 0 0;
}

/* ACTION */
.electric-action {
    font-size: 12px;
    color: var(--gold);
    white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {
    .electric-grid {
        grid-template-columns: 1fr;
    }

    .electric-card {
        flex-direction: column;
        text-align: center;
    }
}





:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* SECTION */
.premium-ev-section {
    background: radial-gradient(circle at top, #232542, #1a1c2e);
    padding: 80px 15px;
    color: #fff;
}

/* CONTAINER */
.premium-ev-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.ev-header {
    text-align: center;
    margin-bottom: 40px;
}

.ev-badge {
    display: inline-flex;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    background: rgba(255,215,0,0.08);
    margin-bottom: 12px;
}

.ev-title {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff; /* 🔥 FIX VISIBILITY */
}

    .ev-title span {
        color: var(--gold);
    }

.ev-divider {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto;
}

.ev-subtitle {
    color: #e6e6e6; /* 🔥 FIX VISIBILITY */
    font-size: 14px;
    max-width: 600px;
    margin: auto;
}

/* GRID */
.ev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.ev-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: 0.3s;
}

    .ev-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
    }

/* IMAGE */
.ev-image {
    position: relative;
}

    .ev-image img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.ev-badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: var(--gold);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* CONTENT */
.ev-content {
    padding: 15px;
}

/* TITLE ROW */
.ev-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ev-car-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff; /* 🔥 FIX */
}

.ev-year {
    font-size: 12px;
    color: var(--gold);
}

/* PRICE */
.ev-price {
    margin-top: 8px;
    color: var(--gold);
    font-weight: bold;
    display: flex;
    gap: 6px;
    align-items: center;
}

/* SPECS */
.ev-specs {
    margin-top: 8px;
    font-size: 12px;
    color: #eaeaea;
}

/* DESCRIPTION */
.ev-desc {
    font-size: 13px;
    color: #dcdcdc;
    margin-top: 10px;
    line-height: 1.5;
}

/* BUTTON */
.ev-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    width: 100%;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

    .ev-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255,215,0,0.25);
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .ev-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ev-grid {
        grid-template-columns: 1fr;
    }

    .ev-title {
        font-size: 22px;
    }
}


.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999;
}

.float-btn {
    background-color: #F77D0A;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .float-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 8px rgba(0,0,0,0.3);
    }

.float-btn-pay {
    background-color: #F77D0A;
}

.float-btn i {
    margin-right: 8px;
}

.mb-2 {
    margin-bottom: 10px;
}


.brands-section {
    background: #1a1c2e;
    padding: 70px 0;
}

.brands-header {
    text-align: center;
    margin-bottom: 40px;
}

    .brands-header h2 {
        color: #fff;
        font-size: 34px;
        font-weight: 800;
    }

    .brands-header p {
        color: rgba(255,255,255,.6);
        margin-top: 8px;
    }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

/* BRAND CARD */
.brand-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: .25s;
}

    .brand-card:hover {
        transform: translateY(-5px);
        border-color: #FFD700;
        box-shadow: 0 10px 25px rgba(0,0,0,.3);
    }

.brand-name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.brand-sub {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
}

.brand-right span {
    background: #FFD700;
    color: #1a1c2e;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
}

/* MOBILE FIX (IMPORTANT) */
@media(max-width:768px) {

    .brands-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .brand-card {
        padding: 16px;
    }

    .brands-header h2 {
        font-size: 26px;
    }
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.car-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: .25s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

    .car-card:hover {
        transform: translateY(-6px);
    }

.car-image {
    height: 210px;
    overflow: hidden;
    background: #eee;
}

    .car-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.car-content {
    padding: 16px;
}

.car-price {
    font-size: 20px;
    font-weight: 800;
    color: #1a1c2e;
}

.car-title {
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
    color: #222;
    min-height: 40px;
}

.car-meta {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

    .car-meta span {
        background: #f5f6fa;
        padding: 4px 8px;
        border-radius: 10px;
    }

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.location {
    font-size: 12px;
    color: #777;
}

    .location i {
        color: #FFD700;
    }

.cta {
    background: #1a1c2e;
    color: #FFD700;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* MOBILE FIX */
@media(max-width:768px) {

    .cars-grid {
        grid-template-columns: repeat(1,1fr);
        gap: 14px;
    }

    .car-image {
        height: 220px;
    }
}

/* =========================
   PAGE BACKGROUND
========================= */
body {
    background: #1a1c2e;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

/* =========================
   HERO SECTION
========================= */
.cars-hero {
    background: linear-gradient(135deg, #1a1c2e, #0f1020);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

    .cars-hero h1 {
        color: #FFD700;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cars-hero p {
        color: #d1d1d1;
        font-size: 16px;
    }

/* =========================
   FILTER BAR
========================= */
.filter-bar {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

    .filter-bar label {
        color: #FFD700;
        font-size: 13px;
        margin-bottom: 5px;
        display: block;
    }

    .filter-bar select,
    .filter-bar input {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: #111325;
        color: #fff;
        outline: none;
    }

        .filter-bar select:focus,
        .filter-bar input:focus {
            border-color: #FFD700;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

/* =========================
   BUTTONS
========================= */
.btn-filter {
    width: 100%;
    padding: 10px;
    background: #FFD700;
    color: #1a1c2e;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-filter:hover {
        background: #e6c200;
        transform: translateY(-2px);
    }

.btn-reset {
    display: block;
    text-align: center;
    padding: 10px;
    color: #FFD700;
    border: 1px solid #FFD700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-reset:hover {
        background: #FFD700;
        color: #1a1c2e;
    }

/* =========================
   RESULTS TEXT
========================= */
.results-count {
    margin: 20px 0;
    color: #d1d1d1;
}

    .results-count strong {
        color: #FFD700;
    }

/* =========================
   CAR CARD
========================= */
.car-card {
    display: block;
    text-decoration: none;
    background: #111325;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

    .car-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        border-color: #FFD700;
    }

/* IMAGE */
.car-image {
    position: relative;
    height: 200px;
    background: #0f1020;
}

    .car-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #FFD700;
    font-size: 40px;
}

/* PRICE BADGE */
.price-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #FFD700;
    color: #1a1c2e;
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 20px;
}

/* BODY */
.car-body {
    padding: 15px;
}

.car-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

/* SPECS */
.car-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #cfcfcf;
}

    .car-specs span {
        background: rgba(255, 255, 255, 0.05);
        padding: 5px 8px;
        border-radius: 6px;
    }

/* FOOTER */
.car-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    align-items: center;
}

.location {
    font-size: 12px;
    color: #aaa;
}

.cta {
    color: #FFD700;
    font-weight: bold;
    font-size: 13px;
}

/* =========================
   NO RESULTS
========================= */
.no-results {
    text-align: center;
    padding: 50px;
    color: #aaa;
}

    .no-results i {
        font-size: 50px;
        color: #FFD700;
        margin-bottom: 10px;
    }


/* =========================
   FILTER BAR PREMIUM DESIGN
========================= */
.filter-bar {
    background: rgba(26, 28, 46, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* labels */
.filter-item label {
    color: #FFD700;
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

/* inputs */
.filter-bar select,
.filter-bar input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #111325;
    color: #fff;
    outline: none;
    transition: 0.3s ease;
}

    /* focus glow */
    .filter-bar select:focus,
    .filter-bar input:focus {
        border-color: #FFD700;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.35);
        transform: translateY(-2px);
    }

/* =========================
   BUTTONS
========================= */
.btn-filter {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #FFD700, #ffcc00);
    color: #1a1c2e;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.25);
}

/* bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.btn-filter:hover {
    animation: bounce 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.45);
}

/* reset button */
.btn-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 10px;
    border: 1px solid #FFD700;
    color: #FFD700;
    text-decoration: none;
    transition: 0.3s;
    height: 100%;
}

    .btn-reset:hover {
        background: #FFD700;
        color: #1a1c2e;
        transform: rotate(8deg) scale(1.05);
    }

/* =========================
   ICONS INSIDE LABELS
========================= */
.filter-item i {
    margin-right: 5px;
    color: #FFD700;
}

/* =========================
   MOBILE FIX (JOIN FEEL)
========================= */
@media (max-width: 768px) {

    .filter-bar .col-md-1,
    .filter-bar .col-md-2,
    .filter-bar .col-md-3 {
        width: 100%;
    }

    .btn-filter {
        margin-top: 5px;
    }

    .btn-reset {
        margin-top: 5px;
    }
}

/* =========================
   CAR CARD BASE (PREMIUM STYLE)
========================= */
.car-card {
    display: block;
    text-decoration: none;
    background: #111325;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.12);
    transition: all 0.35s ease;
    position: relative;
    transform: translateZ(0);
}

    /* DESKTOP HOVER EFFECT */
    .car-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
        border-color: #FFD700;
    }

/* =========================
   MOBILE TAP EFFECT (IMPORTANT)
========================= */
@media (max-width: 768px) {
    .car-card:active {
        transform: scale(0.97);
        transition: 0.15s ease;
    }
}

/* =========================
   IMAGE SECTION
========================= */
.car-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0f1020;
}

    /* IMAGE ZOOM ON HOVER */
    .car-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.car-card:hover .car-image img {
    transform: scale(1.08);
}

/* NO IMAGE STYLE */
.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #FFD700;
    font-size: 40px;
}

/* =========================
   PRICE BADGE (FLOAT + PULSE)
========================= */
.price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FFD700, #ffcc00);
    color: #1a1c2e;
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
    transition: 0.3s;
}

/* pulse animation */
@keyframes pulseGold {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.car-card:hover .price-badge {
    animation: pulseGold 0.8s ease;
}

/* =========================
   BODY SECTION
========================= */
.car-body {
    padding: 15px;
}

/* TITLE */
.car-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    transition: 0.3s;
}

.car-card:hover .car-title {
    color: #FFD700;
}

/* =========================
   SPECS (ICONS ENHANCED)
========================= */
.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #cfcfcf;
}

    .car-specs span {
        background: rgba(255, 255, 255, 0.05);
        padding: 5px 8px;
        border-radius: 6px;
        transition: 0.3s;
    }

        /* ICON GLOW */
        .car-specs span i {
            color: #FFD700;
            margin-right: 4px;
            transition: 0.3s;
        }

/* hover effect */
.car-card:hover .car-specs span {
    background: rgba(255, 215, 0, 0.08);
}

/* =========================
   FOOTER
========================= */
.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

/* LOCATION */
.location {
    font-size: 12px;
    color: #aaa;
    transition: 0.3s;
}

.car-card:hover .location {
    color: #FFD700;
}

/* =========================
   CTA BUTTON (ANIMATED)
========================= */
.cta {
    background: #FFD700;
    color: #1a1c2e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* hover bounce */
.car-card:hover .cta {
    transform: scale(1.08);
}

/* ripple effect */
.cta::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.car-card:hover .cta::after {
    width: 180px;
    height: 180px;
}


@media (max-width: 768px) {

    /* card spacing clean on mobile */
    .car-card {
        margin-bottom: 15px;
    }

        /* softer hover replaced with tap */
        .car-card:hover {
            transform: none;
            box-shadow: none;
        }

        /* tap feedback */
        .car-card:active {
            transform: scale(0.96);
            background: #0f1020;
        }

    /* CTA full touch-friendly */
    .cta {
        padding: 8px 14px;
        font-size: 13px;
    }

    /* image slightly shorter for mobile */
    .car-image {
        height: 190px;
    }
}

/* =========================
   BASE THEME
========================= */
body {
    background: #0f1220;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceSoft {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* =========================
   HERO / GALLERY
========================= */
.detail-hero {
    background: linear-gradient(180deg, var(--dark), #0f1220);
    padding-bottom: 20px;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    border-radius: 18px;
    overflow: hidden;
    animation: fadeUp .6s ease;
}

.detail-gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .4s ease;
}

    .detail-gallery-main img:hover {
        transform: scale(1.03);
    }

.detail-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

    .detail-gallery-side img {
        width: 100%;
        height: 205px;
        object-fit: cover;
        transition: .3s ease;
    }

        .detail-gallery-side img:hover {
            transform: scale(1.05);
        }

/* =========================
   ALL PHOTOS BUTTON
========================= */
.all-photos-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(26, 28, 46, 0.9);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
    animation: bounceSoft 2.5s infinite;
}

    .all-photos-btn:hover {
        background: var(--gold);
        color: #000;
        transform: scale(1.05);
    }

/* =========================
   TITLE BAR
========================= */
.detail-title-bar {
    background: var(--dark);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    animation: fadeUp .8s ease;
}

    .detail-title-bar h1 {
        font-size: 26px;
        margin: 8px 0;
    }

.price {
    color: var(--gold);
    font-size: 22px;
    font-weight: bold;
}

/* badges */
.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold);
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 5px;
    font-size: 13px;
}

/* =========================
   SECTION CARDS
========================= */
.section-card {
    background: rgba(26, 28, 46, 0.85);
    border: 1px solid rgba(255,215,0,0.08);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
    animation: fadeUp .6s ease;
    transition: .3s ease;
}

    .section-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255,215,0,0.3);
    }

    .section-card h4 {
        color: var(--gold);
        margin-bottom: 12px;
    }

/* =========================
   SPECS GRID
========================= */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 10px;
    transition: .3s;
}

    .spec-item:hover {
        background: rgba(255,215,0,0.08);
    }

.spec-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.spec-value {
    font-weight: 600;
    color: #fff;
}

/* =========================
   LIST ITEMS
========================= */
.list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

    .list-item i {
        color: var(--gold);
    }

.list-item-flaw i {
    color: #ff4d4d;
}

/* =========================
   RIGHT PRICE CARD
========================= */
.price-card {
    background: linear-gradient(145deg, var(--dark), #111327);
    border: 1px solid rgba(255,215,0,0.15);
    padding: 20px;
    border-radius: 18px;
    position: sticky;
    top: 20px;
    animation: fadeUp .8s ease;
}

/* =========================
   ENQUIRE BUTTON (BOLD CTA)
========================= */
.btn-contact {
    display: block;
    text-align: center;
    background: var(--gold);
    color: #000;
    padding: 12px;
    border-radius: 30px;
    margin-top: 12px;
    font-weight: bold;
    transition: .3s ease;
    animation: bounceSoft 2s infinite;
}

    .btn-contact:hover {
        transform: scale(1.05);
        background: #fff;
    }

/* =========================
   BACK BUTTON
========================= */
.btn-back {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
}

    .btn-back:hover {
        color: var(--gold);
        transform: translateX(-3px);
    }

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

    /* stack gallery */
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    /* join cards visually */
    .section-card {
        margin-bottom: 0;
        border-radius: 0;
    }

        .section-card + .section-card {
            border-top: 0;
        }

    /* join search/reset idea (if you have buttons) */
    .btn-group-mobile {
        display: flex;
        gap: 0;
    }

        .btn-group-mobile button {
            flex: 1;
            border-radius: 0;
        }

    .spec-grid {
        grid-template-columns: 1fr;
    }
}






/* =========================
   BASE THEME
========================= */
body {
    background: #0f1220;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --gold: #FFD700;
    --dark: #1a1c2e;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceSoft {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* =========================
   HERO / GALLERY
========================= */
.detail-hero {
    background: linear-gradient(180deg, var(--dark), #0f1220);
    padding-bottom: 20px;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    border-radius: 18px;
    overflow: hidden;
    animation: fadeUp .6s ease;
}

.detail-gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .4s ease;
}

    .detail-gallery-main img:hover {
        transform: scale(1.03);
    }

.detail-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

    .detail-gallery-side img {
        width: 100%;
        height: 205px;
        object-fit: cover;
        transition: .3s ease;
    }

        .detail-gallery-side img:hover {
            transform: scale(1.05);
        }

/* =========================
   ALL PHOTOS BUTTON
========================= */
.all-photos-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(26, 28, 46, 0.9);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
    animation: bounceSoft 2.5s infinite;
}

    .all-photos-btn:hover {
        background: var(--gold);
        color: #000;
        transform: scale(1.05);
    }

/* =========================
   TITLE BAR
========================= */
.detail-title-bar {
    background: var(--dark);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    animation: fadeUp .8s ease;
}

    .detail-title-bar h1 {
        font-size: 26px;
        margin: 8px 0;
    }

.price {
    color: var(--gold);
    font-size: 22px;
    font-weight: bold;
}

/* badges */
.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold);
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 5px;
    font-size: 13px;
}

/* =========================
   SECTION CARDS
========================= */
.section-card {
    background: rgba(26, 28, 46, 0.85);
    border: 1px solid rgba(255,215,0,0.08);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
    animation: fadeUp .6s ease;
    transition: .3s ease;
}

    .section-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255,215,0,0.3);
    }

    .section-card h4 {
        color: var(--gold);
        margin-bottom: 12px;
    }

/* =========================
   SPECS GRID
========================= */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 10px;
    transition: .3s;
}

    .spec-item:hover {
        background: rgba(255,215,0,0.08);
    }

.spec-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.spec-value {
    font-weight: 600;
    color: #fff;
}

/* =========================
   LIST ITEMS
========================= */
.list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

    .list-item i {
        color: var(--gold);
    }

.list-item-flaw i {
    color: #ff4d4d;
}

/* =========================
   RIGHT PRICE CARD
========================= */
.price-card {
    background: linear-gradient(145deg, var(--dark), #111327);
    border: 1px solid rgba(255,215,0,0.15);
    padding: 20px;
    border-radius: 18px;
    position: sticky;
    top: 20px;
    animation: fadeUp .8s ease;
}

/* =========================
   ENQUIRE BUTTON (BOLD CTA)
========================= */
.btn-contact {
    display: block;
    text-align: center;
    background: var(--gold);
    color: #000;
    padding: 12px;
    border-radius: 30px;
    margin-top: 12px;
    font-weight: bold;
    transition: .3s ease;
    animation: bounceSoft 2s infinite;
}

    .btn-contact:hover {
        transform: scale(1.05);
        background: #fff;
    }

/* =========================
   BACK BUTTON
========================= */
.btn-back {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
}

    .btn-back:hover {
        color: var(--gold);
        transform: translateX(-3px);
    }

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

    /* stack gallery */
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    /* join cards visually */
    .section-card {
        margin-bottom: 0;
        border-radius: 0;
    }

        .section-card + .section-card {
            border-top: 0;
        }

    /* join search/reset idea (if you have buttons) */
    .btn-group-mobile {
        display: flex;
        gap: 0;
    }

        .btn-group-mobile button {
            flex: 1;
            border-radius: 0;
        }

    .spec-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================
   FLOATING ACTIONS WRAPPER
========================= */
.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* =========================
   BUTTON BASE STYLE
========================= */
.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: all .3s ease;
    animation: bounceSoft 2.5s infinite;
    white-space: nowrap;
}

    /* icons */
    .fab i {
        font-size: 20px;
    }

    /* =========================
   WHATSAPP BUTTON
========================= */
    .fab.whatsapp {
        background: #25D366;
        color: #fff;
    }

    /* =========================
   ENQUIRE / PAY BUTTON
========================= */
    .fab.enquire {
        background: var(--gold);
        color: #000;
    }

    /* =========================
   HOVER EFFECT
========================= */
    .fab:hover {
        transform: scale(1.08);
        animation: none;
    }

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .floating-actions {
        right: 12px;
        bottom: 12px;
    }

    /* compact mode on mobile */
    .fab span {
        font-size: 13px;
    }

    .fab {
        padding: 10px 14px;
    }
}


.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


/* full screen modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 15px;
}

    /* show modal */
    .modal-overlay.active {
        display: block;
    }

/* scroll gallery container */
.modal-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 900px;
    margin: auto;
}

/* images */
.modal-photo {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: .3s ease;
}

    .modal-photo:hover {
        transform: scale(1.02);
    }

/* close button */
.modal-close {
    position: fixed;
    top: 15px;
    right: 15px;
    background: #FFD700;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

/* hide old nav buttons */
.modal-nav,
.modal-counter {
    display: none;
}



/* full screen modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    z-index: 9999;
}

    .modal-overlay.active {
        display: block;
    }

/* swipe container */
.modal-gallery {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    height: 100vh;
    scroll-behavior: smooth;
}

    /* hide scrollbar */
    .modal-gallery::-webkit-scrollbar {
        display: none;
    }

/* each image page */
.modal-photo {
    flex: 0 0 100%;
    width: 100%;
    height: 100vh;
    object-fit: contain;
    scroll-snap-align: center;
}

/* close button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 10000;
}

/* counter */
.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFD700;
    font-weight: bold;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 20px;
}




:root {
    --dark: #1a1c2e;
    --gold: #FFD700;
    --glass: #23263d;
}

/* PAGE BACKGROUND */
body {
    background: var(--dark);
    color: white;
}

/* STEP BUTTONS */
.step-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

    .step-nav button {
        flex: 1;
        padding: 15px;
        font-weight: 700;
        border-radius: 14px;
        border: 2px solid #FFD700;
        background: #23263d;
        color: #FFD700;
    }

        .step-nav button:hover {
            background: #FFD700;
            color: #1a1c2e;
        }
/* CARD DESIGN */
.card {
    background: #23263d;
    border: 1px solid rgba(255,215,0,.15);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: all .3s ease;
}

    .card:hover {
        border-color: rgba(255,215,0,.5);
        transform: translateY(-2px);
    }
/* CONNECT CARDS ON DESKTOP */
@media(min-width: 768px) {
    .card {
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

        .card:first-of-type {
            border-top-left-radius: 14px;
            border-top-right-radius: 14px;
        }

        .card:last-of-type {
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
            border-bottom: 1px solid rgba(255,215,0,0.2);
        }
}

/* HEADERS */
.card-header {
    background: linear-gradient( 90deg, rgba(255,215,0,.18), rgba(255,215,0,.05) );
    border-bottom: 2px solid rgba(255,215,0,.25);
    padding: 16px 20px;
}

    .card-header h3,
    .card-header h4 {
        margin: 0;
        color: #FFD700;
        font-weight: 700;
        font-size: 1.1rem;
    }
label {
    display: block;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}
/* INPUTS */
.form-control {
    background: #161828;
    border: 2px solid #2f344f;
    color: #fff;
    border-radius: 12px;
    min-height: 48px;
    padding: 12px 15px;
    font-size: 15px;
}

    .form-control::placeholder {
        color: #9ea4b8;
    }

    .form-control:focus {
        background: #161828;
        color: white;
        border-color: #FFD700;
        box-shadow: 0 0 0 4px rgba(255,215,0,.15);
    }
/* BUTTONS */
.btn {
    border-radius: 12px;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* GOLD PRIMARY BUTTON */
.btn-primary, .btn-success {
    background: var(--gold);
    border: none;
    color: var(--dark);
    font-weight: 600;
}

    .btn-primary:hover,
    .btn-success:hover {
        transform: scale(1.05);
        animation: bounce 0.4s;
    }

/* DARK BUTTON */
.btn-dark {
    background: #111425;
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* DANGER / INFO polish */
.btn-danger, .btn-info {
    border-radius: 12px;
}

/* BOUNCE ANIMATION */
@keyframes bounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.08);
    }

    60% {
        transform: scale(0.96);
    }

    100% {
        transform: scale(1.05);
    }
}

/* ICON STYLING */
i {
    margin-right: 6px;
    color: var(--gold);
}

/* FIX MOBILE ACTION BUTTON GROUP (optional if you add wrapper) */
.mobile-actions {
    position: sticky;
    bottom: 0;
    background: var(--dark);
    padding: 10px;
    display: flex;
    gap: 10px;
}