* {
    font-family: 'Poppins', sans-serif;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
    position: relative;
    height: 60vh;
    background-color: linear-gradient(135deg, #1abc9c, #16a085);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.contact-hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 150px 0 60px;

}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.1rem;
    margin-top: 12px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-info-card {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: #fff;
    padding: 40px 30px;
    border-radius: 22px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.3rem;
    color: white;
    margin-top: 3px;
}

.contact-item h6 {
    margin: 0;
    font-weight: 600;
}

.contact-item p {
    margin: 2px 0 0;
    font-size: 0.95rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    height: 100%;
}

.contact-form-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f4c75;
}

.contact-form-card p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #0f4c75;
}

.contact-form-card .form-control {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1px solid #ddd;
}

.contact-form-card .form-control:focus {
    border-color: #1abc9c;
    box-shadow: 0 0 0 0.15rem rgba(26, 188, 156, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, #1abc9c, #0f4c75);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0f4c75, #1abc9c);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== MAP SECTION ===== */
.map-section iframe {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
}
