/* ================= CONTACT HERO ================= */
.contact-hero {
    height: 300px;
    background: url('./credit.webp') no-repeat center/cover;
    position: relative;
}

.contact-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 45px;
    font-weight: 800;
}

.contact-hero p {
    margin-top: 10px;
    opacity: 0.9;
}

/* ================= CONTACT CONTENT ================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 30px;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.input-box {
    margin-bottom: 15px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    outline: none;
    font-size: 16px;
}

.input-box textarea {
    height: 130px;
    resize: none;
}

.contact-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(135deg, #6e00ff, #ff0095);
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    opacity: 0.8;
}

.error-msg {
    margin-top: 10px;
    color: red;
    font-weight: 600;
}

/* ================= MAP SECTION ================= */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 15px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 28px;
    }
}
