.elementor-65 .elementor-element.elementor-element-8a958fd{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-07dfe01 *//* =========================================
   SJM CONTACT PAGE
========================================= */

.sjm-contact-hero,
.sjm-contact-hero *,
.sjm-contact-main,
.sjm-contact-main *,
.sjm-contact-connect-section,
.sjm-contact-connect-section * {
    box-sizing: border-box;
}


/* =========================================
   COMMON
========================================= */

.sjm-contact-container {
    width: min(1300px, 90%);
    margin: auto;
}

.sjm-c-section-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #c88708;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sjm-c-section-tag > span {
    width: 30px;
    height: 2px;

    background: #c88708;
}

.sjm-c-light-tag {
    color: #ffd96b;
}

.sjm-c-light-tag > span {
    background: #ffd96b;
}


/* =========================================
   HERO
========================================= */

.sjm-contact-hero {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 130px 0 100px;

    background:
        linear-gradient(
            135deg,
            #061b3c 0%,
            #0b2f63 55%,
            #041832 100%
        );
}

.sjm-contact-hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -250px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(218,161,20,0.20),
            transparent 68%
        );
}

.sjm-contact-hero-container {
    position: relative;
    z-index: 2;

    width: min(1300px, 90%);
    margin: auto;
}

.sjm-contact-breadcrumb {
    display: flex;
    gap: 10px;

    margin-bottom: 35px;

    color: rgba(255,255,255,0.6);

    font-size: 14px;
}

.sjm-contact-breadcrumb a {
    color: #ffd96b;
    text-decoration: none;
}

.sjm-contact-breadcrumb strong {
    color: #ffffff;
    font-weight: 500;
}

.sjm-contact-hero-content {
    max-width: 850px;
}

.sjm-contact-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;

    line-height: 1.15;
}

.sjm-contact-hero h1 span {
    display: block;
    color: #e3ac25;
}

.sjm-contact-hero p {
    max-width: 720px;

    margin: 25px 0 0;

    color: rgba(255,255,255,0.72);

    font-size: 17px;

    line-height: 1.9;
}

.sjm-contact-hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 38px;
}

.sjm-c-btn-primary,
.sjm-c-btn-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 17px 28px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s;
}

.sjm-c-btn-primary {
    color: #061b3c;

    background:
        linear-gradient(
            135deg,
            #d89b12,
            #ffe89a
        );
}

.sjm-c-btn-primary:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

.sjm-c-btn-outline {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.3);
}

.sjm-c-btn-outline:hover {
    color: #061b3c;
    background: #ffffff;
}

.sjm-contact-hero-shape {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 50px;

    background: #ffffff;

    clip-path:
        polygon(
            0 100%,
            100% 0,
            100% 100%
        );
}


/* =========================================
   CONTACT MAIN
========================================= */

.sjm-contact-main {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fafc
        );
}

.sjm-contact-intro {
    max-width: 800px;

    margin-bottom: 60px;
}

.sjm-contact-intro h2 {
    margin: 0;

    color: #071d42;

    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;

    line-height: 1.25;
}

.sjm-contact-intro h2 span {
    display: block;
    color: #c88708;
}

.sjm-contact-intro p {
    margin: 22px 0 0;

    color: #667085;

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================
   CONTACT LAYOUT
========================================= */

.sjm-contact-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 35px;

    align-items: stretch;
}


/* CONTACT DETAILS */

.sjm-contact-details {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.sjm-contact-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    min-height: 135px;

    padding: 25px;

    border-radius: 16px;

    color: inherit;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid rgba(7,29,66,0.08);

    box-shadow:
        0 10px 35px rgba(7,29,66,0.05);

    transition: 0.3s;
}

.sjm-contact-card:hover {
    transform: translateX(6px);

    box-shadow:
        0 18px 40px rgba(7,29,66,0.10);
}

.sjm-contact-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    color: #061b3c;

    background:
        linear-gradient(
            135deg,
            #d89b12,
            #ffe89a
        );

    font-size: 12px;
    font-weight: 800;
}

.sjm-contact-card small {
    display: block;

    margin-bottom: 7px;

    color: #c88708;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.sjm-contact-card h3 {
    margin: 0 0 6px;

    color: #071d42;

    font-size: 18px;
}

.sjm-contact-card p {
    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 1.6;
}

.sjm-contact-card b {
    margin-left: auto;

    color: #c88708;

    font-size: 20px;
}


/* =========================================
   SCHOOL 3D VISUAL
========================================= */

.sjm-contact-school-visual {
    position: relative;

    overflow: hidden;

    min-height: 600px;

    border-radius: 22px;

    background: #061b3c;
}

.sjm-school-image-wrap {
    position: absolute;

    inset: 0;
}

.sjm-school-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.sjm-contact-school-visual:hover
.sjm-school-image-wrap img {
    transform: scale(1.05);
}

