/* ===============================
   Contact Page Styles
   =============================== */

/* --- Page Banner (re-using from about_us.css for consistency) --- */
.page-banner {
    position: relative;
    padding: 120px 0;
    /* Using a gradient overlay for better text readability and style */
    background-color: var(--primary-dark);
    text-align: center;
    color: #fff;
}

.page-banner .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(var(--bs-primary-rgb), 0.85), rgba(0, 102, 102, 0.9));
    z-index: 1;
}

.page-banner-entry {
    position: relative;
    z-index: 2;
}

.page-banner-entry h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-banner-entry p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    border: 1px solid #e9ecef;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item:hover .icon-bx {
    transform: scale(1.1) rotate(-5deg);
    background-color: var(--primary);
    color: #fff;
}

.contact-info-item .icon-bx {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: var(--rgba-primary-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-item .info-text h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-info-item .info-text p {
    margin-bottom: 0;
    color: #555;
}

.contact-social {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.contact-social h6 {
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-social .btn-social-icon {
    margin-right: 10px;
    background-color: #e9ecef;
    color: #555;
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.contact-social .btn-social-icon:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

.contact-form-wrapper .form-control {
    height: 55px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.contact-form-wrapper textarea.form-control {
    height: auto;
}

.contact-form-wrapper .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
}
.contact-form-wrapper .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.3);
}

.contact-form-wrapper .form-group .errorlist {
    color: var(--bs-danger);
    font-size: 0.875em;
    list-style: none;
    padding: 5px 0 0 0;
}

/* --- Map Section --- */
.map-section {
    line-height: 0; /* Removes bottom space from iframe */
}