/* =============================================
   FoodShare — contact.css
   ============================================= */

.contact-hero {
    padding: var(--space-9) 0 var(--space-7);
    background: linear-gradient(135deg, #0F0F13 0%, #1A0A2E 60%, #0F1F2E 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero .eyebrow {
    margin-bottom: var(--space-4);
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.contact-hero p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

/* ------- Contact Body ------- */
.contact-body {
    padding: var(--space-9) 0;
    background: var(--clr-bg);
    flex: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-8);
    align-items: start;
}

/* ------- Info Cards ------- */
.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: var(--space-3);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin-bottom: var(--space-4);
    transition: all var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(46, 196, 182, 0.3);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(46, 196, 182, 0.12);
    border: 1px solid rgba(46, 196, 182, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--clr-text);
    margin: 0;
}

/* ------- Contact Form ------- */
.contact-form-card {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-7);
}

.contact-form-card h3 {
    margin-bottom: var(--space-3);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--space-4);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }
}