/* HERO */
.contact-hero {
    height: 40vh;
    background: url('/Image/Slide1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(62,39,35,0.8);
}

.hero-content {
    position: relative;
    text-align: center;
}



.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.info-card i {
    font-size: 25px;
    color: #3e2723;
    margin-bottom: 10px;
}

/* MAIN */
.contact-main {
    padding: 80px 5%;
    background: #ececec;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    color: #3e2723;
}

.contact-left p {
    color: #666;
}

/* FORM */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
}

.contact-form button {
    background: #3e2723;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }
}



