:root{
    --green:#07951b;
    --dark:#10292f;
    --text:#5d686c;
    --border:#e5eeee;
}

/* CONTACT HERO */

.contact-hero-section{
    position:relative;
    width:100%;
    min-height:520px;
    background:linear-gradient(90deg,#f8fcff 0%,#fff 52%,#f5fbff 100%);
    overflow:hidden;
}

.contact-left-image{
    position:absolute;
    left:0;
    top:0;
    width:280px;
    height:520px;
    overflow:hidden;
    z-index:1;
}

.contact-left-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:left center;
    display:block;
}

.contact-left-fade{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(248,252,255,0) 0%,rgba(248,252,255,.2) 38%,rgba(248,252,255,.75) 72%,rgba(248,252,255,1) 100%);
}

.contact-hero-wrap{
    position:relative;
    z-index:2;
    max-width:1180px;
    min-height:520px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) 455px;
    gap:70px;
    align-items:center;
    padding-left:210px;
    padding-top: 30px;
}

.contact-hero-content{
    max-width:520px;
}

.contact-subtitle,
.contact-section-title,
.office-subtitle{
    position:relative;
    display:inline-block;
    color:var(--green);
    font-size:13px;
    font-weight:900;
    letter-spacing:.3px;
    margin-bottom:22px;
}

.contact-subtitle::after,
.contact-section-title::after,
.office-subtitle::after{
    content:"";
    position:absolute;
    bottom:-10px;
    width:32px;
    height:3px;
    background:var(--green);
    border-radius:20px;
}

.contact-subtitle::after,
.office-subtitle::after{
    left:0;
}

.contact-section-title::after{
    left:50%;
    transform:translateX(-50%);
}

.contact-hero-content h1{
    color:var(--dark);
    font-size:40px;
    line-height:1.14;
    font-weight:900;
    letter-spacing:-1.9px;
    margin-bottom:26px;
}

.contact-hero-content > p{
    max-width:430px;
    color:var(--text);
    font-size:15px;
    line-height:1.9;
    font-weight:500;
    margin-bottom:38px;
}

.contact-features{
    display:flex;
    gap:48px;
}

.contact-feature{
    display:flex;
    gap:14px;
    align-items:flex-start;
}

