/*
|--------------------------------------------------------------------------
| Contact Premium
|--------------------------------------------------------------------------
*/

.contact-premium-section,
.contact-premium-section * {
    box-sizing: border-box;
}

.contact-premium-section {
    text-align: start;
}


/*
|--------------------------------------------------------------------------
| Heading
|--------------------------------------------------------------------------
*/

.contact-premium-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 24px;
    padding-bottom: 18px;

    border-bottom: 1px solid #e2e8f0;
}

.contact-premium-kicker {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 7px 13px;
    margin-bottom: 12px;

    color: #0f1d3d;
    background: #eef2f8;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
}

.contact-premium-heading h2 {
    margin: 0 0 8px;

    color: #0f172a;

    font-size: 24px;
    font-weight: 950;

    letter-spacing: -0.6px;
}

.contact-premium-heading p {
    max-width: 680px;

    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.9;
}


/*
|--------------------------------------------------------------------------
| Quick Call
|--------------------------------------------------------------------------
*/

.contact-premium-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 118px;
    height: 42px;

    gap: 8px;

    padding: 0 16px;

    color: #ffffff;
    background: #0f172a;

    border-radius: 15px;

    font-size: 12px;
    font-weight: 850;

    text-decoration: none;
    white-space: nowrap;

    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);

    transition: 0.24s ease;
}

.contact-premium-call-btn:hover {
    color: #ffffff;
    background: #14254e;

    text-decoration: none;

    transform: translateY(-2px);
}


/*
|--------------------------------------------------------------------------
| Contact Information Card
|--------------------------------------------------------------------------
*/

.contact-info-premium-card {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 470px;

    overflow: hidden;

    padding: 28px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(20, 37, 78, 0.22),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0f172a 0%,
            #172033 45%,
            #111827 100%
        );

    border-radius: 30px;

    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}


/*
|--------------------------------------------------------------------------
| Decorative Glow
|--------------------------------------------------------------------------
*/

.contact-info-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}

.contact-info-glow-one {
    top: -95px;
    inset-inline-start: -95px;

    width: 230px;
    height: 230px;

    background: rgba(20, 37, 78, 0.14);
}

.contact-info-glow-two {
    bottom: -95px;
    inset-inline-end: -95px;

    width: 190px;
    height: 190px;

    background: rgba(37, 99, 235, 0.14);
}


/*
|--------------------------------------------------------------------------
| Contact Information Content
|--------------------------------------------------------------------------
*/

.contact-info-content,
.contact-social-strip {
    position: relative;
    z-index: 2;
}

.contact-info-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 7px 12px;
    margin-bottom: 16px;

    color: #c8d3e6;
    background: rgba(255, 255, 255, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
}

.contact-info-premium-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 950;
}

.contact-info-premium-card p {
    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 12px;
    line-height: 2;
}


/*
|--------------------------------------------------------------------------
| Information List
|--------------------------------------------------------------------------
*/

.contact-info-list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.contact-info-row {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 12px;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    transition: 0.24s ease;
}

.contact-info-row:hover {
    background: rgba(20, 37, 78, 0.11);

    border-color: rgba(20, 37, 78, 0.34);
}

.contact-premium-section[dir="rtl"]
.contact-info-row:hover {
    transform: translateX(-4px);
}

.contact-premium-section[dir="ltr"]
.contact-info-row:hover {
    transform: translateX(4px);
}

.contact-address-row {
    align-items: flex-start;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    color: #8ea2c9;
    background: rgba(255, 255, 255, 0.09);

    border-radius: 15px;
}

.contact-info-row span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 10px;
}

.contact-info-row a,
.contact-info-row strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 750;
    line-height: 1.8;

    text-decoration: none;
}

.contact-info-row a:hover {
    color: #c8d3e6;

    text-decoration: none;
}


/*
|--------------------------------------------------------------------------
| Social Networks
|--------------------------------------------------------------------------
*/

.contact-social-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 24px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-social-strip > span {
    color: rgba(255, 255, 255, 0.56);

    font-size: 11px;
}

.contact-social-strip div {
    display: flex;
    align-items: center;

    gap: 8px;
}

.contact-social-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;

    text-decoration: none;

    transition: 0.22s ease;
}

.contact-social-strip a:hover {
    color: #ffffff;
    background: #14254e;

    border-color: #14254e;

    text-decoration: none;

    transform: translateY(-3px);
}


/*
|--------------------------------------------------------------------------
| Contact Form Card
|--------------------------------------------------------------------------
*/

.contact-form-premium-card {
    min-height: 470px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 30px;

    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}


/*
|--------------------------------------------------------------------------
| Form Header
|--------------------------------------------------------------------------
*/

.contact-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 8px;
}

