/* ===== Refined Luxury Design - House of RAAYAA ===== */
:root {
    /* Sophisticated Color Palette */
    --color-gold: #B8956A;
    --color-gold-dark: #8B7355;
    --color-cream: #F5F1E8;
    --color-charcoal: #2B2B2B;
    --color-charcoal-light: #3A3A3A;
    --color-white: #FFFFFF;
    --color-off-white: #FAFAF8;
    --color-gray: #6B6B6B;
    --color-gray-light: #E8E8E8;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Minimal Shadows */
    --shadow-subtle: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(to bottom, #1C1C1C 0%, #2B2B2B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 149, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md);
    max-width: 850px;
}

.logo-container {
    margin-bottom: 3rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.tagline {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    color: var(--color-cream);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.85;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-cream);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.launching-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 149, 106, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.launching-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(184, 149, 106, 0.35);
}

.launching-badge .shimmer {
    font-size: 0.8rem;
    color: var(--color-cream);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.launching-badge::before {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 1.5px solid var(--color-gold);
    border-radius: 12px;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 28px;
    }
}

/* ===== About Section ===== */
.about {
    padding: calc(var(--spacing-xl) + 2rem) var(--spacing-md) var(--spacing-xl);
    background: var(--color-white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--color-charcoal);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 2rem auto 0;
}

.about-text {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-gray);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
    line-height: 1.75;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-gray-light);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-card::before {
    display: none;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(3) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
    animation: none;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    font-weight: 300;
}

/* ===== Waitlist Section ===== */
.waitlist {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-off-white);
    position: relative;
}

.waitlist::before {
    display: none;
}

.waitlist-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 4rem;
    align-items: start;
}

.waitlist-text {
    padding-top: 1rem;
}

.benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--color-charcoal);
    font-weight: 400;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    margin-right: 0.875rem;
    margin-top: 0.125rem;
    font-weight: 600;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.waitlist-form-container {
    background: var(--color-white);
    padding: 2.5rem;
    border: 1px solid var(--color-gray-light);
    box-shadow: var(--shadow-subtle);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-gray-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: var(--color-white);
    color: var(--color-charcoal);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom dropdown arrow for select */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* State dropdown smooth reveal */
#stateGroup {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

#stateGroup[style*="display: block"] {
    opacity: 1;
    max-height: 200px;
    margin-top: 0;
}

/* Ensure smooth transition when showing */
#stateGroup.show {
    opacity: 1;
    max-height: 200px;
}

.form-group input::placeholder {
    color: #AAA;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--color-charcoal-light);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-shimmer {
    display: none;
}

.form-message {
    padding: 0.875rem 1rem;
    text-align: center;
    font-weight: 400;
    font-size: 0.9rem;
    display: none;
    margin-top: 0.5rem;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
    display: block;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-charcoal);
    padding: 3rem var(--spacing-md);
    color: var(--color-cream);
}

.footer::before {
    display: none;
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-gold);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--color-cream);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    margin: 1.5rem auto;
}

.footer-content p {
    font-size: 0.85rem;
    opacity: 0.6;
    font-weight: 300;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .brand-name {
        letter-spacing: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .waitlist-text {
        text-align: center;
    }

    .waitlist-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
    }

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

    .waitlist-form-container {
        padding: 1.5rem;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}