
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Lora, sans-serif;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}
/*start*/



/* ==============================
   CONTACT SECTION
============================== */

.contact-section {
    width: 100%;
    padding: 60px 20px;
    background: #ffffff;
    box-sizing: border-box;
}


/* ==============================
   CONTAINER
============================== */

.contact-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 40% 60%;

    gap: 28px;
    align-items: stretch;
}


/* ==============================
   LEFT CARD
============================== */

.contact-info-card {
    background: #fafafa;

    padding: 38px 38px;

    border-radius: 18px;

    box-shadow:
        0 4px 18px rgba(0,0,0,0.06);

    box-sizing: border-box;
}


.contact-info-card h2,
.contact-form-box h2 {
    margin: 0 0 24px;

    font-size: 32px;
    line-height: 1.2;

    color: #000000;

    font-weight: 500;
}


.contact-info-card h3 {

    font-size: 25px;

    margin: 30px 0 14px;

    color: #000000;

    font-weight: 500;
}


/* ==============================
   CONTACT INFO ROW
============================== */

.contact-info-item,
.working-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 19px;
}


.contact-info-item p,
.working-item p {

    margin: 0;

    color: #5f6e80;

    font-size: 18px;

    line-height: 1.55;
}


.contact-info-item a {

    color: #5f6e80;

    font-size: 18px;

    text-decoration: none;

    transition: .3s;
}


.contact-info-item:nth-of-type(2) a {

    color: #174f91;

    font-weight: 700;
}


.contact-info-item a:hover {

    color: #174f91;
}


/* ==============================
   ICON
============================== */

.contact-icon {

    min-width: 22px;

    color: #19589b;

    font-size: 20px;

    line-height: 1.5;
}


/* ==============================
   SOCIAL ICONS
============================== */

.social-icons {

    display: flex;

    gap: 25px;

    align-items: center;

    flex-wrap: wrap;
}


.social-icons a {

    color: #1c2733;

    font-size: 24px;

    text-decoration: none;

    transition: all .3s ease;
}


.social-icons a:hover {

    color: #19589b;

    transform: translateY(-3px);
}


/* ==============================
   RIGHT FORM
============================== */

.contact-form-box {

    padding: 0 0 0 0;

    box-sizing: border-box;
}


.contact-form-box h2 {

    text-align: center;

    margin-bottom: 32px;
}


/* ==============================
   FORM GROUP
============================== */

.form-group {

    width: 100%;

    margin-bottom: 22px;
}


.form-group label {

    display: block;

    margin-bottom: 9px;

    font-size: 18px;

    color: #58687a;

    font-weight: 500;
}


.form-group input,
.form-group textarea {

    width: 100%;

    border: 1px solid #cccccc;

    border-radius: 10px;

    background: #ffffff;

    color: #333;

    font-size: 17px;

    font-family: inherit;

    outline: none;

    box-sizing: border-box;

    transition: all .3s ease;
}


.form-group input {

    height: 62px;

    padding: 0 15px;
}


.form-group textarea {

    min-height: 152px;

    padding: 15px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #647386;
}


/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {

    border-color: #2c609a;

    box-shadow:
        0 0 0 3px rgba(44,96,154,0.08);
}


/* ==============================
   EMAIL + PHONE
============================== */

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 28px;
}


/* ==============================
   BUTTON
============================== */

.contact-submit {

    width: 100%;

    height: 60px;

    border: none;

    border-radius: 12px;

    background: #2c5f98;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;
}


.contact-submit:hover {

    background: #174c84;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(23,76,132,0.22);
}



/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 1100px) {

    .contact-container {

        grid-template-columns: 42% 58%;

        gap: 22px;
    }


    .contact-info-card {

        padding: 30px;
    }


    .contact-info-card h2,
    .contact-form-box h2 {

        font-size: 28px;
    }


    .contact-info-item p,
    .working-item p,
    .contact-info-item a {

        font-size: 16px;
    }

}



/* =====================================
   MOBILE / TABLET
===================================== */