.sjm-school-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4,20,48,0.05) 20%,
            rgba(4,20,48,0.95) 100%
        );
}

.sjm-school-visual-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 45px;
}

.sjm-visual-tag {
    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 13px;

    border-radius: 30px;

    color: #ffd96b;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.15);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.sjm-school-visual-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(30px, 3vw, 45px);

    line-height: 1.2;
}

.sjm-school-visual-content h3 span {
    display: block;

    color: #e3ac25;
}

.sjm-school-visual-content p {
    max-width: 600px;

    margin: 18px 0 0;

    color: rgba(255,255,255,0.72);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   SECTION 3
========================================= */

.sjm-contact-connect-section {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #061b3c,
            #0a2d60
        );
}


/* CONNECT BOX */

.sjm-contact-connect-box {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 40px;

    padding: 65px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );

    border: 1px solid rgba(255,255,255,0.12);
}

.sjm-connect-content {
    max-width: 720px;
}

.sjm-connect-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.2;
}

.sjm-connect-content h2 span {
    display: block;

    color: #e3ac25;
}

.sjm-connect-content p {
    margin: 22px 0 0;

    color: rgba(255,255,255,0.68);

    font-size: 16px;

    line-height: 1.9;
}

.sjm-connect-status {
    min-width: 250px;
}

.sjm-connect-status-box {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 15px;

    padding: 18px;

    border-radius: 14px;

    background: rgba(255,255,255,0.08);
}

.sjm-status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #e3ac25;

    box-shadow:
        0 0 0 6px rgba(227,172,37,0.12);
}

.sjm-connect-status-box small {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,0.5);

    font-size: 9px;

    letter-spacing: 1px;
}

.sjm-connect-status-box strong {
    color: #ffffff;

    font-size: 13px;
}

.sjm-connect-date {
    padding: 18px;

    border-radius: 12px;

    text-align: center;

    color: #061b3c;

    background:
        linear-gradient(
            135deg,
            #d89b12,
            #ffe89a
        );

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================
   FAQ
========================================= */

.sjm-contact-faq-wrap {
    margin-top: 120px;
}

.sjm-contact-faq-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.sjm-contact-faq-heading .sjm-c-section-tag {
    justify-content: center;
}

.sjm-contact-faq-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.25;
}

.sjm-contact-faq-heading h2 span {
    display: block;

    color: #e3ac25;
}

.sjm-contact-faq-list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.sjm-contact-faq-item {
    overflow: hidden;

    border-radius: 12px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.1);
}

.sjm-contact-faq-item summary {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 23px 28px;

    cursor: pointer;

    list-style: none;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.sjm-contact-faq-item summary::-webkit-details-marker {
    display: none;
}

.sjm-contact-faq-item summary > span {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffd96b;

    background: rgba(255,215,102,0.1);

    font-size: 11px;
    font-weight: 800;
}

.sjm-contact-faq-item summary i {
    width: 30px;
    height: 30px;

    margin-left: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #061b3c;

    background: #e3ac25;

    font-style: normal;

    font-size: 20px;

    transition: 0.3s;
}

.sjm-contact-faq-item[open] summary i {
    transform: rotate(45deg);
}

.sjm-contact-faq-item > div {
    padding:
        0
        75px
        28px
        84px;

    color: rgba(255,255,255,0.68);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .sjm-contact-layout {
        grid-template-columns: 1fr;
    }

    .sjm-contact-school-visual {
        min-height: 550px;
    }

    .sjm-contact-connect-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 700px) {

    .sjm-contact-hero {
        min-height: 540px;

        padding: 110px 0 90px;
    }

    .sjm-contact-hero h1 {
        font-size: 40px;
    }

    .sjm-contact-hero p {
        font-size: 15px;
    }

    .sjm-contact-hero-buttons {
        flex-direction: column;
    }

    .sjm-c-btn-primary,
    .sjm-c-btn-outline {
        width: 100%;
    }

    .sjm-contact-main,
    .sjm-contact-connect-section {
        padding: 75px 0;
    }

    .sjm-contact-container {
        width: 90%;
    }

    .sjm-contact-intro h2,
    .sjm-connect-content h2,
    .sjm-contact-faq-heading h2 {
        font-size: 34px;
    }

    .sjm-contact-card {
        min-height: auto;

        padding: 20px;
    }

    .sjm-contact-school-visual {
        min-height: 480px;
    }

    .sjm-school-visual-content {
        padding: 28px 22px;
    }

    .sjm-contact-connect-box {
        padding: 35px 22px;
    }

    .sjm-connect-status {
        width: 100%;
        min-width: auto;
    }

    .sjm-contact-faq-wrap {
        margin-top: 80px;
    }

    .sjm-contact-faq-item summary {
        padding: 18px;

        gap: 12px;

        font-size: 14px;
    }

    .sjm-contact-faq-item > div {
        padding:
            0
            20px
            22px
            64px;

        font-size: 14px;
    }

}/* End custom CSS */