/* ===================================
   SOPHISTICATED CONTACT PAGE ADDITIONS
   =================================== */

/* --- Interactive Contact Section --- */
.interactive-contact {
    position: relative;
    min-height: 70vh;
    min-height: 70dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
}

.interactive-contact>.container {
    position: relative;
    z-index: 2;
}

/* Initial Trigger View */
.lw-trigger-container {
    transition: opacity 0.5s ease-in-out;
}

/* Choices View (Hidden) */
.contact-choices {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    text-align: center;
    z-index: 10;
}

.contact-choices.hidden {
    display: none;
}

.contact-choices.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.choices-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-16);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.choices-heading .serif-italic {
    font-size: 1.15em;
    font-weight: 300;
}

.choices-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--spacing-12);
}

@media (min-width: 768px) {
    .choices-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.choice-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.choice-card:hover {
    transform: translateY(-6px);
}

.choice-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.choice-card:hover .choice-icon {
    background: rgba(255, 255, 255, 1);
    color: #000;
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.08);
}

.choice-card h3 {
    font-size: 1.35rem;
    color: var(--color-white);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.choice-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.back-btn {
    margin-top: var(--spacing-8);
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: inline-block;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Ensure footer doesn't overlap/crowd */
.footer {
    position: relative;
    z-index: 20;
}