.contact-form-header span {
    display: block;

    margin-bottom: 6px;

    color: #14254e;

    font-size: 11px;
    font-weight: 850;
}

.contact-form-header h3 {
    margin: 0;

    color: #0f172a;

    font-size: 21px;
    font-weight: 950;
}

.contact-form-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    color: #14254e;
    background: #eef2f8;

    border-radius: 18px;

    font-size: 18px;
}

.contact-form-description {
    margin: 0 0 20px;

    color: #64748b;

    font-size: 12px;
    line-height: 1.9;
}


/*
|--------------------------------------------------------------------------
| Success Alert
|--------------------------------------------------------------------------
*/

.contact-success-alert {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
    padding: 13px 14px;

    color: #0f1d3d;
    background: #eef2f8;

    border: 1px solid #c8d3e6;
    border-radius: 16px;

    font-size: 12px;
    font-weight: 750;
}


/*
|--------------------------------------------------------------------------
| Labels
|--------------------------------------------------------------------------
*/

.contact-premium-form label {
    display: block;

    margin-bottom: 7px;

    color: #334155;

    font-size: 12px;
    font-weight: 850;
}

.contact-premium-form label span {
    color: #ef4444;
}


/*
|--------------------------------------------------------------------------
| Inputs
|--------------------------------------------------------------------------
*/

.contact-input-wrap,
.contact-textarea-wrap {
    position: relative;
}

.contact-input-wrap i {
    position: absolute;

    top: 50%;
    inset-inline-start: 14px;

    z-index: 2;

    color: #94a3b8;

    font-size: 12px;

    transform: translateY(-50%);
}

.contact-input-wrap input,
.contact-textarea-wrap textarea {
    width: 100%;

    color: #0f172a;
    background: #f8fafc;

    border: 1px solid #e2e8f0;
    outline: 0;

    font-size: 12px;

    transition: 0.22s ease;
}

.contact-input-wrap input {
    height: 47px;

    padding-inline-start: 42px;
    padding-inline-end: 14px;

    border-radius: 16px;
}

.ltr-input-wrap {
    direction: ltr;
}

.ltr-input-wrap input {
    direction: ltr;
    text-align: left;

    padding-left: 42px;
    padding-right: 14px;
}

.ltr-input-wrap i {
    left: 14px;
    right: auto;
}


/*
|--------------------------------------------------------------------------
| Textarea
|--------------------------------------------------------------------------
*/

.contact-textarea-wrap textarea {
    min-height: 136px;

    padding: 14px;

    resize: none;

    border-radius: 18px;

    line-height: 1.9;
}


/*
|--------------------------------------------------------------------------
| Focus / Validation
|--------------------------------------------------------------------------
*/

.contact-input-wrap input:focus,
.contact-textarea-wrap textarea:focus {
    background: #ffffff;

    border-color: rgba(20, 37, 78, 0.70);

    box-shadow: 0 0 0 4px rgba(20, 37, 78, 0.10);
}

.contact-input-wrap input.is-invalid,
.contact-textarea-wrap textarea.is-invalid {
    background: #fff7f7;

    border-color: #ef4444;
}

.contact-error-text {
    display: block;

    margin-top: 6px;

    color: #ef4444;

    font-size: 10px;
}


/*
|--------------------------------------------------------------------------
| Form Footer
|--------------------------------------------------------------------------
*/

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
}

.contact-form-footer > span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #94a3b8;

    font-size: 11px;
}


/*
|--------------------------------------------------------------------------
| Submit Button
|--------------------------------------------------------------------------
*/

.contact-submit-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 132px;
    height: 46px;

    gap: 8px;

    color: #ffffff;
    background: #14254e;

    border: 0;
    border-radius: 16px;

    font-size: 12px;
    font-weight: 850;

    cursor: pointer;

    box-shadow: 0 14px 30px rgba(20, 37, 78, 0.24);

    transition: 0.24s ease;
}

.contact-submit-premium-btn:hover {
    background: #0f1d3d;

    box-shadow: 0 18px 36px rgba(20, 37, 78, 0.30);

    transform: translateY(-2px);
}


/*
|--------------------------------------------------------------------------
| RTL / LTR
|--------------------------------------------------------------------------
*/

.contact-premium-section[dir="rtl"] {
    text-align: right;
}

.contact-premium-section[dir="ltr"] {
    text-align: left;
}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 767.98px) {

    .contact-premium-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-premium-heading h2 {
        font-size: 21px;
    }

    .contact-info-premium-card,
    .contact-form-premium-card {
        padding: 22px;

        border-radius: 24px;
    }

    .contact-social-strip,
    .contact-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-submit-premium-btn {
        width: 100%;
    }
}
