/* Virexa — contact page */

.contact-section {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: 70px;
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: clamp(0.5rem, 3vw, 1.25rem);
    right: clamp(0.5rem, 3vw, 1.25rem);
    bottom: 1.5rem;
    background: linear-gradient(145deg, rgba(232, 242, 239, 0.9) 0%, rgba(254, 243, 199, 0.35) 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 5vw, 3.35rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-ink);
    letter-spacing: -0.035em;
}

.page-title::after {
    content: '';
    display: block;
    width: min(120px, 30vw);
    height: 5px;
    margin: var(--spacing-sm) auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--color-accent-primary), var(--color-highlight), var(--color-accent-warm));
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.22);
}

.contact-info {
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    padding-left: calc(var(--spacing-lg) + 10px);
    box-shadow: var(--shadow-md), 6px 6px 0 rgba(13, 148, 136, 0.12);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-highlight), var(--color-accent-primary));
}

.contact-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 2;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contact-section::before {
        top: 1rem;
        left: 0.35rem;
        right: 0.35rem;
        bottom: 1rem;
    }

    .contact-info {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin-top: 60px;
    }
}
