/* =====================================================
   LYVORA CONTACT PAGE STYLES (Fully Responsive & Light FAQ)
   ================================================     */

.Vagocat-contact-section {
    background-color: #ffffff;
    padding: 40px 0 60px 0;
    width: 100%;
    box-sizing: border-box;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Two-Column Layout: Text Left, Card Right */
.contact-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

/* Left Column Typography */
.contact-pre-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-massive-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #111827;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 16px 0;
}

.contact-subtext {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Right Column Contact Card Box - Squared Brutalist Corners */
.contact-main-box {
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0; 
    box-shadow: 8px 8px 0px #111827;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-box-col {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-box-col:first-child {
    border-right: 3px solid #111827;
    background-color: #F8F9FA;
}

.contact-box-col h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.contact-box-col p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 24px 0;
}

/* Action Button - Borderless with Hover Reveal */
.contact-btn-purple {
    background-color: #9D00FF; 
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border: 1px solid transparent; 
    border-radius: 0; 
    text-align: center;
    text-decoration: none;
    box-shadow: 4px 4px 0px #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, background-color 0.2s ease;
    display: inline-block;
}

.contact-btn-purple:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
    background-color: #7b00cc;
    border: 1px solid #111827; 
}

/* Email Links */
.contact-email-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.contact-email-link:hover {
    color: #9D00FF;
    text-decoration: underline;
}

/* =====================================================
   FAQ SECTION (Light Theme Matching Homepage)
   ================================================     */

.Vagocat-faq-section {
    background-color: #F8F9FA; 
    padding: 80px 0;
    width: 100%;
    margin-top: 0;
    border-top: 1px solid #E5E7EB;
    box-sizing: border-box;
}

.faq-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 50px 0;
}

.faq-subtext {
    color: #4B5563;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 40px;
}

/* 2-Column Split */
.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-block h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.faq-block p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .contact-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .Vagocat-contact-section {
        padding: 30px 0 40px 0;
    }
    .contact-container {
        padding: 0 16px;
    }
    .contact-main-box {
        grid-template-columns: 1fr;
        box-shadow: 4px 4px 0px #111827;
    }
    .contact-box-col:first-child {
        border-right: none;
        border-bottom: 3px solid #111827;
    }
    .contact-box-col {
        padding: 24px 20px;
    }
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    .Vagocat-faq-section {
        padding: 50px 0;
    }
    .faq-main-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }
}