.contact-feature-icon{
    width:42px;
    min-width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-feature-icon svg{
    width:34px;
    height:34px;
    stroke:#13a52c;
    stroke-width:2;
}

.contact-feature h6{
    color:var(--dark);
    font-size:15px;
    line-height:1.4;
    font-weight:900;
    margin-bottom:6px;
}

.contact-feature p{
    color:var(--text);
    font-size:13px;
    line-height:1.7;
    margin:0;
}

/* FORM */

.contact-form-card{
    width:100%;
    max-width:455px;
    background:#fff;
    border:1px solid #edf1f0;
    border-radius:16px;
    padding:30px;
    box-shadow:0 14px 38px rgba(16,41,47,.06),0 4px 12px rgba(16,41,47,.03);
}

.contact-form-card h3{
    color:var(--dark);
    font-size:24px;
    line-height:1.3;
    font-weight:900;
    margin-bottom:24px;
}

.contact-form-card form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.contact-form-card input,
.contact-form-card textarea{
    width:100%;
    border:1px solid #dfe8e6;
    border-radius:7px;
    outline:none;
    color:var(--dark);
    font-size:14px;
    font-weight:500;
    padding:15px 16px;
    transition:.25s ease;
}

.contact-form-card textarea{
    min-height:108px;
    resize:none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{
    border-color:#12a62d;
    box-shadow:0 0 0 3px rgba(18,166,45,.08);
}

.contact-form-card button{
    width:175px;
    height:48px;
    border:0;
    border-radius:7px;
    background:var(--green);
    color:#fff;
    font-size:14px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.contact-form-card button svg{
    width:18px;
    height:18px;
    stroke:#fff;
}

/* COMMON */

.contact-container{
    max-width:1180px;
}

/* CONNECT */

.connect-section{
    padding:50px 72px 0;
    background:#fff;
}

.connect-section h2{
    font-size:36px;
    line-height:1.2;
    font-weight:900;
    color:var(--dark);
    letter-spacing:-1px;
    margin-bottom:36px;
}

.connect-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.connect-card{
    min-height:200px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:34px 18px 26px;
    text-align:center;
    box-shadow:0 4px 18px rgba(16,41,47,.018);
}

.connect-card svg{
    width:40px;
    height:40px;
    stroke:#0aa329;
    stroke-width:1.9;
    margin-bottom:20px;
}

.connect-card h6{
    font-size:15px;
    font-weight:900;
    color:var(--dark);
    margin-bottom:9px;
}

.connect-card strong{
    display:block;
    font-size:14px;
    color:var(--dark);
    font-weight:900;
    margin-bottom:8px;
}

.connect-card p{
    font-size:13px;
    line-height:1.65;
    color:var(--text);
    margin:0;
}

/* OFFICE */

.office-section{
    padding:30px 72px 0;
    background:#fff;
}

.office-box{
    display:grid;
    grid-template-columns:39% 61%;
    min-height:290px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
}

.office-content{
    padding:42px 38px;
}

.office-content h2{
    font-size:34px;
    line-height:1.2;
    font-weight:900;
    color:var(--dark);
    letter-spacing:-1px;
    margin-bottom:18px;
}

.office-content p{
    font-size:14px;
    line-height:1.85;
    color:var(--text);
    max-width:345px;
    margin-bottom:26px;
}

.direction-btn{
    width:168px;
    height:45px;
    border:1px solid var(--green);
    border-radius:6px;
    color:var(--green);
    background:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    font-size:14px;
    font-weight:900;
}

.direction-btn svg{
    width:16px;
    height:16px;
}

.office-image{
    height:100%;
    min-height:290px;
    line-height:0;
}

.office-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* MAP */

.map-section{
    padding:30px 72px 60px;
    background:#fff;
}

.map-box{
    position:relative;
    height:240px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid var(--border);
    background:#f5f5f5;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
    /* margin-top:-48px; */
}

.map-card{
    position:absolute;
    left:34px;
    top:24px;
    width:250px;
    background:#fff;
    border-radius:11px;
    padding:23px 24px;
    box-shadow:0 12px 30px rgba(16,41,47,.08);
}

.map-card h6{
    font-size:14px;
    font-weight:900;
    color:var(--green);
    margin-bottom:17px;
}

.map-card p{
    font-size:13px;
    line-height:1.7;
    color:var(--text);
    margin-bottom:17px;
}

.map-card a{
    color:var(--green);
    font-size:13px;
    font-weight:900;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
}

.map-card svg{
    width:15px;
    height:15px;
}

/* TABLET */

@media(max-width:991px){
    .contact-hero-section{
        display:flex;
        flex-direction:column;
        padding:45px 24px;
        min-height:auto;
    }

    .contact-left-image{
        position:relative;
        width:100%;
        height:320px;
        border-radius:18px;
        order:2;
        margin-top:30px;
    }

    .contact-left-fade{
        display:none;
    }

    .contact-hero-wrap{
        max-width:100%;
        min-height:auto;
        padding:0;
        display:flex;
        flex-direction:column;
        gap:30px;
        align-items:stretch;
    }

    .contact-hero-content{
        order:1;
        max-width:100%;
    }

    .contact-form-card{
        order:3;
        max-width:100%;
    }

    .contact-hero-content h1{
        font-size:42px;
    }

    .connect-section,
    .office-section,
    .map-section{
        padding-left:24px;
        padding-right:24px;
    }

    .connect-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .office-box{
        grid-template-columns:1fr;
    }

    .office-image{
        height:300px;
    }
}

/* MOBILE */

@media(max-width:575px){
    .contact-hero-section{
        padding:40px 20px;
    }

    .contact-hero-content h1{
        font-size:34px;
        line-height:1.15;
        letter-spacing:-1px;
    }

    .contact-hero-content > p{
        font-size:14px;
    }

    .contact-features{
        flex-direction:column;
        gap:24px;
    }

    .contact-left-image{
        height:250px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-card{
        padding:24px;
    }

    .contact-form-card button{
        width:100%;
    }

    .connect-section{
        padding:50px 20px 0;
    }

    .office-section{
        padding:28px 20px 0;
    }

    .map-section{
        padding:28px 20px 50px;
    }

    .connect-grid{
        grid-template-columns:1fr;
    }

    .connect-section h2{
        font-size:30px;
    }

    .connect-card{
        min-height:190px;
    }

    .office-content{
        padding:32px 24px;
    }

    .office-content h2{
        font-size:28px;
    }

    .map-box{
        height:330px;
    }

    .map-card{
        left:18px;
        top:18px;
        width:calc(100% - 36px);
    }
}
.map-box iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
    /* margin-top:-48px; */
}

@media(max-width:575px){
    .map-box iframe{
        margin-top:0;
    }

    .map-box{
        height:360px;
    }

    .map-card{
        position:relative;
        left:auto;
        top:auto;
        width:100%;
        margin-bottom:14px;
    }
}