@media (max-width: 850px) {

    .contact-section {

        padding: 40px 18px;
    }


    .contact-container {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-info-card {

        width: 100%;
    }


    .contact-form-box {

        width: 100%;
    }


    .contact-form-box h2 {

        text-align: left;
    }

}



/* =====================================
   MOBILE
===================================== */

@media (max-width: 600px) {

    .contact-section {

        padding: 30px 15px;
    }


    .contact-info-card {

        padding: 25px 20px;

        border-radius: 14px;
    }


    .contact-info-card h2,
    .contact-form-box h2 {

        font-size: 26px;
    }


    .contact-info-card h3 {

        font-size: 22px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-group label {

        font-size: 16px;
    }


    .form-group input {

        height: 56px;

        font-size: 16px;
    }


    .form-group textarea {

        min-height: 140px;

        font-size: 16px;
    }


    .contact-submit {

        height: 56px;

        font-size: 17px;
    }


    .social-icons {

        gap: 22px;
    }

}



/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 380px) {

    .contact-info-card {

        padding: 22px 16px;
    }


    .contact-info-card h2,
    .contact-form-box h2 {

        font-size: 23px;
    }


    .contact-info-item p,
    .working-item p,
    .contact-info-item a {

        font-size: 15px;
    }

}


/* ===================================
   MAIN SECTION
=================================== */

.gtr-map-info-section {
    width: 100%;
    padding: 30px 20px;
    /*padding: 70px 20px;*/
    background: #f7f9fc;
    box-sizing: border-box;
}


/* ===================================
   MAIN WRAPPER
=================================== */

.gtr-map-info-wrapper {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;

    display: flex;
    align-items: stretch;

    background: #ffffff;

    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}


/* ===================================
   LEFT MAP - 60%
=================================== */

.gtr-map-box {
    width: 100%;
    min-height: 500px;
}

.gtr-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;

    display: block;
    border: 0;
}


/* ===================================
   RIGHT CONTENT - 40%
=================================== */

.gtr-info-box {
    width: 40%;

    padding: 50px 45px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ===================================
   SUBTITLE
=================================== */

.gtr-info-subtitle {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #174c84;
}


/* ===================================
   HEADING
=================================== */

.gtr-info-box h2 {
    margin: 0 0 18px;

    font-size: 34px;
    line-height: 1.3;

    font-weight: 700;

    color: #222222;
}

.gtr-info-box h2 span {
    color: #174c84;
}


/* ===================================
   DESCRIPTION
=================================== */

.gtr-info-description {
    margin: 0 0 28px;

    font-size: 15px;
    line-height: 1.8;

    color: #666666;
}


/* ===================================
   CONTACT LIST
=================================== */

.gtr-contact-list {
    display: flex;
    flex-direction: column;

    gap: 18px;

    margin-bottom: 28px;
}


/* ===================================
   CONTACT ITEM
=================================== */

.gtr-contact-item {
    display: flex;
    align-items: center;

    gap: 14px;
}


/* ===================================
   ICON
=================================== */

.gtr-contact-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef5fc;

    color: #174c84;

    border-radius: 50%;

    font-size: 19px;
}


/* ===================================
   CONTACT TEXT
=================================== */

.gtr-contact-text h4 {
    margin: 0 0 3px;

    font-size: 15px;
    font-weight: 600;

    color: #222222;
}

.gtr-contact-text p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;

    color: #666666;

    word-break: break-word;
}


/* ===================================
   BUTTON
=================================== */

.gtr-direction-btn {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 24px;

    background: #174c84;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    border-radius: 6px;

    transition: all 0.3s ease;
}

.gtr-direction-btn:hover {
    background: #0f3c6b;
    transform: translateY(-2px);
}

.gtr-direction-btn span {
    font-size: 19px;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 991px) {

    .gtr-map-info-section {
        padding: 55px 20px;
    }

    .gtr-map-box {
        width: 55%;
    }

    .gtr-info-box {
        width: 45%;
        padding: 40px 30px;
    }

    .gtr-info-box h2 {
        font-size: 29px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 767px) {

    .gtr-map-info-section {
        padding: 40px 15px;
    }

    .gtr-map-info-wrapper {
        flex-direction: column;
        border-radius: 12px;
    }


    /* Map Full Width */

    .gtr-map-box {
        width: 100%;
        min-height: 350px;
    }

    .gtr-map-box iframe {
        width: 100%;
        height: 350px;
        min-height: 350px;
    }


    /* Content Full Width */

    .gtr-info-box {
        width: 100%;
        padding: 35px 25px;
    }

    .gtr-info-box h2 {
        font-size: 28px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .gtr-map-info-section {
        padding: 30px 12px;
    }

    .gtr-map-box {
        min-height: 300px;
    }

    .gtr-map-box iframe {
        height: 300px;
        min-height: 300px;
    }

    .gtr-info-box {
        padding: 30px 20px;
    }

    .gtr-info-box h2 {
        font-size: 24px;
    }

    .gtr-info-description {
        font-size: 14px;
    }

    .gtr-direction-btn {
        width: 100%;
        box-sizing: border-box;
    }

}

