/* Стили для страницы контактов */

/* Общие стили */
.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb-item:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--accent-color);
    font-weight: 500;
}

/* Стили страницы контактов */
.contacts-page {
    padding: 20px 0;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
}

.divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto 30px;
    width: 80%;
}

.branch-info {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.branch-info h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    border-bottom: 2px solid var(--hover-bg);
    padding-bottom: 10px;
}

.contact-section {
    margin-bottom: 25px;
}

.contact-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.contact-section h3:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    margin-right: 10px;
    border-radius: 50%;
}

.phone-list {
    list-style: none;
    padding: 0;
}

.phone-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--hover-bg);
    transition: all 0.2s ease;
}

.phone-list li:hover {
    padding-left: 5px;
    color: var(--accent-color);
}

.branch-selection {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--hover-bg);
}

.branch-selection h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.branch-form select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 2px solid var(--hover-bg);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    margin-top: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23079b59' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.branch-form select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-color-rgba);
    outline: none;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .branch-info {
        padding: 20px;
    }
    
    .page-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .branch-info h2 {
        font-size: 1.4rem;
    }
    
    .contact-section h3 {
        font-size: 1.2rem;
    }
}