/* Слайдер */
.carousel {
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--hover-shadow);
}

.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    bottom: 20%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Блок услуг */
.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Популярные тарифы */
.tariff-card {
    text-align: center;
    border-top: 4px solid var(--primary);
}

.popular-tariff {
    border-top-color: var(--warning);
    background: linear-gradient(135deg, #fff9e6, #fff);
}

/* Новости */
.news-card .card-title {
    font-weight: 600;
} 