
/* HERO SECTION */
.hero {
    position: relative;
    height: 40vh;
    background-image: url("../images/chairman-hero.jpg"); /* library image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:#000;
    opacity: 70%;
}

/* Hero text */
.hero-content {
    position: relative;
    color: #DAC0A3;
    z-index: 2;
}


.hero-title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #DAC0A3;
    padding-bottom: 10px;
}


/* Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    width: 100%;
    line-height: 0;
    
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
    
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 22px;
        padding-bottom: 60px;
    }

    .hero {
        height: 30vh;
    }
}



/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 70px 20px;
    background: #ffffff;
}

.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: #FF0000; }
.contact-icon.tt i { color: #000000; }

.contact-icon:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}




/* ===== NEW CONTACT LAYOUT (IMAGE STYLE) ===== */

.contact-container-new {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE */
.contact-left {
    padding: 20px;
}

.contact-small-title {
    color: #B89D7F;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-main-title {
    font-size: 38px;
    font-weight: 800;
    margin: 10px 0;
}

.contact-desc {
    color: #555;
    max-width: 480px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-detail-box .icon {
    font-size: 22px;
    color: #DAC0A3;
}

.contact-detail-box h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.contact-detail-box p {
    margin: 4px 0 0;
    color: #555;
}

/* RIGHT SIDE FORM */
.contact-right {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(218, 192, 163, 0.25);
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-right input,
.contact-right textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(218, 192, 163, 0.35);
    background: #F9F9F9;
    font-size: 15px;
    outline: none;
}

.contact-right input:focus,
.contact-right textarea:focus {
    border-color: #DAC0A3;
    box-shadow: 0 0 6px rgba(218, 192, 163, 0.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container-new {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-main-title {
        font-size: 30px;
    }
}




/* ===== CONTACT INFO GRID (LEFT SIDE) ===== */

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
    margin-bottom: 25px;
}

/* keep existing style */
.contact-detail-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.left-social {
    margin-top: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}
