.contact-info i {
    color: var(--dark-brown);
}
.contact-info h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.contact-info p {
    color: var(--text-color);
    line-height: 1.6;
}
.form-label {
    font-weight: 500;
}
.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}
.form-control:focus {
    border-color: var(--dark-red);
    box-shadow: 0 0 0 0.25rem rgba(184, 142, 47, 0.25);
}
.btn-submit {
    background-color: var(--maroon);
    color: white;
    padding: 0.75rem 2.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}
.btn-submit:hover {
    background-color: #4a0101;
    color: white;
}


/* --- Hero Section (Breadcrumb) --- */
.hero-sectionbc {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
    
    
}

.hero-sectionbc h1 {
    font-weight: 600;
}

.breadcrumb {
    background-color: transparent;
    justify-content: center;
    color:white;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--light-cream);
}







.contact-info h5 {
    color: var(--dark-brown);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info p {
    color: var(--text-color);
    margin-bottom: 0;
}

.text-maroon {
    color: var(--maroon) !important;
}

.btn-brand {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-brown) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 2, 2, 0.3);
    color: white;
}

.btn-outline-maroon {
    border: 2px solid var(--maroon);
    color: var(--maroon);
    background: transparent;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-maroon:hover {
    background: var(--maroon);
    color: white;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--maroon);
    box-shadow: 0 0 0 0.2rem rgba(91, 2, 2, 0.1);
}

.map-container {
    border: 2px solid #e2e8f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-sectionbc {
        padding: 60px 0 30px;
    }
    
    .contact-info .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info .d-flex i {
        margin-bottom: 10px;
        margin-right: 0 !important;
    }
}