@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary: #FFD700;
    /* Gold */
    --primary-dim: #D4AF37;
    --primary-glow: rgba(255, 215, 0, 0.4);
    --secondary: #050A18;
    /* Near Black */
    --slate: #0F172A;
    --slate-light: #1E293B;
    --accent: #B8860B;
    --white: #FFFFFF;
    --text-main: #F1F5F9;
    --text-dim: #94A3B8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-heavy: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-luxe: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--secondary);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* Animations */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes glowPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px var(--primary-glow));
    }

    50% {
        filter: drop-shadow(0 0 25px var(--primary-glow));
    }
}

.reveal {
    animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 140px 0;
}

/* Navigation Overlay (Mock) */
.nav-mini {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-heavy);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 12px 30px;
    border-radius: 100px;
    z-index: 1000;
    display: flex;
    gap: 30px;
    box-shadow: var(--shadow-luxe);
}

.nav-mini a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.nav-mini a:hover {
    color: var(--primary);
}

/* Hero Section - The Ultra Luxe Reveal */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: url('assets/hero.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--secondary) 15%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 40%, var(--primary-dim));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 50px;
    max-width: 600px;
    border-left: 3px solid var(--primary);
    padding-left: 30px;
}

/* Buttons */
.btn-luxe {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-gold {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-gold:hover {
    background: var(--white);
    transform: translateY(-5px) scale(1.02);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Stats/Trust Bar */
.trust-bar {
    display: flex;
    gap: 60px;
    margin-top: 80px;
}

.stat-item h3 {
    font-family: 'Outfit';
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -5px;
}

/* Calculator Section - Precision Interface */
.calc-section {
    background: radial-gradient(circle at 50% -20%, #1e293b 0%, var(--secondary) 60%);
}

.luxury-card {
    background: var(--glass-heavy);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    box-shadow: var(--shadow-luxe);
}

.calc-form-side {
    padding: 80px;
    border-right: 1px solid var(--glass-border);
}

.calc-display-side {
    padding: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-group {
    margin-bottom: 40px;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
}

.luxury-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    padding: 15px 0;
    font-size: 2rem;
    color: var(--white);
    font-family: 'Playfair Display';
    outline: none;
    transition: var(--transition-smooth);
}

.luxury-input:focus {
    border-color: var(--primary);
}

.luxury-select {
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 12px;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    outline: none;
}

.luxury-select option {
    background-color: var(--slate);
    color: var(--white);
    padding: 10px;
}

/* Results Display */
.res-main {
    text-align: center;
    margin-bottom: 60px;
}

.res-main .val {
    font-size: 6rem;
    font-family: 'Playfair Display';
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.res-grid-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.res-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.res-box .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
}

.res-box .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 5px;
}

/* Features Grid */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 150px;
}

.feature-img {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-luxe);
    position: relative;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.feature-text p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Table Style */
.luxe-table-container {
    background: var(--glass-heavy);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.luxe-table {
    width: 100%;
    border-collapse: collapse;
}

.luxe-table th {
    padding: 25px;
    text-align: left;
    color: var(--primary);
    border-bottom: 1px solid var(--glass-border);
    font-family: 'Outfit';
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luxe-table td {
    padding: 30px 25px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Lead Form - Concierge Style */
.concierge-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    color: var(--secondary);
    padding: 100px;
    border-radius: 40px;
}

.concierge-form h2 {
    color: var(--secondary);
    font-size: 4rem;
    text-align: center;
    margin-bottom: 60px;
}

.concierge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.concierge-input {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    outline: none;
    color: var(--secondary);
}

select.concierge-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23050A18'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    appearance: none;
}

.concierge-input option {
    background: white;
    color: var(--secondary);
}

/* Float WhatsApp */
.wa-luxe {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
}

@media (max-width: 1024px) {

    .luxury-card,
    .feature-row,
    .concierge-grid {
        grid-template-columns: 1fr;
    }

    .calc-form-side,
    .calc-display-side {
        padding: 40px;
        border-right: none;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .concierge-form {
        padding: 40px;
    }
}