:root {
    --color-surgical-white: #FFFFFF;
    --color-sand-beige: #F5F5F0;
    --color-pink-premium: #FF85A2;
    --color-pink-premium-dark: #E6738F;
    --color-text-main: #2D2D2D;
    --color-text-muted: #6B6B6B;
    --color-brand-cyan: #FF85A2;
    --color-brand-cyan-dark: #E6738F;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;

    --transition-premium: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.02);
    --shadow-intense: 0 30px 60px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--color-surgical-white) 0%, var(--color-sand-beige) 100%);
    color: var(--color-text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Luxury Background Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/luxury_texture.webp');
    background-repeat: repeat;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

/* Header Refinement */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-premium);
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 45px;
    width: auto;
}

.brand-text {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.nav-minimalist a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-premium);
}

.nav-minimalist a:hover {
    color: var(--color-brand-cyan);
}

/* Progress System */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 133, 162, 0.2);
    z-index: 200;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-pink-premium) 0%, var(--color-brand-pink-dark) 100%);
    width: 0%;
    transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Main Layout */
.main-container {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
    /* Reduced for tighter feel */
}

.hero-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5rem;
    max-width: 700px;
}

.form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    position: relative;
}

/* Typography Overhaul */
.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

.hero-title strong {
    color: var(--color-brand-cyan);
    font-weight: 700;
    display: block;
    font-style: italic;
}

.text-light {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 450px;
}

/* Luxury Consultation Cards */
.evaluation-card {
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 10;
}

.step {
    display: none;
    opacity: 0;
}

.step.active {
    display: block;
    animation: luxuryEntry 0.8s forwards;
}

@keyframes luxuryEntry {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.question-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-main);
    line-height: 1.2;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.option-btn {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 1.5rem 2rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    text-align: left;
    width: 100%;
}

.option-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-intense);
    border-color: var(--color-pink-premium);
    background-color: var(--color-surgical-white);
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-sand-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-cyan);
    font-size: 1.4rem;
    transition: var(--transition-premium);
    flex-shrink: 0;
}

.option-btn:hover .option-icon {
    background-color: var(--color-pink-premium);
    color: white;
}

.option-btn span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-main);
}

/* Inputs & Form */
.input-group {
    margin-bottom: 2rem;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.modern-input {
    width: 100%;
    padding: 1.5rem;
    background: var(--color-sand-beige);
    border: 1px solid transparent;
    border-radius: 1.5rem;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    transition: var(--transition-premium);
}

.modern-input:focus {
    outline: none;
    background: white;
    border-color: var(--color-brand-cyan);
    box-shadow: 0 0 0 4px rgba(255, 133, 162, 0.3);
}

.btn-primary {
    background: var(--color-brand-cyan);
    background: linear-gradient(135deg, var(--color-brand-cyan) 0%, var(--color-brand-cyan-dark) 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 4rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-premium);
    width: 100%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(255, 133, 162, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 133, 162, 0.5);
}

/* Loading State */
.loading-message {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-main);
    padding: 2rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* Validator Header */
.validator-header {
    background: var(--color-pink-premium);
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--color-text-main);
    font-weight: 600;
}

.validator-header i {
    color: white;
    background: var(--color-text-main);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Dynamic Feedback */
.dynamic-feedback {
    background: rgba(255, 133, 162, 0.1);
    border-left: 4px solid var(--color-brand-cyan);
    padding: 1.2rem 1.8rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    animation: slideInLeft 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.dynamic-feedback p {
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-style: italic;
    line-height: 1.4;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

/* VIP Badge Result */
.vip-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #FFD700;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        padding-top: 80px;
    }

    .hero-side {
        padding: 3rem 2rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .form-side {
        padding: 2rem 1.5rem 5rem;
    }

    .evaluation-card {
        padding: 2rem 1.5rem;
    }

    .header {
        padding: 1rem 1.5rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-minimalist a {
        font-size: 0.75rem;
    }
}