* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* =======================
   HERO BACKGROUND
======================= */
.contact-hero {
    background: url("./log.webp") center/cover no-repeat;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-text {
    color: white;
    z-index: 2;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    animation: fadeDown 1s;
}

.hero-text p {
    font-size: 1.2rem;
    margin-top: 10px;
    animation: fadeUp 1s;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-form, 
.map-box {
    flex: 1 1 450px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2,
.map-box h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #0077ff;
    color: white;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #005fcc;
}

/* =======================
   ANIMATIONS
======================= */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

    .container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
}
