.contact-hero {
    background: linear-gradient(135deg, #eaf7ff, #f7fbff);
    padding: 100px 0 50px;
}

.info-card {
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.form-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-icon {
    position: absolute;
    top: 12px;
    left: 16px;
    color: #6c757d;
}

input,
textarea {
    border: 1px solid #dee2e6;
}

input:focus,
textarea:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.map-container iframe {
    width: 100%;
    border: none;
}

@media (max-width: 767px) {
    .form-card {
        margin-top: 20px;
    }
}