﻿.section-subtitle {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #b88a44;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.section-subtitle::after {
        content: "";
        width: 30px;
        height: 1px;
        background: #c8a166;
        display: inline-block;
        margin-left: 10px;
        vertical-align: middle;
    }

.section-subtitle::before {
        content: "";
        width: 30px;
        height: 1px;
        background: #c8a166;
        display: inline-block;
        margin-right: 10px;
        vertical-align: middle;
    }

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 0;
}

.contact-info-section {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.contact-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 30px 40px 15px;
    text-align: center;
    box-shadow: 0 12px 45px rgba(0,0,0,.08);
    overflow: hidden;
    min-height: 330px;
    transition: .35s;
}

    .contact-card:hover {
        transform: translateY(-10px);
    }

.top-strip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 5px;
    border-radius: 0 0 10px 10px;
}

.blue {
    background: #0d4f9f;
}

.gold {
    background: #d59d32;
}

/*==============================
        ICON
==============================*/

.icon-circle {
    width: 90px;
    height: 90px;
    margin: auto;
    background: #eef3fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-bg {
    background: #fbf4ea;
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #114fa2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-icon {
    background: #d59d32;
}

.icon i {
    color: #fff;
    font-size: 32px;
}

/*==============================
        TITLE
==============================*/

.contact-card h3 {
    color: #11264e;
    font-size: 18px;
    margin: 15px 0 10px;
}

/*==============================
        DIVIDER
==============================*/

.small-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

    .small-divider span {
        width: 70px;
        height: 1px;
        background: #d6dbe7;
    }

    .small-divider .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #0d4f9f;
    }

.gold-divider .dot {
    background: #d59d32;
}

/*==============================
        CONTENT
==============================*/

.contact-card p {
    color: #343c4e;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

    .contact-list li {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #4d566c;
        padding: 7px 0;
    }

        .contact-list li + li {
            border-top: 1px solid #ececec;
        }

    .contact-list i {
        width: 15px;
        color: #d59d32;
        margin-right: 18px;
        font-size: 16px;
    }

.contact-card hr {
    margin: 30px auto;
    width: 85%;
    border-color: #ececec;
}

/*==============================
        CORNER TRIANGLE
==============================*/

.corner-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.blue-corner {
    border-width: 0 0 75px 75px;
    border-color: transparent transparent #104ea2 transparent;
}

.gold-corner {
    border-width: 0 0 75px 75px;
    border-color: transparent transparent #d59d32 transparent;
}

/*==============================
        DOT PATTERN
==============================*/

.dot-pattern {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 65px;
    height: 65px;
    background-image: radial-gradient(#8db0e8 2px,transparent 2px);
    background-size: 15px 15px;
}

.gold-dots {
    background-image: radial-gradient(#d8b16a 2px,transparent 2px);
}


.contact-form-section {
    padding: 60px 0;
    position: relative;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 35px;
    padding: 45px;
    border: 1px solid #ececec;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}
 

.form-box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #dfe3ec;
    border-radius: 15px;
    padding: 15px 15px;
    position: relative;
    transition: .35s;
}

    .form-box:hover {
        border-color: #163a76;
        box-shadow: 0 10px 25px rgba(22,58,118,.08);
    }

.textarea-box {
    align-items: flex-start;
    min-height: 110px;
}

/*==========================
      ICON
==========================*/

.form-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #203b78, #102c64);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
    margin-right: 18px;
}

.form-content {
    flex: 1;
}

    .form-content label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: #1d2d4b;
        margin-bottom: 0;
        text-transform: uppercase;
    }

.form-control,
.form-select {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 14px;
    color: #7a8398;
    box-shadow: none !important;
}

    .form-control::placeholder {
        color: #979797;
    }

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .form-select:focus,
    .form-control:focus {
        border: none;
        outline: none;
        background: transparent;
    }

/*==========================
      TEXTAREA
==========================*/

textarea.form-control {
    resize: none;
    min-height: 90px;
    padding-top: 2px;
}

/*==========================
      SELECT ICON
==========================*/

.select-arrow {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7387;
    pointer-events: none;
}

/*==========================
      BUTTON
==========================*/

.send-btn {
    border: none;
    background: #143b7b;
    color: #fff;
    padding: 15px 25px;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 500;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(20, 59, 123, .18);
    border: 2px solid #d8a13d;
}

    .send-btn:hover {
        background: #102f63;
        transform: translateY(-3px);
    }

    .send-btn .btn-icon {
        color: #d8a13d;
        font-size: 18px;
    }

    .send-btn .btn-arrow {
        font-size: 18px;
    }

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:991px) {

    .contact-form-wrapper {
        padding: 30px;
    }

    .form-box {
        padding: 18px;
    }

    .send-btn {
        width: 100%;
        justify-content: center;
        font-size: 20px;
    }
}

@media(max-width:767px) {

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-box {
        flex-direction: column;
        text-align: center;
    }

    .form-icon {
        margin: 0 auto 15px;
    }

    .form-content {
        width: 100%;
    }

    .select-arrow {
        right: 20px;
    }

    .send-btn {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
        font-size: 18px;
    }
}

/*==========================================
        OFFICE LOCATION SECTION
==========================================*/

.office-location {
    padding: 80px 0;
    background: #ffffff;
}

.location-wrapper {
    border: 2px solid #0d2142;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

/*==================================
        LEFT CONTENT
==================================*/

.location-content {
    background: #071d3a;
    color: #fff;
    height: 100%;
    padding: 15px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .location-content .sub-title {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 600;
        color: #d5a03b;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

        .location-content .sub-title::after {
            content: "";
            width: 55px;
            height: 2px;
            background: #d5a03b;
        }

.location-content h2 { 
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
}

 

.location-content p { 
    color: #d5dceb; 
    margin-bottom: 25px;
}

/*==================================
            BUTTON
==================================*/

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 47px;
    background: linear-gradient(180deg, #e3b14f, #cb8d22);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: .35s;
}

    .location-btn:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,.20);
    }

/*==================================
            MAP
==================================*/

.map-area {
    position: relative;
    height: 100%;
    min-height: 321px;
    overflow: hidden;
    border-left: 2px solid #0d2142;
}

    .map-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/*==================================
        LOCATION PIN
==================================*/

.map-pin {
    position: absolute;
    top: 40%;
    left: 53%;
    transform: translate(-50%,-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #071d3a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

    .map-pin i {
        color: #fff;
        font-size: 34px;
    }

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px) {

    .location-content {
        padding: 45px 30px;
    }

        .location-content h2 {
            font-size: 42px;
        }

    .map-area {
        min-height: 350px;
        border-left: none;
        border-top: 2px solid #0d2142;
    }
}

@media(max-width:767px) {

    .office-location {
        padding: 50px 0;
    }

    .location-content {
        padding: 35px 25px;
        text-align: center;
    }

    .sub-title {
        justify-content: center;
    }

    .title-line {
        margin: 0 auto 20px;
    }

    .location-btn {
        width: 100%;
    }

    .location-content h2 {
        font-size: 34px;
    }

    .location-content p {
        font-size: 16px;
    }

    .map-area {
        min-height: 260px;
    }

    .map-pin {
        width: 60px;
        height: 60px;
    }

        .map-pin i {
            font-size: 28px;
        }
}
