/* ================= HERO SECTION ================= */
.contact-hero {
    height: 280px;
    background: url("../images/contact-us-hero.jpg") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(218, 192, 163, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    color: #000;
    font-weight: 700;
}

.hero-content p {
    color: #000;
    font-size: 18px;
    margin-top: 10px;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 70px 20px;
    background: #F9F7F4;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* FORM AREA */
.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid rgba(218, 192, 163, 0.25);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #000;
    font-size: 28px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(218, 192, 163, 0.35);
    background: #F9F9F9;
    font-size: 16px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #DAC0A3;
    box-shadow: 0 0 6px rgba(218, 192, 163, 0.5);
}

/* SUBMIT BUTTON */
.contact-btn {
    padding: 12px 35px;
    background: #DAC0A3;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #B89D7F;
    transform: translateY(-3px);
}

/* ================= CONTACT INFO ================= */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid rgba(218, 192, 163, 0.25);
}

.contact-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-box {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(218, 192, 163, 0.35);
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-social-link a {
    display: inline-block;
    margin-right: 10px;
    background: #DAC0A3;
    padding: 6px 14px;
    border-radius: 50px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.contact-social-link a:hover {
    background: #B89D7F;
}

/* ================= MAP SECTION ================= */
.map-section iframe {
    width: 100%;
    border: none;
    border-top: 3px solid #DAC0A3;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}


/* ===== CONTACT PAGE SOCIAL ICONS ONLY ===== */

.contact-social-links {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px; /* close spacing */
}

.contact-icon {
    font-size: 26px;
    background: transparent !important;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Contact Page Icon Brand Colors */
.contact-icon.fb i { color: #1877F2; }
.contact-icon.ig i { color: #E4405F; }
.contact-icon.tw i { color: #000000; }
.contact-icon.wa i { color: #25D366; }

.contact-icon:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}

