/**
 * Washin Auto - Contact Page Styles
 */

.breadcrumb {
    position: relative;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info-card {
    background-color: white;
    box-shadow: 0 5px 51px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    
    border-radius: 10px;
    text-align: left;
    padding: 1.5rem;
    height: 100%;
    
    display: flex;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: var(--main-color);
}

.icon-box i{
    font-size: 1.5em;
}

.contact-info-card h4{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: #999;
    margin-bottom: 3px;
}

.contact-info-card p{
    font-weight: 500;
}

.contact-info-card p a{
    color: var(--text-color) !important;
}


.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
}

.contact-form label {
    margin-bottom: 2px;
}

.contact-form .form-control {
    border-radius: 5px;
    padding: 0.6rem 1rem;
    border: 1px solid #e9ecef;
    min-height: calc(2.5em + .75rem + 2px);
}

.contact-form .form-control:focus {
    border-color: var(--main-color);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.business-hours {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.business-hours h4 {
    margin-bottom: 1.5rem;
}

.business-hours ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.accordion .card {
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.accordion .card-header {
    background-color: white;
    border-bottom: none;
    padding: 0;
}

.accordion .card-header button {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.accordion .card-header button:hover {
    text-decoration: none;
}

.accordion .card-body {
    padding: 1.5rem;
    color: #6c757d;
}

@media (max-width: 991.98px) {
    .map-container {
        height: 350px;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}