.bg-dark-blue { background-color: var(--color-1) !important; }
.text-orange { color: var(--color-3) !important; }

/* --- Hero Banner --- */
.contact-hero-section {
    background-color: var(--color-3);
    padding: 80px 0 140px 0; /* Extra bottom padding so cards can overlap */
    position: relative;
    border-bottom: 6px solid var(--color-1);
}

/* --- Contact Info Cards --- */
.contact-info-section {
    margin-top: -80px; /* Pulls cards up over the hero banner */
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--color-3);
}

.icon-box {
    width: 65px;
    height: 65px;
    background-color: rgba(240, 78, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 26px;
    color: var(--color-3);
}

.contact-info-card:hover .icon-box {
    background-color: var(--color-3);
}

.contact-info-card:hover .icon-box i {
    color: #ffffff;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: 10px;
    font-family: var(--font-01);
}

.card-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
     font-family: var(--font-02);
}

/* --- Social Icons --- */
.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-1);
    color: var(--color-1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-3);
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- Form Section --- */
.contact-form-section {
    padding-bottom: 80px;
}

.custom-input {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: var(--color-3);
    box-shadow: 0 0 0 0.25rem rgba(240, 78, 35, 0.15);
}

.btn-theme-orange {
    background-color: var(--color-3);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-theme-orange:hover {
    background-color: var(--color-1);
    color: #ffffff;
}

/* Form Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
}

label.error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Hide empty recapcha error box so it doesn't create weird spacing */
#recaptcha-error:empty {
    display: none;
}