/* ── Contact Page ── */
.contact-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* ── Header ── */
.contact-header {
    margin-bottom: 40px;
}
.contact-header h1 {
    font-size: 32px;
    margin: 0 0 6px;
}
.contact-header .accent-bar {
    width: 50px;
    height: 3px;
    background: #8fc740;
    border-radius: 2px;
    margin-bottom: 16px;
}
.contact-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

/* ── Two Column Layout ── */
.contact-columns {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    background: #f3f3f3;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 36px;
}
.contact-info {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 48px;
    border-right: 1px solid #d8d8d8;
}
.contact-form {
    flex: 1;
    min-width: 0;
}
.contact-form > div:first-child {
    margin-top: 0;
}
.contact-form .wpforms-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ── Contact Cards ── */
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.contact-card:first-child {
    padding-top: 0;
}
.contact-card:hover {
    color: inherit;
}

/* ── Phone — prominent ── */
.contact-card--phone,
.contact-card--phone:first-child {
    background: #48a43e;
    color: #fff;
    border-radius: 10px;
    padding: 24px;
    border-bottom: none;
    margin-bottom: 8px;
    align-items: center;
}
.contact-card--phone .contact-icon {
    color: #fff;
}
.contact-card--phone .contact-card__label {
    color: rgba(255,255,255,0.8);
}
.contact-card--phone .contact-card__value {
    color: #fff;
    font-size: 24px;
}
.contact-card--phone:hover {
    background: #3a8a32;
    color: #fff;
}

/* ── Icon ── */
.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #48a43e;
    margin-top: 2px;
}
.contact-card--phone .contact-icon {
    width: 28px;
    height: 28px;
}

/* ── Card Content ── */
.contact-card__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 2px;
}
.contact-card__value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* ── Social Links ── */
.contact-social {
    display: flex;
    gap: 12px;
    padding-top: 24px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f3f3;
    color: #555;
    transition: background 0.2s, color 0.2s;
}
.social-link:hover {
    background: #48a43e;
    color: #fff;
}
.social-link svg {
    width: 18px;
    height: 18px;
}

/* ── WPForms Submit Button ── */
.contact-form .wpforms-submit-container .wpforms-submit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #48a43e !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form .wpforms-submit-container .wpforms-submit:hover {
    background: #3a8a32 !important;
}

/* ── WPForms Field Styling ── */
.contact-form .wpforms-field input,
.contact-form .wpforms-field textarea,
.contact-form .wpforms-field select {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
}
.contact-form .wpforms-field input:focus,
.contact-form .wpforms-field textarea:focus,
.contact-form .wpforms-field select:focus {
    border-color: #8fc740;
    outline: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .contact-columns {
        flex-direction: column;
        gap: 32px;
    }
    .contact-info {
        flex: 1;
    }
    .contact-card--phone .contact-card__value {
        font-size: 20px;
    }
}
