/* =========================================================
   LOUIS CARTER FOUNDATION
   CONTACT PAGE
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(5, 35, 75, .98),
            rgba(8, 64, 135, .92)
        );
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 15% 40%,
            rgba(255, 193, 7, .12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, .08),
            transparent 25%
        );
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 27, 58, .65),
            transparent,
            rgba(3, 27, 58, .45)
        );
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
    margin: auto;
    padding: 70px 0;

    text-align: center;
}

.contact-hero-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #ffc107;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-hero h1 {
    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(42px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.05;
}

.contact-hero h1 span {
    color: #ffc107;
}

.contact-hero p {
    max-width: 650px;
    margin: 0 auto 25px;

    color: rgba(255, 255, 255, .88);

    font-size: 17px;
    line-height: 1.8;
}

.contact-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    color: #fff;
    font-size: 14px;
}

.contact-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.contact-breadcrumb strong {
    color: #ffc107;
}


/* =========================================================
   PAGE BANNER
   HEADER OVERLAP FIX
========================================================= */

/*
   Desktop header structure:

   Topbar = 48px
   Navbar = 90px
   ----------------
   Total   = 138px

   The navbar is positioned absolute at top: 48px.
   Therefore internal pages must begin below 138px.
*/

.page-banner {
    position: relative !important;

    margin-top: 138px !important;

    padding-top: 70px !important;
    padding-bottom: 80px !important;

    min-height: 400px;

    overflow: hidden;

    z-index: 1;
}


/* Banner container */

.page-banner .container {
    position: relative;
    z-index: 2;
}


/* Banner content */

.page-banner .banner-content {
    position: relative;
    z-index: 3;
}


/* Banner overlay */

.page-banner .banner-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;
}


/* =========================================================
   DESKTOP BANNER
========================================================= */

@media (min-width: 993px) {

    .page-banner {
        margin-top: 138px !important;

        padding-top: 70px !important;
        padding-bottom: 80px !important;

        min-height: 400px;
    }

}


/* =========================================================
   TABLET BANNER
========================================================= */

@media (min-width: 768px) and (max-width: 992px) {

    .page-banner {
        margin-top: 80px !important;

        padding-top: 65px !important;
        padding-bottom: 70px !important;

        min-height: 380px;
    }

}


/* =========================================================
   MOBILE BANNER
========================================================= */

@media (max-width: 767px) {

    .page-banner {
        margin-top: 80px !important;

        padding-top: 55px !important;
        padding-bottom: 60px !important;

        min-height: 360px;
    }

}


/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.contact-main-section {
    padding: 90px 0 70px;

    background: #fff;
}

.contact-intro-grid {
    display: grid;

    grid-template-columns:
        1fr
        1.15fr
        1.25fr;

    gap: 45px;

    align-items: center;
}


/* =========================================================
   SECTION TAG
========================================================= */

.section-tag {
    display: block;

    margin-bottom: 10px;

    color: #164e96;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   HEADINGS
========================================================= */

.contact-intro h2,
.contact-form-card h2,
.contact-location-card h2 {

    margin: 0;

    color: #09264b;

    font-size: 32px;
    line-height: 1.2;
}


/* =========================================================
   GOLD LINE
========================================================= */

.gold-line {
    width: 42px;
    height: 3px;

    margin: 18px 0 22px;

    background: #ffc107;
}


/* =========================================================
   INTRO TEXT
========================================================= */

.contact-intro p {
    margin-bottom: 18px;

    color: #697586;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 0;
}

.contact-detail-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid #e8edf3;
}

.contact-detail-item:first-child {
    padding-top: 0;
}


/* =========================================================
   CONTACT DETAIL ICON
========================================================= */

.contact-detail-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 9px;

    background: #073d83;

    color: #ffc107;

    font-size: 18px;
}


/* =========================================================
   CONTACT DETAIL TEXT
========================================================= */

.contact-detail-item h3 {
    margin: 0 0 6px;

    color: #09264b;

    font-size: 16px;
}

.contact-detail-item p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.65;
}

.contact-detail-item a {
    color: #6b7280;

    text-decoration: none;

    transition: .3s ease;
}

.contact-detail-item a:hover {
    color: #0b56a5;
}


/* =========================================================
   OFFICE IMAGE
========================================================= */

.contact-office-image {
    height: 360px;

    overflow: hidden;

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .12);
}

.contact-office-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.contact-office-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   CONTACT FORM + LOCATION SECTION
========================================================= */

.contact-form-section {
    padding: 20px 0 90px;

    background: #f7f9fc;
}

.contact-two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 28px;
}


/* =========================================================
   FORM / LOCATION CARDS
========================================================= */

.contact-form-card,
.contact-location-card {

    padding: 38px;

    background: #fff;

    border: 1px solid #e8edf3;

    border-radius: 12px;

    box-shadow:
        0 10px 35px rgba(9, 38, 75, .06);
}


/* =========================================================
   FORM / LOCATION INTRO
========================================================= */

.form-intro,
.location-intro {

    margin: 0 0 25px;

    color: #6b7280;

    line-height: 1.7;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #183452;

    font-size: 14px;
    font-weight: 600;
}

