/* =========================================================
   PHOENIX — CONTACT PAGE STYLES
   Clean | Minimal | Enterprise
========================================================= */


/* ==============================
   BASE WRAPPER
============================== */

.phoenix-main--contact {
    padding: 0;
    margin: 0;
}

.phoenix-contact-page {
    width: 100%;
}


/* ==============================
   GLOBAL CONTAINER
============================== */

.phoenix-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==============================
   HERO SECTION
============================== */

.phoenix-contact-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: #f8f9fb;
    border-bottom: 1px solid #e5e7eb;
}

.phoenix-contact-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.phoenix-contact-hero p {
    font-size: 18px;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ==============================
   CONTACT TYPES GRID
============================== */

.phoenix-contact-types {
    padding: 70px 0;
}

.phoenix-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.phoenix-contact-card {
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.phoenix-contact-card:hover {
    border-color: #d1d5db;
    transform: translateY(-3px);
}

.phoenix-contact-card h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.phoenix-contact-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}


/* ==============================
   FORM SECTION
============================== */

.phoenix-contact-form-section {
    padding: 80px 0;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.phoenix-contact-form-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #111827;
}

.phoenix-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}


/* ==============================
   CF7 FORM ENHANCEMENTS
============================== */

.phoenix-form-wrap input,
.phoenix-form-wrap textarea,
.phoenix-form-wrap select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 18px;
    transition: border-color 0.2s ease;
}

.phoenix-form-wrap input:focus,
.phoenix-form-wrap textarea:focus,
.phoenix-form-wrap select:focus {
    outline: none;
    border-color: #111827;
}

.phoenix-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}


/* Submit Button */

.phoenix-form-wrap input[type="submit"],
.phoenix-form-wrap button,
.phoenix-form-wrap .wpcf7-submit {
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.phoenix-form-wrap input[type="submit"]:hover,
.phoenix-form-wrap .wpcf7-submit:hover {
    background: #1f2937;
}


/* ==============================
   DIRECT CONTACT
============================== */

.phoenix-contact-direct {
    padding: 70px 0;
    text-align: center;
}

.phoenix-contact-direct h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111827;
}

.phoenix-contact-direct p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 8px;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 992px) {

    .phoenix-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .phoenix-contact-hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {

    .phoenix-grid-3 {
        grid-template-columns: 1fr;
    }

    .phoenix-contact-hero {
        padding: 60px 0 40px;
    }

    .phoenix-contact-hero h1 {
        font-size: 28px;
    }

    .phoenix-contact-hero p {
        font-size: 16px;
    }

    .phoenix-contact-form-section {
        padding: 60px 0;
    }

}
