* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.contact {
    background: url('/images/acl-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 150vh;
    position: relative;
}

/* HERO */
.contact-hero {
    /* background: linear-gradient(135deg, #0b3d91, #0d6efd); */
    color: white;
    text-align: center;
    padding: 80px 20px;

}

.contact-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* INFO SECTION */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 60px 10%;
    background: transparent;
}

.info-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f0f6ff;
    transition: 0.3s ease;
}

.info-card i {
    font-size: 35px;
    color: #0b3d91;
    margin-bottom: 15px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* FORM */
.contact-form-section {
    padding: 80px 10%;
    background: #f9fbff;
}

.form-container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-container h2 {
    margin-bottom: 30px;
    text-align: center;
    color: #0b3d91;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13,110,253,0.2);
}

.contact-btn {
    background: linear-gradient(135deg, #0b3d91, #0d6efd);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13,110,253,0.3);
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .contact {
        background-size: contain;
    }
}
