/* contact-page.css - Specific Styles for the Concierge Page */

.contact-vortex {
    padding: 10rem 0;
    background: var(--color-bg);
}

/* contact-page.css - Premium Concierge Styling */

.contact-vortex {
    padding: 12rem 0;
    background: var(--color-bg);
}

.narrative-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* More emphasis on the form */
    gap: 12rem;
    align-items: flex-start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    margin: 1.5rem 0 3rem;
}

.info-block {
    margin-top: 3.5rem;
    border-left: 1px solid var(--color-gold-muted);
    padding-left: 2rem;
}

.info-block h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-block p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Glassmorphic Form Container */
#concierge-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(201, 160, 80, 0.03);
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
    opacity: 0.8;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: all 0.5s var(--ease-silk);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-bottom-color: var(--color-gold);
    box-shadow: 0 5px 15px rgba(201, 160, 80, 0.05);
}

.form-group textarea {
    height: 120px;
}

/* Map Section Enhancements */
.map-reveal {
    height: 60vh;
    filter: grayscale(1) invert(0.92) contrast(1.1);
    opacity: 0.5;
    transition: all 1.5s var(--ease-silk);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-reveal:hover {
    filter: grayscale(0) invert(0) contrast(1);
    opacity: 1;
}

@media (max-width: 1200px) {
    .narrative-grid {
        gap: 6rem;
    }
}

@media (max-width: 992px) {
    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 8rem;
    }
    
    #concierge-form {
        padding: 3rem 2rem;
    }
}