.form-group label span {
    color: #e0a800;
}


/* =========================================================
   FORM INPUTS
========================================================= */

.form-group input,
.form-group textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dce3eb;

    border-radius: 6px;

    padding: 13px 15px;

    outline: none;

    background: #fff;

    color: #26384d;

    font-family: inherit;

    font-size: 14px;

    transition: .3s ease;
}

.form-group input {
    height: 48px;
}

.form-group textarea {
    min-height: 145px;

    resize: vertical;
}


/* =========================================================
   FORM FOCUS
========================================================= */

.form-group input:focus,
.form-group textarea:focus {

    border-color: #1764b5;

    box-shadow:
        0 0 0 3px rgba(23, 100, 181, .08);
}


/* =========================================================
   CONTACT SUBMIT BUTTON
========================================================= */

.contact-submit-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 160px;

    padding: 14px 22px;

    border: 0;

    border-radius: 5px;

    background: #f5b800;

    color: #142b48;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}

.contact-submit-btn:hover {

    background: #ffc107;

    transform: translateY(-2px);
}


/* =========================================================
   MAP
========================================================= */

.map-container {

    width: 100%;
    height: 285px;

    overflow: hidden;

    border-radius: 8px;

    border: 1px solid #e0e5eb;
}

.map-container iframe {

    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   LOCATION ADDRESS
========================================================= */

.location-address {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-top: 20px;

    padding: 16px;

    background: #f7f9fc;

    border-radius: 7px;
}

.location-address > i {

    margin-top: 3px;

    color: #f5b800;
}

.location-address div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.location-address strong {

    color: #09264b;

    font-size: 14px;
}

.location-address span {

    color: #6b7280;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {

    padding: 55px 0;

    background:
        linear-gradient(
            120deg,
            #063b7d,
            #0873d1
        );
}

.contact-cta-inner {

    display: grid;

    grid-template-columns: 120px 1fr auto;

    align-items: center;

    gap: 30px;
}


/* =========================================================
   CTA ICON
========================================================= */

.cta-icon {

    width: 95px;
    height: 95px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #ffc107;

    border-radius: 50%;

    color: #ffc107;

    font-size: 38px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content span {

    display: block;

    margin-bottom: 7px;

    color: #ffc107;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.cta-content h2 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 30px;
}

.cta-content p {

    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, .85);

    line-height: 1.6;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.contact-donate-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 23px;

    border-radius: 5px;

    background: #ffc107;

    color: #17324f;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: .3s ease;
}

.contact-donate-btn:hover {

    background: #fff;

    color: #0a3c7b;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-intro-grid {

        grid-template-columns: 1fr 1fr;
    }


    .contact-office-image {

        grid-column: 1 / -1;

        height: 330px;
    }


    .contact-two-column {

        grid-template-columns: 1fr;
    }


    .contact-cta-inner {

        grid-template-columns: 90px 1fr;
    }


    .cta-action {

        grid-column: 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-hero {

        min-height: 300px;
    }


    .contact-hero-content {

        padding: 55px 20px;
    }


    .contact-hero h1 {

        font-size: 42px;
    }


    .contact-hero p {

        font-size: 15px;

        line-height: 1.65;
    }


    .contact-main-section {

        padding: 60px 0 45px;
    }


    .contact-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .contact-office-image {

        grid-column: auto;

        height: 260px;
    }


    .contact-two-column {

        grid-template-columns: 1fr;
    }


    .contact-form-card,
    .contact-location-card {

        padding: 25px 20px;
    }


    .contact-intro h2,
    .contact-form-card h2,
    .contact-location-card h2 {

        font-size: 27px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .map-container {

        height: 250px;
    }


    .contact-cta {

        padding: 45px 0;
    }


    .contact-cta-inner {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 20px;
    }


    .cta-icon {

        margin: auto;
    }


    .cta-content h2 {

        font-size: 26px;
    }


    .cta-action {

        grid-column: auto;
    }


    .contact-donate-btn {

        justify-content: center;
    }

}
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    margin-bottom: 22px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-alert i {
    margin-top: 2px;
    font-size: 16px;
}

.contact-alert-success {
    color: #166534;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
}

.contact-alert-success i {
    color: #16a34a;
}

.contact-alert-error {
    color: #b91c1c;
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.contact-alert-error i {
    color: #dc2626;
}
```css
/* =========================================================
   CONTACT SUCCESS PAGE
========================================================= */

.contact-success-section {

    min-height: 65vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 90px 20px;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );
}


.contact-success-card {

    width: 100%;

    max-width: 720px;

    margin: 0 auto;

    padding: 55px 45px;

    text-align: center;

    background: #fff;

    border: 1px solid #e7ecf3;

    border-radius: 18px;

    box-shadow:
        0 20px 55px rgba(9, 38, 75, .10);
}


/* SUCCESS ICON */

.contact-success-icon {

    width: 82px;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #ecfdf3;

    border: 1px solid #bbf7d0;

    color: #16a34a;

    font-size: 36px;
}


/* LABEL */

.contact-success-label {

    display: block;

    margin-bottom: 10px;

    color: #1764b5;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* HEADING */

.contact-success-card h1 {

    margin: 0;

    color: #09264b;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.2;
}


/* GOLD LINE */

.contact-success-card .gold-line {

    margin: 20px auto 25px;
}


/* MESSAGE */

.contact-success-card p {

    max-width: 590px;

    margin: 0 auto;

    color: #667085;

    font-size: 16px;

    line-height: 1.8;
}


/* SECOND MESSAGE */

.contact-success-card .contact-success-note {

    margin-top: 12px;

    color: #8a96a8;

    font-size: 14px;
}


/* ACTIONS */

.contact-success-actions {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 32px;
}


/* BUTTONS */

.success-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 165px;

    padding: 14px 22px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;
}


/* PRIMARY */

.success-btn-primary {

    background: #ffc107;

    color: #17324f;
}


.success-btn-primary:hover {

    background: #eeb000;

    color: #17324f;

    transform: translateY(-2px);
}


/* SECONDARY */

.success-btn-secondary {

    background: #073d83;

    color: #fff;
}


.success-btn-secondary:hover {

    background: #052f66;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-success-section {

        min-height: 60vh;

        padding: 60px 15px;
    }


    .contact-success-card {

        padding: 40px 22px;

        border-radius: 14px;
    }


    .contact-success-icon {

        width: 70px;

        height: 70px;

        font-size: 30px;
    }


    .contact-success-card h1 {

        font-size: 30px;
    }


    .contact-success-card p {

        font-size: 14px;

        line-height: 1.7;
    }


    .contact-success-actions {

        flex-direction: column;

        width: 100%;
    }


    .success-btn {

        width: 100%;
    }

}
/* =========================================================
   CONTACT SUCCESS PAGE
   HEADER / CONTENT OVERLAP FIX
   ========================================================= */

.contact-success-section {
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;

    /*
     * The site header/navigation is visually positioned
     * over the page. Give the success content enough
     * top space so it starts below the header.
     */
    padding-top: 175px;
    padding-bottom: 80px;

    background: #ffffff;
}


/* Main success container */

.contact-success-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    box-sizing: border-box;
}


/* Success card */

.contact-success-card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;
    margin: 0 auto;

    padding: 70px 60px 65px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e8edf3;
    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 12px 40px rgba(15, 43, 80, 0.08);
}


/* Success icon */

.contact-success-icon {
    width: 110px;
    height: 110px;

    margin: 0 auto 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #effcf5;
    border: 1px solid #b9f0d0;

    color: #16a34a;

    font-size: 46px;

    box-sizing: border-box;
}


/* Success label */

.contact-success-label {
    display: block;

    margin-bottom: 18px;

    color: #1764b5;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* Main heading */

.contact-success-card h1 {
    margin: 0;

    color: #0b2d57;

    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;

    line-height: 1.15;
}


/* Gold separator */

.contact-success-card .gold-line {
    width: 55px;
    height: 4px;

    margin: 28px auto 35px;

    background: #fdbb05;

    border-radius: 5px;
}


/* Main message */

.contact-success-card > p {
    max-width: 760px;

    margin: 0 auto;

    color: #60738c;

    font-size: 18px;
    line-height: 1.8;
}


/* Secondary message */

.contact-success-card .contact-success-note {
    margin-top: 20px;

    color: #8796aa;

    font-size: 16px;
}


/* Buttons */

.contact-success-actions {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    margin-top: 35px;
}


.success-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 210px;

    padding: 15px 24px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.success-btn:hover {
    transform: translateY(-2px);
}


/* Primary button */

.success-btn-primary {
    background: #fdbb05;
    color: #082b55;

    box-shadow:
        0 8px 20px rgba(253, 187, 5, 0.20);
}


.success-btn-primary:hover {
    background: #f4b200;
}


/* Secondary button */

.success-btn-secondary {
    background: #0d478f;
    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(13, 71, 143, 0.18);
}


.success-btn-secondary:hover {
    background: #0a3d7c;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .contact-success-section {
        padding-top: 155px;
        padding-bottom: 60px;
    }

    .contact-success-card {
        padding: 55px 35px 50px;
    }

    .contact-success-card h1 {
        font-size: 42px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-success-section {
        padding-top: 125px;
        padding-bottom: 45px;
    }

    .contact-success-section .container {
        padding: 0 15px;
    }

    .contact-success-card {
        padding: 45px 20px 40px;

        border-radius: 14px;
    }

    .contact-success-icon {
        width: 85px;
        height: 85px;

        margin-bottom: 25px;

        font-size: 34px;
    }

    .contact-success-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .contact-success-card h1 {
        font-size: 34px;
    }

    .contact-success-card .gold-line {
        margin: 22px auto 28px;
    }

    .contact-success-card > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-success-card .contact-success-note {
        font-size: 14px;
    }

    .contact-success-actions {
        flex-direction: column;

        width: 100%;

        gap: 12px;
    }

    .success-btn {
        width: 100%;
        min-width: 0;
    }

}
