.contact-hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%,
            rgba(34, 211, 238, .18),
            transparent 35%),
        linear-gradient(135deg,
            #071a33,
            #0b2948,
            #0d3b56);
    color: white;
}
.contact-hero::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    top: -180px;
    left: -100px;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
}
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    color: #67e8f9;
    background: rgba(34, 211, 238, .12);
    border: 1px solid rgba(34, 211, 238, .25);
    font-weight: 700;
}
.contact-hero h1 {
    margin: 25px 0 15px;
    color: white;
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;
}
.contact-hero p {
    max-width: 650px;
    margin: auto;
    color: rgba(255, 255, 255, .7);
    line-height: 2;
    font-size: 1.05rem;
}
.contact-section {
    padding: 90px 0;
    background: #f8fafc;
}
.contact-section-label {
    color: #0891b2;
    font-weight: 800;
}
.contact-info-wrapper h2 {
    margin: 12px 0 18px;
    color: #071a33;
    font-weight: 800;
    font-size: 2.3rem;
}
.contact-intro {
    margin-bottom: 35px;
    color: #64748b;
    line-height: 2;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}
.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #ecfeff;
    color: #0891b2;
    font-size: 21px;
}
.contact-info-item h6 {
    margin-bottom: 5px;
    color: #071a33;
    font-weight: 800;
}
.contact-info-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.9;
}
.contact-form-card {
    padding: 35px;
    border-radius: 25px;
    background: white;
    box-shadow:
        0 20px 60px rgba(7, 26, 51, .08);
}
.contact-form-header {
    margin-bottom: 28px;
}
.contact-form-header span {
    color: #0891b2;
    font-weight: 800;
}
.contact-form-header h3 {
    margin: 7px 0;
    color: #071a33;
    font-weight: 800;
}
.contact-form-header p {
    margin: 0;
    color: #64748b;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #22d3ee;
    box-shadow:
        0 0 0 .2rem rgba(34, 211, 238, .12);
}
.contact-form-card .btn-emerald {
    border: none;
    border-radius: 12px;
    padding: 14px;
    background: #10b981;
    color: white;
    transition: .3s;
}
.contact-form-card .btn-emerald:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(16, 185, 129, .2);
}
.contact-map-wrapper {
    margin-top: 60px;
}
.contact-map {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    background:
        linear-gradient(135deg,
            #eef2f7,
            #f8fafc);
    color: #64748b;
}
.contact-map i {
    margin-bottom: 15px;
    color: #0891b2;
    font-size: 55px;
}
.contact-map h4 {
    color: #071a33;
    font-weight: 800;
}
.contact-map p {
    margin: 0;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 70px 0;
    }
    .contact-section {
        padding: 65px 0;
    }
    .contact-form-card {
        padding: 25px 20px;
    }
    .contact-info-wrapper {
        text-align: right;
    }
}