/* Contact page — two-panel design */

.dsp-contact-page {
    background: #eef1f6;
}

.dsp-contact-shell {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 31, 61, 0.1);
    margin-bottom: 36px;
}

/* ---- Left: Get In Touch ---- */
.dsp-contact-aside {
    width: 34%;
    background: linear-gradient(165deg, #0a1f3d 0%, #0d2a52 55%, #0a1f3d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dsp-contact-aside::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.2px, transparent 1.2px);
    background-size: 10px 10px;
    opacity: 0.55;
    pointer-events: none;
}

.dsp-contact-aside::after {
    content: '';
    position: absolute;
    left: -20%;
    bottom: -30px;
    width: 140%;
    height: 140px;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(0, 119, 194, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 70% 45% at 70% 90%, rgba(232, 192, 86, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.dsp-contact-aside-inner {
    position: relative;
    z-index: 1;
    padding: 36px 30px 32px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.dsp-contact-aside-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 28px;
    padding-bottom: 12px;
    position: relative;
}

.dsp-contact-aside-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: #e8c056;
    border-radius: 2px;
}

.dsp-contact-aside-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dsp-contact-aside-item:last-of-type {
    border-bottom: none;
}

.dsp-contact-aside-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8c056;
    color: #0a1f3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.dsp-contact-aside-text {
    flex: 1;
    min-width: 0;
}

.dsp-contact-aside-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.dsp-contact-aside-text p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
}

.dsp-contact-aside-text a {
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
}

.dsp-contact-aside-text a:hover {
    color: #e8c056 !important;
}

.dsp-contact-aside-social {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dsp-contact-aside-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dsp-contact-aside-social a:hover {
    background: #e8c056;
    border-color: #e8c056;
    color: #0a1f3d !important;
}

/* ---- Right: Form ---- */
.dsp-contact-form-wrap {
    width: 66%;
    background: #fff;
    padding: 36px 36px 32px;
}

.dsp-contact-form-head {
    margin-bottom: 26px;
}

.dsp-contact-form-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(0, 119, 194, 0.25);
    background: rgba(0, 119, 194, 0.08);
    color: #0077C2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.dsp-contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0a1f3d;
    margin: 0;
    padding-bottom: 12px;
    position: relative;
    display: inline-block;
}

.dsp-contact-form-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: #0a1f3d;
    border-radius: 2px;
}

.dsp-contact-form .form-group {
    margin-bottom: 16px;
}

.dsp-contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #0a1f3d;
    margin-bottom: 7px;
}

.dsp-ci-field {
    position: relative;
}

.dsp-ci-field > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
    width: 16px;
    text-align: center;
}

.dsp-ci-field--textarea > i {
    top: 16px;
    transform: none;
}

.dsp-contact-form .form-control {
    height: 46px;
    border-radius: 10px !important;
    border: 1px solid #d5dde8 !important;
    box-shadow: none !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #1e293b;
    padding: 10px 14px 10px 40px !important;
    background: #fff;
}

.dsp-contact-form textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding-top: 12px !important;
}

.dsp-contact-form .form-control:focus {
    border-color: #0077C2 !important;
    box-shadow: 0 0 0 3px rgba(0, 119, 194, 0.12) !important;
}

.dsp-contact-form .form-control::placeholder {
    color: #94a3b8;
}

/* Captcha row */
.dsp-contact-captcha {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px 18px;
    margin-bottom: 8px;
}

.dsp-contact-captcha-input {
    flex: 1 1 160px;
    max-width: 220px;
    margin-bottom: 0 !important;
}

.dsp-contact-captcha-reload {
    border: none;
    background: transparent;
    padding: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0077C2;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.dsp-contact-captcha-reload:hover {
    color: #0a1f3d;
}

.dsp-contact-captcha-box {
    flex: 0 0 auto;
    min-width: 140px;
    min-height: 46px;
    border: 1.5px dashed #c5d0de;
    border-radius: 10px;
    padding: 4px 8px;
    background: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dsp-contact-captcha-box img {
    height: 40px;
    width: auto;
    max-height: 42px;
    max-width: 160px;
    display: block;
    border-radius: 4px;
    object-fit: contain;
}

.dsp-contact-submit {
    text-align: center;
    margin-top: 10px;
}

.dsp-contact-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 48px !important;
    background: linear-gradient(135deg, #0077C2 0%, #0060a0 100%) !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 119, 194, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    min-width: 200px;
}

.dsp-contact-btn:hover {
    background: linear-gradient(135deg, #0066a8 0%, #004f82 100%) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 119, 194, 0.35);
}

.dsp-contact-btn i {
    font-size: 14px;
}

/* Map */
.dsp-contact-map .dsp-page-intro {
    margin-bottom: 14px;
}

.dsp-contact-map-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 31, 61, 0.08);
    background: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .dsp-contact-aside,
    .dsp-contact-form-wrap {
        width: 100%;
    }

    .dsp-contact-aside {
        border-radius: 0;
    }

    .dsp-contact-aside-inner {
        min-height: 0;
        padding: 28px 24px 24px;
    }

    .dsp-contact-aside-social {
        margin-top: 8px;
        padding-top: 20px;
    }

    .dsp-contact-form-wrap {
        padding: 28px 22px 26px;
    }
}

@media (max-width: 575px) {
    .dsp-contact-shell {
        border-radius: 14px;
    }

    .dsp-contact-aside-title,
    .dsp-contact-form-title {
        font-size: 17px;
    }

    .dsp-contact-form-wrap {
        padding: 24px 16px 22px;
    }

    .dsp-contact-captcha {
        flex-direction: column;
        align-items: stretch;
    }

    .dsp-contact-captcha-input {
        max-width: none;
    }

    .dsp-contact-captcha-reload {
        padding: 0;
        order: 3;
    }

    .dsp-contact-captcha-box {
        width: 100%;
        min-height: 52px;
    }

    .dsp-contact-btn {
        width: 100%;
        min-width: 0;
    }
}
