/* ========================================
   СТИЛИ ДЛЯ СТРАНИЦЫ "УБОРКА ПОСЛЕ РЕМОНТА"
   ======================================== */

/* Главный экран */
.uborka-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.uborka-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.uborka-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.uborka-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.uborka-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.uborka-hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 1.6;
}

.uborka-hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff9900, #ff6600);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    border: none;
    cursor: pointer;
}

.uborka-hero-cta:hover {
    background: linear-gradient(45deg, #ff6600, #ff4400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.uborka-hero-cta:active {
    transform: translateY(0);
}

/* Блок "Что входит в уборку" */
.uborka-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.uborka-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.uborka-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.uborka-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.uborka-services-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.uborka-zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.uborka-zone {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.uborka-zone:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ff9900;
}

.uborka-zone-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.uborka-zone-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff9900, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 1.5rem;
}

.uborka-zone-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.uborka-zone-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uborka-zone-services li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.uborka-zone-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff9900;
    font-weight: bold;
    font-size: 1.1rem;
}

.uborka-zone-keywords {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.uborka-zone-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.uborka-zone-keyword {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

/* Особые работы */
.uborka-special-works {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.uborka-special-works:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.uborka-special-works-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.uborka-special-works-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #f0f0f0;
}

.uborka-special-works-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.uborka-special-keyword {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .uborka-hero {
        padding: 60px 0;
    }
    
    .uborka-hero h1 {
        font-size: 2.5rem;
    }
    
    .uborka-hero h2 {
        font-size: 1.2rem;
    }
    
    .uborka-hero-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .uborka-services {
        padding: 60px 0;
    }

    .uborka-services-title {
        font-size: 2rem;
    }

    .uborka-zones {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .uborka-zone {
        padding: 25px;
    }

    .uborka-special-works {
        padding: 30px 20px;
    }

    .uborka-special-works-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .uborka-hero h1 {
        font-size: 2rem;
    }
    
    .uborka-hero h2 {
        font-size: 1.1rem;
    }
    
    .uborka-hero-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .uborka-services-title {
        font-size: 1.8rem;
    }

    .uborka-zone {
        padding: 20px;
    }

    .uborka-zone-title {
        font-size: 1.3rem;
    }
}

/* Анимация появления */
.uborka-hero h1,
.uborka-hero h2,
.uborka-hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.uborka-hero h2 {
    animation-delay: 0.2s;
}

.uborka-hero-cta {
    animation-delay: 0.4s;
}

.uborka-zone {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.uborka-zone:nth-child(1) { animation-delay: 0.1s; }
.uborka-zone:nth-child(2) { animation-delay: 0.2s; }
.uborka-zone:nth-child(3) { animation-delay: 0.3s; }
.uborka-zone:nth-child(4) { animation-delay: 0.4s; }

.uborka-special-works {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   СТИЛИ ДЛЯ БЛОКА С ЦЕНАМИ
   ======================================== */

.prices-section {
    padding: 80px 0;
    background: #fff;
}

.prices-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prices-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border-color: #ff9900;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff9900, #ff6600);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
    position: relative;
}

.price-card-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.price-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.price-card-content {
    padding: 30px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff9900;
    text-align: center;
    margin-bottom: 10px;
}

.price-example {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.price-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.price-features li:last-child {
    border-bottom: none;
}

.order-btn {
    width: 100%;
    background: linear-gradient(45deg, #ff9900, #ff6600);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: linear-gradient(45deg, #ff6600, #ff4400);
    transform: translateY(-2px);
}

/* Дополнительные услуги */
.additional-services {
    margin-top: 60px;
}

.additional-services-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.services-table-wrapper {
    overflow-x: auto;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.services-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.services-table tr:hover {
    background: #f8f9fa;
}

/* Химчистка */
.dry-cleaning-section {
    margin-top: 60px;
}

.dry-cleaning-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.dry-cleaning-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dry-cleaning-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.dry-cleaning-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dry-cleaning-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.price-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.min-price {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
}

.max-price {
    color: #dc3545;
    font-weight: 600;
    font-size: 1.1rem;
}

.dry-cleaning-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Почасовая работа */
.hourly-work-section {
    margin-top: 60px;
    text-align: center;
}

.hourly-work-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.hourly-work-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.rate-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hourly-work-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .prices-section {
        padding: 60px 0;
    }
    
    .prices-section .section-title {
        font-size: 2rem;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card-header {
        padding: 25px;
    }
    
    .price-card-content {
        padding: 25px;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .additional-services-title,
    .dry-cleaning-title,
    .hourly-work-title {
        font-size: 1.8rem;
    }
    
    .dry-cleaning-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hourly-work-info {
        padding: 30px 20px;
    }
    
    .rate-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .prices-section .section-title {
        font-size: 1.8rem;
    }
    
    .price-card-header {
        padding: 20px;
    }
    
    .price-card-content {
        padding: 20px;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .additional-services-title,
    .dry-cleaning-title,
    .hourly-work-title {
        font-size: 1.6rem;
    }
    
    .rate-price {
        font-size: 1.8rem;
    }
}

/* ========================================
   СТИЛИ ДЛЯ СЛАЙДЕРА "ДО И ПОСЛЕ"
   ======================================== */

.before-after-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.before-after-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.before-after-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.before-after-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.before-after-swiper {
    padding: 20px 0;
}

.before-after-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin: 10px;
}

.before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.before-after-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #f0f0f0;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 1;
}

.after-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    z-index: 2;
}

.before-after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.before-label,
.after-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.before-label {
    left: 20px;
    background: linear-gradient(45deg, #dc3545, #c82333);
}

.after-label {
    right: 20px;
    background: linear-gradient(45deg, #28a745, #20c997);
}

.before-after-description {
    padding: 30px;
    text-align: center;
}

.before-after-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.before-after-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Навигация слайдера */
.before-after-swiper .swiper-button-next,
.before-after-swiper .swiper-button-prev {
    color: #ff9900;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.before-after-swiper .swiper-button-next:hover,
.before-after-swiper .swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.before-after-swiper .swiper-button-next::after,
.before-after-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Пагинация */
.before-after-swiper .swiper-pagination {
    bottom: 20px;
}

.before-after-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 153, 0, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.before-after-swiper .swiper-pagination-bullet-active {
    background: #ff9900;
    transform: scale(1.2);
}

/* Анимация появления */
.before-after-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.before-after-card:nth-child(1) { animation-delay: 0.1s; }
.before-after-card:nth-child(2) { animation-delay: 0.2s; }
.before-after-card:nth-child(3) { animation-delay: 0.3s; }
.before-after-card:nth-child(4) { animation-delay: 0.4s; }

/* Адаптивность для слайдера */
@media (max-width: 768px) {
    .before-after-section {
        padding: 60px 0;
    }
    
    .before-after-section .section-title {
        font-size: 2rem;
    }
    
    .before-after-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .before-after-image {
        height: 300px;
    }
    
    .before-after-description {
        padding: 25px;
    }
    
    .before-after-description h3 {
        font-size: 1.3rem;
    }
    
    .before-after-swiper .swiper-button-next,
    .before-after-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .before-after-swiper .swiper-button-next::after,
    .before-after-swiper .swiper-button-prev::after {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .before-after-section .section-title {
        font-size: 1.8rem;
    }
    
    .before-after-section .section-subtitle {
        font-size: 1rem;
    }
    
    .before-after-image {
        height: 250px;
    }
    
    .before-after-description {
        padding: 20px;
    }
    
    .before-after-description h3 {
        font-size: 1.2rem;
    }
    
         .before-label,
     .after-label {
         font-size: 0.8rem;
         padding: 6px 12px;
     }
 }
 
 /* ========================================
    СТИЛИ ДЛЯ СЛАЙДЕРА ОТЗЫВОВ
    ======================================== */
 
 .reviews-section {
     padding: 80px 0;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     position: relative;
     z-index: 1;
 }
 
 .reviews-section .section-title {
     text-align: center;
     font-size: 2.5rem;
     font-weight: 700;
     color: #333;
     margin-bottom: 20px;
 }
 
 .reviews-section .section-subtitle {
     text-align: center;
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 60px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.6;
 }
 
 .reviews-slider {
     max-width: 1000px;
     margin: 0 auto;
     position: relative;
     padding: 0 20px;
 }
 
 .reviews-swiper {
     padding: 20px 0;
     overflow: hidden;
 }
 
 .review-card {
     background: #fff;
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     transition: all 0.3s ease;
     margin: 10px;
     min-height: 300px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }
 
 .review-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
 }
 
 .review-content {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }
 
 .review-text {
     font-size: 1.1rem;
     line-height: 1.6;
     color: #333;
     margin-bottom: 20px;
     flex: 1;
     overflow-wrap: break-word;
     word-wrap: break-word;
 }
 
 .review-author {
     margin-top: auto;
 }
 
 .author-info {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 
 .author-name {
     font-weight: 600;
     color: #333;
     font-size: 1rem;
 }
 
 .author-stars {
     color: #ff9900;
     font-size: 1.2rem;
 }
 
 /* Навигация слайдера */
 .reviews-swiper .swiper-button-next,
 .reviews-swiper .swiper-button-prev {
     color: #ff9900;
     background: rgba(255, 255, 255, 0.9);
     width: 50px;
     height: 50px;
     border-radius: 50%;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }
 
 .reviews-swiper .swiper-button-next:hover,
 .reviews-swiper .swiper-button-prev:hover {
     background: #fff;
     transform: scale(1.1);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }
 
 .reviews-swiper .swiper-button-next::after,
 .reviews-swiper .swiper-button-prev::after {
     font-size: 1.2rem;
     font-weight: bold;
 }
 
 /* Пагинация */
 .reviews-swiper .swiper-pagination {
     bottom: 20px;
     position: relative;
     margin-top: 20px;
 }
 
 .reviews-swiper .swiper-pagination-bullet {
     width: 12px;
     height: 12px;
     background: rgba(255, 153, 0, 0.5);
     opacity: 1;
     transition: all 0.3s ease;
     margin: 0 5px;
 }
 
 .reviews-swiper .swiper-pagination-bullet-active {
     background: #ff9900;
     transform: scale(1.2);
 }
 
 /* Адаптивность для слайдера отзывов */
 @media (max-width: 768px) {
     .reviews-section {
         padding: 60px 0;
         margin-top: 40px;
     }
     
     .reviews-section .section-title {
         font-size: 2rem;
     }
     
     .reviews-section .section-subtitle {
         font-size: 1.1rem;
     }
     
     .review-card {
         padding: 30px;
         min-height: 350px;
     }
     
     .review-text {
         font-size: 1rem;
     }
     
     .reviews-swiper .swiper-button-next,
     .reviews-swiper .swiper-button-prev {
         width: 40px;
         height: 40px;
     }
     
     .reviews-swiper .swiper-button-next::after,
     .reviews-swiper .swiper-button-prev::after {
         font-size: 1rem;
     }
     
     .reviews-swiper .swiper-pagination {
         margin-top: 25px;
     }
     
     .reviews-swiper .swiper-pagination-bullet {
         width: 11px;
         height: 11px;
         margin: 0 4px;
     }
 }
 
 @media (max-width: 480px) {
     .reviews-section {
         padding: 50px 0;
         margin-top: 30px;
     }
     
     .reviews-section .section-title {
         font-size: 1.8rem;
     }
     
     .reviews-section .section-subtitle {
         font-size: 1rem;
     }
     
     .review-card {
         padding: 25px;
         min-height: 400px;
     }
     
     .review-text {
         font-size: 0.95rem;
     }
     
     .author-name {
         font-size: 0.9rem;
     }
     
     .author-stars {
         font-size: 1rem;
     }
     
     .reviews-swiper .swiper-button-next,
     .reviews-swiper .swiper-button-prev {
         width: 35px;
         height: 35px;
         background: rgba(255, 255, 255, 0.95);
         border-radius: 50%;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     }
     
     .reviews-swiper .swiper-button-next::after,
     .reviews-swiper .swiper-button-prev::after {
         font-size: 0.9rem;
     }
 }
 
 @media (max-width: 360px) {
     .reviews-section {
         padding: 40px 0;
         margin-top: 20px;
     }
     
     .reviews-section .section-title {
         font-size: 1.6rem;
     }
     
     .reviews-section .section-subtitle {
         font-size: 0.9rem;
     }
     
     .review-card {
         padding: 20px;
         min-height: 450px;
     }
     
     .review-text {
         font-size: 0.9rem;
         line-height: 1.5;
     }
     
     .author-name {
         font-size: 0.85rem;
     }
     
     .author-stars {
         font-size: 0.9rem;
     }
     
     .reviews-swiper .swiper-button-next,
     .reviews-swiper .swiper-button-prev {
         width: 30px;
         height: 30px;
         background: rgba(255, 255, 255, 0.95);
         border-radius: 50%;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     }
     
     .reviews-swiper .swiper-button-next::after,
     .reviews-swiper .swiper-button-prev::after {
         font-size: 0.8rem;
     }
     
     .reviews-swiper .swiper-pagination {
         margin-top: 15px;
     }
     
     .reviews-swiper .swiper-pagination-bullet {
         width: 10px;
         height: 10px;
         margin: 0 3px;
     }
 } 