.contact-page {
    min-height: 100vh;
    background: #f7f9fc;
}

.contact-header {
    padding: 28px 0 38px;
    background: #ffffff;
    border-bottom: 1px solid #edf0f4;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;

    font-size: 13px;
}

.contact-breadcrumb a {
    color: #183f68;
    font-weight: 600;
    text-decoration: none;
}

.contact-breadcrumb span {
    color: #8c98a6;
}

.contact-breadcrumb i {
    color: #b3bdc8;
    font-size: 9px;
}

.contact-header-content {
    max-width: 700px;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #e59b28;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.contact-header h1 {
    margin: 0 0 10px;
    color: #162c42;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 750;
}

.contact-header p {
    max-width: 650px;
    margin: 0;
    color: #7d8997;
    font-size: 14px;
    line-height: 1.7;
}

.contact-content {
    padding: 35px 0 65px;
}

.contact-main-row {
    align-items: stretch;
}

.contact-map-card {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(20, 50, 80, .05);
}

.contact-map-card iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 410px;
    display: block;
    border: 0 !important;
}

.map-placeholder {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #eef5fb;
    color: #183f68;
    border-radius: 50%;
    font-size: 27px;
}

.map-placeholder h4 {
    margin: 0 0 6px;
    color: #273b4f;
    font-size: 19px;
}

.map-placeholder p {
    margin: 0;
    color: #8b96a3;
    font-size: 13px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    transition: .25s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 50, 80, .07);
}

.contact-info-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 15px;
}

.address-icon {
    background: #eef5fb;
    color: #183f68;
}

.phone-icon {
    background: #edf8f1;
    color: #219653;
}

.email-icon {
    background: #fff5e7;
    color: #df8d1e;
}

.contact-info-content {
    min-width: 0;
}

.contact-info-label {
    display: block;
    margin-bottom: 2px;
    color: #9aa5b1;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.contact-info-content h3 {
    margin: 0 0 5px;
    color: #26394c;
    font-size: 13px;
    font-weight: 700;
}

.contact-info-content p {
    margin: 0;
    color: #7d8997;
    font-size: 11px;
    line-height: 1.5;
}

.contact-info-link {
    display: block;
    overflow: hidden;
    color: #183f68;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.contact-info-link:hover {
    color: #e59b28;
    text-decoration: none;
}

.contact-form-card {
    height: 100%;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(20, 50, 80, .05);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
}

.contact-form-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #183f68;
    color: #ffffff;
    border-radius: 13px;
    font-size: 17px;
}

.contact-form-header span {
    display: block;
    margin-bottom: 3px;
    color: #e59b28;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-form-header h2 {
    margin: 0;
    color: #1d344a;
    font-size: 20px;
    font-weight: 750;
}

.contact-form-description {
    margin: 0 0 23px;
    color: #8a95a2;
    font-size: 12px;
    line-height: 1.6;
}

.modern-form-group {
    margin-bottom: 16px;
}

.modern-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #3a4b5c;
    font-size: 11px;
    font-weight: 700;
}

.modern-input {
    position: relative;
    display: flex;
    align-items: center;
}

.modern-input > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a1acb7;
    font-size: 13px;
    pointer-events: none;
}

.modern-input input,
.modern-input textarea {
    width: 100%;
    border: 1px solid #e2e8ee;
    outline: none;
    background: #fafbfd;
    color: #293b4e;
    border-radius: 10px;
    font-size: 12px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.modern-input input {
    height: 43px;
    padding: 0 13px 0 39px;
}

.modern-input textarea {
    min-height: 115px;
    padding: 12px 13px 12px 39px;
    resize: vertical;
    line-height: 1.6;
}

.modern-input textarea + i {
    top: 17px;
    transform: none;
}

.modern-input input:focus,
.modern-input textarea:focus {
    background: #ffffff;
    border-color: #183f68;
    box-shadow:
        0 0 0 3px rgba(24, 63, 104, .07);
}

.modern-input input:focus + i,
.modern-input textarea:focus + i {
    color: #183f68;
}

.modern-input input::placeholder,
.modern-input textarea::placeholder {
    color: #a7b0ba;
}

.modern-submit-btn {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    border: 0;
    border-radius: 10px;
    background: #183f68;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.modern-submit-btn:hover {
    background: #123451;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 63, 104, .18);
}

.modern-submit-btn i {
    font-size: 11px;
    transition: transform .2s ease;
}

.modern-submit-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1199px) {
    .contact-info-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .contact-header h1 {
        font-size: 30px;
    }

    .contact-map-card {
        min-height: 350px;
    }

    .contact-map-card iframe {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-header {
        padding: 20px 0 28px;
    }

    .contact-breadcrumb {
        margin-bottom: 20px;
    }

    .contact-header h1 {
        font-size: 26px;
    }

    .contact-header p {
        font-size: 12px;
    }

    .contact-content {
        padding: 22px 0 45px;
    }

    .contact-map-card {
        min-height: 300px;

        border-radius: 14px;
    }

    .contact-map-card iframe {
        min-height: 300px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 22px;

        border-radius: 14px;
    }
}

@media (max-width: 575px) {
    .contact-header h1 {
        font-size: 23px;
    }

    .contact-form-header h2 {
        font-size: 18px;
    }

    .contact-form-icon {
        width: 43px;
        height: 43px;
    }

    .contact-info-card {
        padding: 14px;
    }
}