.contact-header {
    background: linear-gradient(rgba(8, 42, 94, 0.9), rgba(19, 99, 223, 0.8)),
        url('https://images.pexels.com/photos/33999/pexels-photo.jpg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.info-box:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--zilom-blue);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(19, 99, 223, 0.1);
    color: var(--zilom-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.btn-send {
    background-color: var(--zilom-blue);
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}

.btn-send:hover {
    background-color: var(--zilom-dark);
    transform: scale(1.02);
    color: #fff;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}