/* Офисный клининг - Первый блок */
.office-cleaning-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.office-cleaning-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.office-cleaning-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.office-cleaning-hero-text {
    flex: 1;
    max-width: 600px;
}

.office-cleaning-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 24px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.office-cleaning-hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.office-cleaning-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.office-cleaning-cta-primary {
    background: linear-gradient(135deg, #FF962B 0%, #F98820 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 150, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.office-cleaning-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.office-cleaning-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 150, 43, 0.4);
}

.office-cleaning-cta-primary:hover::before {
    left: 100%;
}

.office-cleaning-cta-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-cleaning-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #2c3e50;
    transition: width 0.3s ease;
    z-index: -1;
}

.office-cleaning-cta-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.office-cleaning-cta-secondary:hover::before {
    width: 100%;
}

.office-cleaning-hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image-placeholder {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.hero-image-placeholder:hover {
    transform: scale(1.02);
}

.hero-image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .office-cleaning-hero {
        padding: 60px 0;
    }
    
    .office-cleaning-hero-content {
        gap: 40px;
    }
    
    .office-cleaning-hero-title {
        font-size: 40px;
    }
    
    .office-cleaning-hero-subtitle {
        font-size: 18px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .office-cleaning-hero {
        padding: 40px 0;
    }
    
    .office-cleaning-hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .office-cleaning-hero-text {
        max-width: 100%;
    }
    
    .office-cleaning-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .office-cleaning-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .office-cleaning-hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .office-cleaning-cta-primary,
    .office-cleaning-cta-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .office-cleaning-hero-image {
        max-width: 100%;
        order: -1;
    }
    
    .hero-image {
        border-radius: 15px;
    }
}

/* Анимации для появления элементов */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.office-cleaning-hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.office-cleaning-hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Дополнительные эффекты для кнопок */
.office-cleaning-cta-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 150, 43, 0.3);
}

.office-cleaning-cta-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.2);
}

/* =============================================== */
/* БЛОК С ЦЕНАМИ НА ОФИСНЫЙ КЛИНИНГ */
/* =============================================== */

.prices-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.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;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #FF962B;
}

.price-card.featured {
    border-color: #FF962B;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #FF962B, #F98820);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 150, 43, 0.3);
}

.price-card-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.price-card-header i {
    font-size: 2.5rem;
    color: #FF962B;
    margin-bottom: 15px;
    display: block;
}

.price-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.price-card-content {
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF962B;
    margin-bottom: 10px;
}

.price-example {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.price-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF962B;
    font-weight: bold;
    font-size: 1.1rem;
}

.price-features li:last-child {
    margin-bottom: 0;
}

