.contact-section {
    width: 90%;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff, #f2f6fb);
    border-radius: 20px;
    display: flex;
    gap: 35px;
    align-items: stretch;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    animation: fadeUpContact 1s ease forwards;
}

/* LEFT INFO */
.contact-info {
    flex: 1;
    font-size: 19px;
    line-height: 32px;
    padding: 10px 10px 10px 20px;
    position: relative;
}

/* Accent bar */
.contact-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 90%;
    background: linear-gradient(#ff9933, #138808);
    border-radius: 5px;
}

.contact-info h3 {
    font-size: 30px;
    color: #002b5c;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info p {
    margin: 4px 0;
}

/* OFFICE TIMING CARD */
.office-timing {
    margin-top: 25px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    animation: pulseCard 3s infinite;
}

.office-timing h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #b45309;
}

/* MAP */
.contact-map {
    flex: 1.4;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* hover zoom map */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    transition: transform 0.6s ease;
}

.contact-map:hover iframe {
    transform: scale(1.05);
}

/* Floating label on map */
.contact-map::after {
    content: "📍 ग्रामपंचायत कार्यालय स्थान";
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeUpContact {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseCard {
    0% { box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
    50% { box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
    100% { box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        padding: 25px;
    }

    .contact-map iframe {
        min-height: 380px;
    }

    .contact-info::before {
        display: none;
    }
}
