/* LondonVeelvetHall.com - Contact Page Styles */

.lvhNavLinkActive {
    color: var(--lvhVeelvetNavy) !important;
}

.lvhNavLinkActive::after {
    width: 100% !important;
}

/* Contact Header */
.lvhContactHeader {
    background: linear-gradient(135deg, var(--lvhVeelvetNavy) 0%, var(--lvhVeelvetWine) 100%);
    padding: 8rem 0 6rem;
    margin-top: 80px;
}

.lvhContactHeaderContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.lvhContactHeaderTitle {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--lvhGalleryStone);
    margin-bottom: 1.5rem;
}

.lvhContactHeaderSubtitle {
    font-size: 1.15rem;
    color: var(--lvhPlaster);
    line-height: 1.6;
}

/* Contact Section */
.lvhContactSection {
    padding: 6rem 0;
    background: var(--lvhGalleryStone);
}

.lvhContactContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lvhContactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Information */
.lvhContactInfo {
    background: var(--lvhGalleryStone);
}

.lvhContactInfoTitle {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    color: var(--lvhVeelvetNavy);
    margin-bottom: 1rem;
}

.lvhContactInfoText {
    color: var(--lvhMuted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lvhContactDetails {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.lvhContactDetailItem {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--lvhPlaster);
    border-radius: 12px;
    border: 1px solid var(--lvhBorder);
    transition: all var(--lvhTransitionMedium);
}

.lvhContactDetailItem:hover {
    transform: translateX(8px);
    border-color: var(--lvhGoldLine);
    box-shadow: var(--lvhShadowSubtle);
}

.lvhContactDetailIcon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lvhVeelvetNavy);
    border-radius: 10px;
    color: var(--lvhGoldLine);
    flex-shrink: 0;
}

.lvhContactDetailContent {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lvhContactDetailLabel {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--lvhMuted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lvhContactDetailValue {
    color: var(--lvhVeelvetNavy);
    font-weight: 500;
    font-size: 1.05rem;
}

.lvhContactResponseTime {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--lvhVeelvetTeal);
    color: var(--lvhGalleryStone);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Contact Form */
.lvhContactFormWrapper {
    background: var(--lvhGalleryStone);
}

.lvhContactFormTitle {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    color: var(--lvhVeelvetNavy);
    margin-bottom: 1rem;
}

.lvhContactFormText {
    color: var(--lvhMuted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.lvhFormGroup {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lvhFormLabel {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    color: var(--lvhVeelvetNavy);
    font-weight: 500;
}

.lvhFormInput,
.lvhFormSelect,
.lvhFormTextarea {
    padding: 1rem;
    border: 2px solid var(--lvhBorder);
    border-radius: 8px;
    font-family: 'Zade Exo', sans-serif;
    font-size: 1rem;
    color: var(--lvhInk);
    background: var(--lvhGalleryStone);
    transition: all var(--lvhTransitionFast);
}

.lvhFormInput:focus,
.lvhFormSelect:focus,
.lvhFormTextarea:focus {
    outline: none;
    border-color: var(--lvhVeelvetNavy);
    box-shadow: 0 0 0 4px rgba(20, 27, 58, 0.1);
}

.lvhFormSelect {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2312151C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.lvhFormTextarea {
    resize: vertical;
    min-height: 150px;
}

.lvhFormPrivacy {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.lvhFormPrivacy input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--lvhVeelvetNavy);
    cursor: pointer;
}

.lvhFormPrivacyLabel {
    font-size: 0.9rem;
    color: var(--lvhMuted);
    line-height: 1.5;
}

.lvhFormPrivacyLabel a {
    color: var(--lvhVeelvetNavy);
    text-decoration: none;
    transition: color var(--lvhTransitionFast);
}

.lvhFormPrivacyLabel a:hover {
    color: var(--lvhNeonCoral);
    text-decoration: underline;
}

.lvhFormSubmit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* FAQ Section */
.lvhFaqSection {
    padding: 6rem 0;
    background: var(--lvhPlaster);
}

.lvhFaqContainer {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lvhFaqTitle {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    color: var(--lvhVeelvetNavy);
    margin-bottom: 3rem;
}

.lvhFaqList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lvhFaqItem {
    background: var(--lvhGalleryStone);
    border-radius: 12px;
    border: 1px solid var(--lvhBorder);
    overflow: hidden;
    transition: all var(--lvhTransitionMedium);
}

.lvhFaqItem:hover {
    border-color: var(--lvhGoldLine);
}

.lvhFaqQuestion {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lvhVeelvetNavy);
    transition: all var(--lvhTransitionFast);
}

.lvhFaqQuestion:hover {
    color: var(--lvhNeonCoral);
}

.lvhFaqIcon {
    flex-shrink: 0;
    transition: transform var(--lvhTransitionMedium);
}

.lvhFaqItem.lvhOpen .lvhFaqIcon {
    transform: rotate(180deg);
}

.lvhFaqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--lvhTransitionMedium), padding var(--lvhTransitionMedium);
}

.lvhFaqItem.lvhOpen .lvhFaqAnswer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.lvhFaqAnswer p {
    color: var(--lvhMuted);
    line-height: 1.6;
}

/* Form States */
.lvhFormSuccess {
    background: var(--lvhVeelvetTeal);
    color: var(--lvhGalleryStone);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    animation: lvhSlideInRight var(--lvhTransitionMedium) ease;
}

.lvhFormError {
    color: var(--lvhNeonCoral);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    animation: lvhShake 0.3s ease;
}

@keyframes lvhShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 968px) {
    .lvhContactGrid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lvhContactHeader {
        padding: 6rem 0 4rem;
    }
}

@media (max-width: 480px) {
    .lvhContactSection,
    .lvhFaqSection {
        padding: 4rem 0;
    }

    .lvhContactDetailItem {
        padding: 1rem;
    }

    .lvhContactDetailIcon {
        width: 40px;
        height: 40px;
    }

    .lvhFaqQuestion {
        padding: 1rem;
        font-size: 1rem;
    }

    .lvhFaqItem.lvhOpen .lvhFaqAnswer {
        padding: 0 1rem 1rem;
    }
}

/* Loading State for Form */
.lvhContactForm.lvhLoading .lvhFormSubmit {
    opacity: 0.7;
    pointer-events: none;
}

.lvhContactForm.lvhLoading .lvhFormSubmit::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--lvhGalleryStone);
    border-top-color: transparent;
    border-radius: 50%;
    animation: lvhSpin 0.8s linear infinite;
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}

@keyframes lvhSpin {
    to { transform: rotate(360deg); }
}
