

/* Contact Header */
#contact-header {
    background-image: url(img/contact/contact.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 185px 0;
}


.breadcrumb {
    background-color: transparent;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: #4e2d18;
}


/* Contact Form */
#contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

#contact-form .form-label {
    color: #4e2d18;
}

#contact-form .btn-warning {
    width: 100%;
    padding: 10px;
    border: none;
}

#contact-form .btn-warning:hover {
    background-color: #5a78ac;
}

/* Contact Info */
#contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

#contact-info h2 {
    color: #4e2d18;
}

#contact-info p {
    font-size: 1.2rem;
    color: #4e2d18;
}


/* Floating Form Fields */
#contact-form .form-control {
    border: 1px solid #5a78ac;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

#contact-form .form-control:focus {
    border-color: #4e2d18;
    box-shadow: 0 0 10px rgba(94, 44, 24, 0.5);
}

.breadcrumb-item.active{
    color: white;
}