/* ────────────────────────────────
   Contact Page | Wild Legacy
   Clean, theme-driven version
   ──────────────────────────────── */

/* Section wrapper */
.contact-section {
    padding: 60px 0;
}

/* Grid layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form wrapper */
.contact-form-wrap h2 {
    margin-bottom: 20px;
    font-family: var(--heading-font);
    color: var(--text);
}

/* Form rows */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form fields */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text);
    font-family: var(--body-font);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-text);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--body-font);
    background: var(--input-bg);
    color: var(--input-text);
    transition: border-color 0.2s ease;
}

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        border: 2px solid var(--input-text);
        outline: none;
    }

/* Sidebar / info box */
.contact-info {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Individual info cards */
.info-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--card-border);
}

    .info-card h3 {
        margin-bottom: 12px;
        font-family: var(--heading-font);
        color: var(--text);
    }

    .info-card p,
    .info-card a,
    .info-card address {
        color: var(--text-muted);
        line-height: 1.6;
        font-family: var(--body-font);
    }

.info-link {
    display: inline-block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--link-color);
}

/* Highlight card */
.highlight-card {
    border-left: 6px solid var(--accent);
    border-top: 1px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
