/* catalog/view/theme/default/stylesheet/custom_contact_page.css */

.contact-page-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-top: 20px;
}

.contact-info-section {
    background-color: #f8f9fa; /* A light grey for the info side */
    padding: 40px;
}

.contact-info-section h2 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 30px;
    border-bottom: 2px solid #6f4e37; /* Coffee theme color */
    padding-bottom: 10px;
    display: inline-block;
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1rem;
}

.contact-info-list .info-icon {
    font-size: 1.5rem;
    color: #6f4e37;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

/* Force Font Awesome to display */
.contact-info-list .info-icon i.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.contact-info-list .info-text strong {
    display: block;
    color: #495057;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-info-list .info-text span {
    color: #6c757d;
}

.contact-form-section {
    padding: 40px;
}

.contact-form-section h2 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 30px;
}

.contact-form-section .form-label {
    font-weight: 500;
    color: #495057;
}

.contact-form-section .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ced4da;
}

.contact-form-section .form-control:focus {
    border-color: #6f4e37;
    box-shadow: 0 0 0 0.25rem rgba(111, 78, 55, 0.25);
}

.contact-form-section .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    background-color: #6f4e37;
    border-color: #6f4e37;
}

.contact-form-section .btn-primary:hover {
    background-color: #5a3f2b;
    border-color: #5a3f2b;
}
