/* 
 * SUPPORT PAGE STYLES
 */

.sup-page-wrapper {
    background-color: #042E3D;
    /* Theme dark navy */
    color: #fff;
    padding-bottom: 80px;
}

/* Typography Overrides */
.sup-page-wrapper h1,
.sup-page-wrapper h2,
.sup-page-wrapper h3 {
    font-family: "Outfit", sans-serif;
}

.btn-orange {
    background-color: #FF5E1E;
    /* Primary orange */
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-orange:hover {
    background-color: #e5531a;
    color: #fff;
    text-decoration: none;
}

/* SECTION 1: HERO */
.sup-hero {
    background-color: #042E3D;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 180px 20px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.sup-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

/* SECTION 2: CONNECT WITH SUPPORT */
.sup-connect {
    padding: 100px 0 50px;
}

/* COMMON GRID LAYOUT */
.sup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sup-text-col,
.sup-image-col {
    width: 100%;
}

.rounded-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
}

/* SECTION 3: CONTACT OVERLAP AND FORM STYLES */
.sup-contact {
    padding: 100px 0 120px;
    position: relative;
}

.sup-contact-grid {
    display: flex;
    align-items: center;
}

/* Form container */
.form-white-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #1a1a1a;
    width: 100%;
    max-width: 650px;
    margin-right: -100px;
    /* Pulls form over the image */
    position: relative;
    z-index: 2;
    /* Sits on top */
}

/* Titles */
.contact-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #042E3D;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Right col image wrapper */
.contact-image-col {
    position: absolute;
    right: 0;
    top: -50px;
    /* Offset it higher than the container slightly */
    height: calc(100% + 100px);
    /* Overshoot the form height to preserve ratio */
    width: 75%;
    /* Take up just over half the container width */
    z-index: 1;
    /* Sits underneath the white box relative index */
}

.contact-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

/* Ninja Forms Overrides */
.form-white-box .nf-field-label label {
    font-weight: 700 !important;
    color: #042E3D !important;
}

.form-white-box .nf-form-fields-required {
    padding: 0 0 10px 0;
    font-size: 12px;
}

.form-white-box input[type="text"],
.form-white-box input[type="email"],
.form-white-box input[type="tel"],
.form-white-box select,
.form-white-box textarea {
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    padding: 12px 15px !important;
    background-color: #fff !important;
}

.form-white-box input[type="button"],
.form-white-box input[type="submit"] {
    background-color: #FF5E1E !important;
    color: #fff !important;
    padding: 15px 30px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.form-white-box input[type="button"]:hover,
.form-white-box input[type="submit"]:hover {
    background-color: #e5531a !important;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 991px) {
    .sup-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sup-hero .hero-title {
        font-size: 2.5rem;
    }

    .sup-contact-grid {
        gap: 40px;
    }

    .form-white-box {
        margin-right: 0;
        padding: 40px 30px;
    }

    .contact-image-col {
        position: relative;
        top: 0;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
}