:root {
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --gold: #D4AF37;
    --gold-hover: #F2C94C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F2C94C 100%);
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --gray-dark: #888888;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
    /* Fallback */
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

/* Hero */
.hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?q=80&w=2574&auto=format&fit=crop');
    /* Placeholder car bg */
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-badges {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

/* Benefits */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--gray-dark);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
    /* Center align items vertically if different heights */
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card.recommended {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.pricing-card.elite {
    background: linear-gradient(180deg, #1f1f1f 0%, #101010 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
}


.card-header {
    margin-bottom: 20px;
    text-align: center;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    font-weight: 600;
}

.gold-badge {
    background: var(--gold);
    color: #000;
}

.red-badge {
    background: linear-gradient(135deg, #ff4d4d, #b30000);
    color: white;
}

.card-image-placeholder {
    height: 120px;
    margin-bottom: 20px;
    background-color: #222;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

/* Placeholders imitating the cars in the user image */
.essential-bg {
    background-image: url('https://images.unsplash.com/photo-1542282088-fe8426682b8f?q=80&w=2000&auto=format&fit=crop');
}

/* White sedan */
.recommended-bg {
    background-image: url('https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=2670&auto=format&fit=crop');
}

/* Grey luxury */
.elite-bg {
    background-image: url('https://images.unsplash.com/photo-1580273916550-e323be2eb094?q=80&w=2574&auto=format&fit=crop');
}

/* SUV */

.features-list {
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--gold);
    min-width: 20px;
}

.features-list li.disabled {
    color: var(--gray-dark);
    text-decoration: line-through;
}

.features-list li.disabled i {
    color: #444;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 5px;
}

.price-tag .small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-dark);
}

.price-subtitle {
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Warranty */
.warranty {
    background: linear-gradient(to right, #111, #1a1a1a);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.warranty-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.warranty-text h2 {
    margin-bottom: 15px;
}

.warranty-text p {
    color: var(--gray-light);
    max-width: 600px;
}

.warranty-icon {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.8;
}

/* Checkout */
.checkout-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
select {
    width: 100%;
    padding: 12px 15px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
}

/* 
.payment-options {
    display: flex;
    gap: 15px;
}

.payment-option {
    flex: 1;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #252525;
    transition: all 0.2s;
}

.payment-option input:checked+span {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}
*/

.total-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 0;
    border-top: 1px solid #333;
    margin-top: 20px;
    margin-bottom: 20px;
}

.secure-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #222;
    color: var(--gray-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: var(--white);
    font-size: 1.2rem;
}

.socials a:hover {
    color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .warranty-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

.faq-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s;
    animation: float 3s ease-in-out infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

/* Map */
.map-container iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}