:root {
    --bg-dark: #0a0c10;
    --bg-accent: #16181d;
    --gold: #c5a059;
    --gold-dim: #a68545;
    --text-white: #f8f9fa;
    --text-gray: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.contact-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: 'RESERVATIONS';
    position: absolute;
    bottom: -5vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.03);
    z-index: 10;
    pointer-events: none;
    letter-spacing: -2vw;
}

.contact-section {
    padding: 15rem 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 20;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12rem;
    align-items: center;
}

.contact-info {
    padding-right: 4rem;
}

.contact-info h2 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 5rem;
    color: var(--text-white);
    letter-spacing: -3px;
}

.info-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.info-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1.5rem;
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 1 !important;
}

.info-item h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.info-item p {
    font-size: 1.4rem;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}

.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
    padding: 6rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    backdrop-filter: blur(20px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.form-group {
    margin-bottom: 3.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    outline: none;
    transition: all 0.5s ease;
    border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.1);
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(197, 160, 89, 0.02);
    border-bottom-color: var(--gold);
    padding-left: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 1.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.btn-submit:hover {
    background: #e5c37f;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
    letter-spacing: 6px;
}

/* Grand Occasions (Events) */
.events-section {
    padding: 15rem 0;
    background: var(--bg-accent);
}

.events-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 12rem;
    align-items: center;
}

.events-img {
    height: 700px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    background: var(--glass);
}

.events-img .placeholder-img {
    height: 100%;
    width: 100%;
}

.events-content h2 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 3rem;
}

.events-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 5rem;
}

.event-stats {
    display: flex;
    gap: 5rem;
    margin-bottom: 6rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 4rem;
}

.e-stat {
    display: flex;
    flex-direction: column;
}

.e-stat .val {
    font-size: 3rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.e-stat .lab {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Arrival Section */
.arrival-section {
    padding: 15rem 0;
    background: var(--bg-dark);
}

.arrival-header {
    margin-bottom: 10rem;
}

.map-wrapper {
    position: relative;
    height: 700px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-bg {
    height: 100%;
    width: 100%;
    filter: grayscale(1) brightness(0.4);
    transform: scale(1.1);
}

.map-card {
    position: absolute;
    top: 50%;
    left: 5rem;
    transform: translateY(-50%);
    background: var(--bg-dark);
    padding: 6rem;
    border: 1px solid var(--glass-border);
    max-width: 450px;
    border-radius: 4px;
    backdrop-filter: blur(20px);
}

.map-card h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.map-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.map-card .divider {
    height: 1px;
    width: 50px;
    background: var(--gold);
    opacity: 0.3;
    margin: 3.5rem 0;
}

@media (max-width: 1024px) {
    .contact-hero {
        text-align: center;
    }

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

    .contact-hero::after {
        font-size: 15vw;
        bottom: 5rem;
    }

    .contact-section, .events-section, .arrival-section {
        padding: 8rem 0;
    }

    .contact-grid, .events-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
        text-align: center;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-info h2 {
        font-size: 3.5rem;
        margin-bottom: 4rem;
    }

    .info-item {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .info-item::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-form {
        padding: 4rem 2rem;
    }

    .form-group input, 
    .form-group textarea, 
    .form-group select {
        font-size: 1.2rem;
    }

    .events-content h2 {
        font-size: 3.5rem;
    }

    .event-stats {
        justify-content: center;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .events-img {
        height: 450px;
    }

    .map-wrapper {
        height: auto;
    }

    .map-bg {
        height: 350px;
    }

    .map-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 4rem 2rem;
        text-align: center;
        border-top: none;
    }

    .map-card .divider {
        margin: 3rem auto;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-info h2,
    .events-content h2 {
        font-size: 2.8rem;
    }

    .event-stats {
        flex-direction: column;
        gap: 3rem;
    }

    .events-img {
        height: 350px;
    }

    .info-item p {
        font-size: 1.2rem;
    }
}