.contact-page-header {
    position: relative;
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    overflow: hidden;
}

    .contact-page-header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 35%);
        pointer-events: none;
    }

.contact-page-header-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.contact-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.16);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.25);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-page-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.contact-page-section {
    padding: 90px 0;
    background: #f8fafc;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f7;
    height: 100%;
}

.contact-mini-title {
    display: inline-block;
    color: #f59e0b;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 14px;
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.14);
    color: #d97706;
    font-size: 1.2rem;
}

.contact-info-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.contact-info-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #fff;
    font-size: 1.15rem;
    transition: all .3s ease;
}

    .contact-social-link:hover {
        transform: translateY(-3px);
        color: #fff;
        background: #f59e0b;
    }

.custom-input {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid #dbe4ee;
    padding: 12px 16px;
    box-shadow: none !important;
}

textarea.custom-input {
    min-height: auto;
    resize: vertical;
}

.custom-input:focus {
    border-color: #f59e0b;
}

.form-label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.contact-map-wrapper {
    margin-top: 35px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f7;
}

    .contact-map-wrapper iframe {
        width: 100%;
        min-height: 420px;
        border: 0;
        display: block;
    }

@media (max-width: 991.98px) {
    .contact-page-header {
        padding: 75px 0 60px;
    }

        .contact-page-header h1 {
            font-size: 2.35rem;
        }

    .contact-page-section {
        padding: 70px 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px 22px;
    }

        .contact-info-card h2,
        .contact-form-card h2 {
            font-size: 1.75rem;
        }
}

@media (max-width: 767.98px) {
    .contact-page-header h1 {
        font-size: 2rem;
    }

    .contact-page-header p {
        font-size: .96rem;
    }

    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-page-header {
        padding: 60px 0 50px;
    }

        .contact-page-header h1 {
            font-size: 1.75rem;
        }

    .contact-page-section {
        padding: 50px 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .contact-info-item {
        padding: 14px;
        border-radius: 16px;
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }

    .custom-input {
        min-height: 48px;
    }

    .contact-map-wrapper {
        border-radius: 18px;
    }

        .contact-map-wrapper iframe {
            min-height: 320px;
        }

    .btn.rounded-pill {
        width: 100%;
    }
}
