/* =========================
   CONTACT PAGE
========================= */

.contact {
    padding-bottom: 0;
}

/* =========================
   HERO
========================= */

.contact-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

/* REMOVE p styling — handled globally */

/* =========================
   GRID LAYOUT
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    margin-top: 40px;
}

/* equal height columns */
.contact-info,
.contact-form {
    display: flex;
    flex-direction: column;
}

/* =========================
   LEFT SIDE (INFO)
========================= */

.contact-info h2 {
    margin-bottom: 15px;
}

/* REMOVE p styling here too */

.info-box {
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 14px;
}

.info-box strong {
    display: block;
    margin-bottom: 6px;
}

/* ONLY keep structure — no color overrides */
.info-box p {
    margin: 0;
}

/* =========================
   BUTTONS
========================= */

.contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* =========================
   FORM CARD
========================= */

.contact-form form {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-image {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    position: relative;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.contact-form h3 {
    margin-bottom: 10px;
}

/* inputs */
.contact-form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.full-btn {
    width: 100%;
    margin-top: auto;
}

/* =========================
   CTA
========================= */

.contact-cta {
    text-align: center;
    padding: 80px 0;
    background: #f8fafc;
}

/* REMOVE p overrides */

.contact-cta h2 {
    margin-bottom: 10px;
}

/* =========================
   FAQ
========================= */

.faq-section {
    padding: 90px 0;
    background: #f8fafc;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin-bottom: 12px;
    font-size: 2.2rem;
}

/* REMOVE p overrides */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: #fff;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ONLY structure */
.faq-item p {
    margin: 0;
}

/* =========================
   MINI TITLE
========================= */

.mini-title {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2563eb;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }
}