.contact-section {
    /* padding: 90px 0; */
    /* background: #f8f9fc; */
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.contact-header p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

/* Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 70px;
}

/* Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
    animation: fadeLeft 1s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card i {
    font-size: 30px;
    color: #0d224a;
}

.info-card h4 {
    margin-bottom: 6px;
}

.info-card a {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp i {
    color: #25D366;
}

/* Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    animation: fadeRight 1s ease;
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 26px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f4ba18;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244,186,24,0.25);
}

/* Button */
.submit-btn {
    background: linear-gradient(90deg, #0d224a, #f4ba18);
    border: none;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.4s;
}

.submit-btn i {
    margin-left: 6px;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(13,34,74,0.4);
}

/* Map */
.map-section iframe {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Animations */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
