/* ================================================= */
/* 1. CONTACT HERO BANNER
/* ================================================= */

#contact-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-image: url('/assets/images/contact-page-background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

#contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    z-index: 1;
}

#contact-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 800px;
}

#contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

#contact-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}


/* ================================================= */
/* 2. CONTACT DETAILS & MAP SECTION
/* ================================================= */

#contact-details-section {
    padding: 80px 2rem;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
    margin-top: 5px;
}

.info-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--dark-color);
}

.info-text p, .info-text a {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-decoration: none;
}

.info-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.social-title {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    color: var(--dark-color);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* === START: NEW CAREER PROMO BLOCK STYLES === */
.career-promo {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e0e0e0;
}
.career-promo h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}
.career-promo p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.btn-career {
    display: inline-block;
    padding: 10px 25px;
    background-color: #F4A261; /* Accent Orange */
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s;
}
.btn-career:hover {
    background-color: #2A9D8F; /* Teal on hover */
    transform: translateY(-2px);
    color: #fff;
}
/* === END: NEW CAREER PROMO BLOCK STYLES === */


/* ================================================= */
/* 3. WHATSAPP CTA SECTION
/* ================================================= */

#contact-cta {
    position: relative;
    padding: 80px 2rem;
    background-image: url('/assets/images/contact-us-section-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--light-color);
}

#contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75); 
    z-index: 1;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.contact-cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    margin-right: 0.75rem;
    font-size: 1.4rem;
    vertical-align: middle;
}

/* ================================================= */
/* 4. RESPONSIVENESS
/* ================================================= */

@media (max-width: 768px) {
    #contact-hero h1 { font-size: 2.5rem; }
    #contact-hero p { font-size: 1.1rem; }

    #contact-details-section {
        padding: 60px 1rem;
    }
}