.order-btn {
    background: linear-gradient(45deg, #FF962B, #F98820);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 150, 43, 0.3);
    width: 100%;
}

.order-btn:hover {
    background: linear-gradient(45deg, #F98820, #FF6600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 150, 43, 0.4);
}

/* Дополнительные услуги */
.additional-services {
    margin-top: 60px;
}

.additional-services-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.services-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.services-table th {
    background: linear-gradient(45deg, #FF962B, #F98820);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.services-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.5;
}

.services-table tr:hover {
    background: #f8f9fa;
}

/* Почасовая работа */
.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: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.rate-price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF962B;
    margin-bottom: 10px;
}

.hourly-work-info p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Тарифы по частоте */
.frequency-rates-section {
    margin-top: 60px;
}

.frequency-rates-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.frequency-rates-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.frequency-rate-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.frequency-rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.frequency-rate-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.price-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.min-price {
    color: #FF962B;
    font-weight: 600;
    font-size: 1.1rem;
}

.max-price {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
}

.frequency-rate-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* =============================================== */
/* МОДАЛЬНЫЕ ОКНА И ФОРМЫ */
/* =============================================== */

/* Модальное окно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px 20px 0 0;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #333;
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

/* Формы */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF962B;
    box-shadow: 0 0 0 3px rgba(255, 150, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Чекбоксы */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #5a6c7d;
    position: relative;
    padding-left: 35px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: #FF962B;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #FF962B;
    border-color: #FF962B;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

/* Кнопки форм */
.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-calculate,
.btn-submit {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.btn-calculate {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #FF962B 0%, #F98820 100%);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 150, 43, 0.4);
}

/* Результат калькулятора */
.calculator-result {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    border: 2px solid #FF962B;
}

.calculator-result h4 {
    margin: 0 0 16px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    font-weight: 700;
    font-size: 18px;
    color: #FF962B;
    border-top: 2px solid #FF962B;
    padding-top: 12px;
    margin-top: 8px;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для модальных окон */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-calculate,
    .btn-submit {
        width: 100%;
    }
}

/* Специальные стили для калькулятора */
.calculator-modal .form-group:first-child {
    margin-top: 0;
}

/* Специальные стили для формы заказа */
.order-modal .checkbox-group {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
}

/* Улучшения для мобильных устройств */
@media (max-width: 480px) {
    .modal-content {
        border-radius: 15px;
    }
    
    .modal-header {
        border-radius: 15px 15px 0 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Предотвращает зум на iOS */
    }
} 

/* =============================================== */
/* АДАПТИВНЫЕ СТИЛИ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ */
/* =============================================== */

@media (max-width: 768px) {
    .prices-section {
        padding: 60px 0;
    }

    .prices-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .prices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .price-card-header {
        margin-bottom: 20px;
    }

    .price-card-content {
        padding: 0 10px;
    }

    .price {
        font-size: 1.8rem;
    }

    .additional-services-title,
    .hourly-work-title,
    .frequency-rates-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .additional-services-table {
        font-size: 14px;
    }

    .additional-services-table th,
    .additional-services-table td {
        padding: 8px 6px;
    }

    .hourly-work-info {
        padding: 15px;
    }

    .rate-price {
        font-size: 1.6rem;
    }

    .frequency-rates-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .frequency-rate-card {
        padding: 15px;
    }

    .frequency-rate-card h4 {
        font-size: 1.4rem;
    }

    .frequency-rate-card .rate-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .prices-section {
        padding: 40px 0;
    }

    .prices-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .price-card {
        padding: 15px;
    }

    .price-card-header {
        margin-bottom: 15px;
    }

    .price-card-header h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .price-example {
        font-size: 13px;
    }

    .price-features {
        font-size: 13px;
    }

    .additional-services-table {
        font-size: 12px;
    }

    .additional-services-table th,
    .additional-services-table td {
        padding: 6px 4px;
    }

    .hourly-work-info {
        padding: 12px;
    }

    .rate-price {
        font-size: 1.4rem;
    }

    .frequency-rate-card {
        padding: 12px;
    }

    .frequency-rate-card h4 {
        font-size: 1.2rem;
    }

    .frequency-rate-card .rate-price {
        font-size: 1.2rem;
    }

    .frequency-rate-card p {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .prices-section {
        padding: 40px 0;
    }

    .prices-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .price-card {
        padding: 20px;
    }

    .price {
        font-size: 1.5rem;
    }

    .additional-services-title,
    .hourly-work-title,
    .frequency-rates-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .rate-price {
        font-size: 1.5rem;
    }

    .services-table {
        font-size: 0.75rem;
    }

    .services-table th,
    .services-table td {
        padding: 8px 6px;
    }

    .frequency-rate-card {
        padding: 20px;
    }

    .frequency-rate-card h4 {
        font-size: 1.2rem;
    }
}

/* =============================================== */
/* АНИМАЦИИ ДЛЯ БЛОКА С ЦЕНАМИ */
/* =============================================== */

.prices-section {
    animation: fadeInUp 0.8s ease-out;
}

.price-card {
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }

.frequency-rate-card {
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.frequency-rate-card:nth-child(1) { animation-delay: 0.4s; }
.frequency-rate-card:nth-child(2) { animation-delay: 0.5s; }
.frequency-rate-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* =============================================== */
/* СЛАЙДЕР ОФИСНОГО КЛИНИНГА */
/* =============================================== */

.office-cleaning-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.office-cleaning-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.office-cleaning-gallery .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.office-cleaning-swiper {
    position: relative;
    padding: 20px 0;
}

.swiper-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: scale(1.02);
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Навигация слайдера */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 150, 43, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 150, 43, 1);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Пагинация слайдера */
.swiper-pagination-bullet {
    background: #FF962B;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Адаптивность для слайдера */
@media (max-width: 768px) {
    .office-cleaning-gallery {
        padding: 60px 0;
    }

    .office-cleaning-gallery .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .swiper-slide img {
        height: 300px;
    }

    .slide-caption {
        padding: 20px 15px 15px;
    }

    .slide-caption h3 {
        font-size: 1.1rem;
    }

    .slide-caption p {
        font-size: 0.8rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .office-cleaning-gallery {
        padding: 40px 0;
    }

    .office-cleaning-gallery .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .swiper-slide img {
        height: 250px;
    }

    .slide-caption {
        padding: 15px 10px 10px;
    }

    .slide-caption h3 {
        font-size: 1rem;
    }

    .slide-caption p {
        font-size: 0.75rem;
    }
}

/* Анимация появления слайдера */
.office-cleaning-gallery {
    animation: fadeInUp 0.8s ease-out;
} 

/* =============================================== */
/* БЛОК ОТЗЫВОВ */
/* =============================================== */

.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.reviews-swiper {
    position: relative;
    padding: 20px 0;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FF962B;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #FF962B;
    font-size: 1.1rem;
    font-weight: bold;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 3rem;
    color: #FF962B;
    position: absolute;
    top: -10px;
    left: -15px;
    opacity: 0.3;
    font-family: serif;
}

/* Навигация для отзывов */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    background: rgba(255, 150, 43, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background: rgba(255, 150, 43, 1);
    transform: scale(1.1);
}

.reviews-swiper .swiper-button-next::after,
.reviews-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Пагинация для отзывов */
.reviews-swiper .swiper-pagination-bullet {
    background: #FF962B;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Адаптивность для отзывов */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .review-card {
        padding: 20px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .reviewer-info h4 {
        font-size: 1.1rem;
    }

    .review-content p {
        font-size: 0.9rem;
    }

    .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: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .review-card {
        padding: 15px;
    }

    .reviewer-info h4 {
        font-size: 1rem;
    }

    .review-content p {
        font-size: 0.85rem;
    }

    .review-content p::before {
        font-size: 2rem;
        top: -5px;
        left: -10px;
    }
}

/* Анимация появления блока отзывов */
.reviews-section {
    animation: fadeInUp 0.8s ease-out;
} 