/* =====================================================
   CONTACT PAGE – ENTERPRISE CONSULTATION STYLE
===================================================== */

.contact-section {
    background: #f8fafc;
    padding: 96px 32px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
}

/* =====================================================
   ENTERPRISE CARD
===================================================== */

.enterprise-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 42px 40px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.enterprise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.12);
    border-color: #2563eb;
}

/* =====================================================
   FORM SIDE
===================================================== */

.contact-form h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 14.5px;
    color: #64748b;
    margin-bottom: 28px;
}

/* FORM GROUP */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14.5px;
    font-family: inherit;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* BUTTON */
.contact-form .btn-primary {
    margin-top: 10px;
    width: 100%;
}

/* =====================================================
   INFO / TRUST PANEL
===================================================== */

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

/* TRUST POINTS */
.contact-points {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.contact-points li {
    font-size: 14.5px;
    color: #475569;
    margin-bottom: 10px;
}

/* DIVIDER */
.contact-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 22px 0;
}

/* CONTACT DETAILS */
.contact-info p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 14px;
}

/* NOTE */
.contact-note {
    margin-top: 20px;
    padding: 16px 18px;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 6px;

    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .enterprise-card {
        padding: 36px 32px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 72px 20px;
    }

    .contact-form h2 {
        font-size: 22px;
    }
}
/* =========================================
   CONTACT PAGE – FINAL RESPONSIVE FIX
========================================= */

/* Desktop (default already OK) */
.contact-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Tablet */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .contact-section {
        padding: 72px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .enterprise-card {
        padding: 28px 24px;
    }

    .contact-form h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .contact-info h3 {
        font-size: 20px;
    }
}

