/*====================================
        CONTACT BANNER
====================================*/

.contact-banner{
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(6, 14, 35, 0.2), rgba(6, 14, 35, 0.65)),
        url("../images/gallery/contact.jpeg") center center/cover no-repeat;
}

.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 14, 35, 0.2) 0%, rgba(18, 41, 91, 0.5) 45%, rgba(18, 41, 91, 0.85) 100%);
}

.contact-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-banner .banner-content {
    max-width: 620px;
    text-align: right;
}

.contact-banner .banner-subtitle {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-banner h1 {
    color: #fff;
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-banner p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 30px;
    font-size: 17px;
    margin-bottom: 30px;
}

.contact-banner .breadcrumb-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.contact-banner .breadcrumb-nav a,
.contact-banner .breadcrumb-nav span {
    color: #fff;
    text-decoration: none;
}

.contact-banner .breadcrumb-nav a:hover {
    color: #dce8ff;
}

@media (max-width: 991px) {
    .contact-banner {
        min-height: 320px;
    }

    .contact-banner .container {
        justify-content: center;
    }

    .contact-banner .banner-content {
        text-align: center;
        max-width: 650px;
    }

    .contact-banner .breadcrumb-nav {
        justify-content: center;
    }

    .contact-banner h1 {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .contact-banner {
        min-height: 280px;
        background-position: 35% center;
    }

    .contact-banner h1 {
        font-size: 34px;
    }

    .contact-banner p {
        font-size: 15px;
        line-height: 27px;
    }
}

/*====================================
        CONTACT SECTION
====================================*/

.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef4ff 45%, #f9fbff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before,
.contact-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(40, 74, 140, 0.08);
}

.contact-section::before {
    width: 320px;
    height: 320px;
    left: -120px;
    top: -120px;
}

.contact-section::after {
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -80px;
}

.contact-left {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 41, 91, 0.08);
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(18, 41, 91, 0.08);
    backdrop-filter: blur(10px);
}

.contact-subtitle {
    color: #284a8c;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 13px;
}

.contact-left h2 {
    font-size: 40px;
    color: #12295b;
    margin: 16px 0 18px;
    line-height: 1.2;
}

.contact-left > p {
    color: #666;
    line-height: 30px;
    margin-bottom: 28px;
}

.contact-info-stack {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-info-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #edf2ff;
    box-shadow: 0 10px 25px rgba(18, 41, 91, 0.05);
    transition: 0.35s ease;
}

.contact-info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(18, 41, 91, 0.08);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #12295b, #284a8c);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-box h5 {
    color: #12295b;
    margin-bottom: 6px;
    font-size: 17px;
}

.contact-info-box p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f3f7ff;
    color: #284a8c;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.highlight-item i {
    color: #12295b;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(18, 41, 91, 0.12);
    border: 1px solid rgba(18, 41, 91, 0.08);
}

.form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}

.form-label {
    display: inline-block;
    color: #284a8c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-form-wrapper h3 {
    color: #12295b;
    margin-bottom: 0;
    font-size: 28px;
}

.form-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: #eaf1ff;
    color: #284a8c;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.premium-form label {
    display: block;
    margin-bottom: 8px;
    color: #12295b;
    font-weight: 600;
    font-size: 14px;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    border: 1px solid #dfe7f7;
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    transition: 0.3s ease;
    background: #fbfdff;
    color: #12295b;
}

.premium-form input:focus,
.premium-form textarea:focus {
    border-color: #284a8c;
    box-shadow: 0 0 0 4px rgba(40, 74, 140, 0.12);
    background: #fff;
}

.premium-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-note {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.premium-form button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #12295b, #284a8c);
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s ease;
}

.premium-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(18, 41, 91, 0.18);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-left {
        margin-bottom: 24px;
    }

    .contact-left h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .contact-left h2 {
        font-size: 28px;
    }

    .form-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-form button {
        width: 100%;
        justify-content: center;
    }
}

/*====================================
        STORE MAP
====================================*/

.store-map-section {
    padding: 110px 0;
    background: #fff;
}

.map-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.map-heading span {
    display: inline-block;
    color: #284a8c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.map-heading h2 {
    font-size: 46px;
    color: #12295b;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-heading p {
    color: #666;
    line-height: 30px;
    font-size: 16px;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 8px solid #fff;
}

.map-wrapper iframe {
    width: 100%;
    height: 550px;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .store-map-section {
        padding: 80px 0;
    }

    .map-heading h2 {
        font-size: 36px;
    }

    .map-wrapper iframe {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .store-map-section {
        padding: 70px 0;
    }

    .map-heading h2 {
        font-size: 30px;
    }

    .map-heading p {
        font-size: 15px;
        line-height: 28px;
    }

    .map-wrapper {
        border-radius: 18px;
    }

    .map-wrapper iframe {
        height: 320px;
    }
}