/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* ===== LAYOUT STYLES ===== */
.container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px 40px;
    scroll-snap-align: start;
    position: relative;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
    font-weight: 300;
}

.section-subtitle {
    font-size: 1.4em;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
}

/* ===== BUTTONS & LINKS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #1a692f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.btn:hover {
    background: #1a692f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: #e74c3c;
    padding: 16px 40px;
    font-size: 1.1em;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: #95a5a6;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #1a692f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1a692f;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: #e67e22;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}
/* Анимации для появления элементов */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.3s;
}

.fade-in-delay-2 {
    animation-delay: 0.6s;
}

.fade-in-delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Для фона */
.hero-bg {
    animation: zoomIn 1.5s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
}

.company-name {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.slogan {
    font-size: 1.6em;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 0.95;
}
.slogan-1{
    font-size: 0.8em;
    line-height: 1.2;
    color: #bcbaba;
    /*text-shadow: 2px 2px 4px rgba(0,0,0,0.5);*/
    opacity: 0.95;
}
/*.slogan h2{
    font-size: 1.6em;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}
.slogan p{
    font-size: 1em;
    color: white;
    margin-bottom: 10px;
    /*line-height: 1.6;
}*/

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 65px !important;
} 
.oval-slide {
    background: linear-gradient(135deg, #1a692f 100%);
    border-radius: 1200px / 70px;
    padding: 100px 20px;
    margin: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.about-intro {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.about-intro p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-top: -30px; /* Умеренный подъем */
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.about-image img:hover {
    transform: translateY(-5px);
}

.about-content {
    flex: 1;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}
.about-icon {
    width: 50px;
    height: 50px;
    vertical-align: text-top;
    margin-right: 20px;
}
/* Отдельные текстовые блоки */
.text-block-1 {
    margin-bottom: 25px !important;
    padding-right: 20px;
}

.text-block-2 {
    margin-bottom: 25px !important;
    padding-right: 10px;
}

.text-block-3 {
    margin-bottom: 10px !important;
    padding-right: 20px;
}
.text-center {
    text-align: center !important;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(135deg, #ecf0f1 0%, #dfe6e9 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 30px;
    text-align: center;
}

.card-content h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    color: #1a692f;
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s ease;
}

.service-card:hover .card-link {
    color: #1a692f;
}

/* ===== HOUSES SECTION ===== */
.houses {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 40px;
}

.house-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.house-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.house-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.house-card:hover .house-image img {
    transform: scale(1.05);
}

.house-description {
    padding: 25px;
}

.house-description h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.house-description p {
    color: #666;
    line-height: 1.5;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advantage-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1a692f;
}

.advantage-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.advantage-card p {
    color: #666;
    line-height: 1.5;
}

/* ===== BOOKING SECTIONS ===== */
.booking {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.booking-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.booking-content {
    flex: 1;
}

.booking-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.booking-form {
    max-width: 100%;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a692f;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.booking-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.booking-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

/* ===== CONTACTS SECTION ===== */
.contacts {
    /*background: linear-gradient(135deg, #3b4752 0%, #34495e 100%);*/
    background: #2f4031;
    color: white;
}

.contacts .section-title {
    color: white;
}

.contact-info {
    margin-bottom: 50px;
    text-align: center;
}

.contact-item {
    font-size: 1.3em;
    margin-bottom: 20px;
    padding: 10px 0;
}

.contact-item strong {
    color: #e67e22;
}

.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.2);
}

/* ===== SERVICE PAGES ===== */
.service-page {
    padding: 100px 20px 60px;
    min-height: 100vh;
    background: #f8f9fa;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.service-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-gallery img:hover {
    transform: scale(1.02);
}

.service-details {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.service-details h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2em;
}

.service-details h3 {
    color: #1a692f;
    margin: 30px 0 15px;
    font-size: 1.4em;
}

.service-details ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.documents-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.document-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #1a692f;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .slide {
        padding: 100px 20px 40px;
        height: auto;
        min-height: 100vh;
    }

    .section-title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .header {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .company-name {
        font-size: 2.5em;
    }

    .slogan {
        font-size: 1.2em;
    }

    .about-container,
    .booking-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-content .section-title,
    .booking-content .section-title {
        text-align: center;
    }

    .services-grid,
    .houses-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-item {
        font-size: 1.1em;
    }

    .social-links {
        gap: 15px;
    }

    .service-page {
        padding: 80px 15px 40px;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 80px 15px 30px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .company-name {
        font-size: 2em;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid,
    .houses-grid {
        gap: 20px;
    }

    .card-content {
        padding: 20px;
    }

    .service-details {
        padding: 25px;
    }
}
/* ===== SERVICE PAGES SPECIFIC STYLES ===== */
.service-page {
    min-height: 100vh;
    background: #f8f9fa;
}

.page-section {
    width: 100%;
    padding: 60px 0;
    position: relative;
}

.page-section.bg-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.page-banner {
    background: #1a692f ;/*linear-gradient(135deg, #3498db 0%, #2980b9 100%);*/
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

.banner-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 300;
}

.banner-content p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Стили для характеристик домиков */
.house-features {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.house-features span {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #666;
}

/* Стили для цен */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: #1a692f;
    position: relative;
}

.pricing-card.featured::before {
    content: 'Популярный';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a692f;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    font-size: 2.5em;
    font-weight: 300;
    color: #1a692f;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Дополнительные стили для форм */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
}
/* ========= Стили для выпадающего меню языка ========= */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: inherit;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s ease;
    font-family: inherit;
}

.lang-option:hover {
    background-color: #f5f5f5;
}

.lang-option:first-child {
    border-radius: 4px 4px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 4px 4px;
}
/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .language-toggle {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .language-menu {
        min-width: 120px;
        right: -10px;
    }
    
    .lang-option {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Для страниц услуг */
.service-page-lang {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.service-page-lang .language-toggle {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid #ddd;
}

.service-page-lang .language-toggle:hover {
    background: white;
    border-color: #999;
}
/* Стили для навигации */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: #e67e22;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}
/* ========== Специальные стили для ссылки Impressum ========== */
.impressum-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.impressum-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 0.9em;
        padding: 6px 0;
    }
    
    .impressum-link {
        padding: 6px 12px !important;
    }
}
/* ===== WHY-US SECTION FOR PEREDOV.HTML ===== */

/* Учитываем структуру perevod.html */
body.service-page #why-us.why-us-section {
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;*/
    background: #f8f9fa !important; 
    padding: 80px 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

body.service-page #why-us .benefits-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

body.service-page #why-us .benefit-card {
    background: white !important;
    border: 2px solid #1a692f !important;
    border-radius: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

body.service-page #why-us .benefit-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

body.service-page #why-us .benefit-header {
    background: rgba(26, 105, 47, 0.05) !important;
    padding: 20px 25px !important;
    border-bottom: 1px solid #e9ecef !important;
}

body.service-page #why-us .benefit-header h3 {
    color: #1a692f !important;
    font-size: 1.2em !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

body.service-page #why-us .benefit-content {
    padding: 25px 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

body.service-page #why-us .benefit-content p {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    line-height: 1.6 !important;
    color: #666 !important;
    font-size: 1.1em !important;
    word-wrap: break-word !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    body.service-page #why-us .benefits-container {
        padding: 0 20px !important;
        gap: 20px !important;
    }
    
    body.service-page #why-us .benefit-header {
        padding: 18px 20px !important;
    }
    
    body.service-page #why-us .benefit-content {
        padding: 20px !important;
    }
}
/* ===== HORIZONTAL ADVANTAGES SECTION ===== */

body.service-page #work-advantages.work-advantages-section {
    background: #ffffff !important;
    padding: 80px 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Контейнер для горизонтального расположения */
.advantages-horizontal {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Элементы преимуществ в строке */
.advantage-horizontal-item {
    flex: 1;
    min-width: 300px;
    background: white;
    border: 2px solid #1a692f;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.advantage-horizontal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #145a25;
}

.advantage-horizontal-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.advantage-horizontal-content h4 {
    color: #1a692f;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.advantage-horizontal-content p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
}

/* Центральный блок под преимуществами */
.central-feature-horizontal {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #1a692f;
    color: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 105, 47, 0.3);
}

.central-feature-horizontal h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.central-feature-horizontal p {
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .advantages-horizontal {
        gap: 15px;
    }
    
    .advantage-horizontal-item {
        min-width: 180px;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .advantages-horizontal {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .advantage-horizontal-item {
        min-width: auto;
        padding: 25px 20px;
    }
    
    .central-feature-horizontal {
        margin: 0 20px;
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .advantages-horizontal {
        gap: 15px;
    }
    
    .advantage-horizontal-item {
        padding: 20px 15px;
    }
    
    .advantage-horizontal-icon {
        font-size: 2.5em;
    }
    
    .central-feature-horizontal {
        padding: 25px 20px;
    }
    
    .central-feature-horizontal h3 {
        font-size: 1.2em;
    }
    
    .central-feature-horizontal p {
        font-size: 1em;
    }
}
/* ===== SIMPLE REVIEWS GRID ===== */

body.service-page #reviews.reviews-section {
    background: #f8f9fa !important;
    padding: 80px 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Сетка отзывов */
.reviews-grid-simple {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Карточка отзыва */
.review-card-simple {
    background: white;
    border: 2px solid #1a692f;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
}

.review-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #145a25;
}

/* Заголовок отзыва */
.review-header-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.review-header-simple h3 {
    color: #1a692f;
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
}

.review-rating {
    color: #ffc107;
    font-size: 1.1em;
}

/* Контент отзыва */
.review-content-simple {
    flex: 1;
    overflow-y: auto;
}

.review-content-simple p {
    color: #666;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .reviews-grid-simple {
        gap: 25px;
        padding: 0 30px;
    }
    
    .review-card-simple {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-grid-simple {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .review-card-simple {
        padding: 25px 20px;
    }
    
    .review-header-simple {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .review-content-simple p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .review-card-simple {
        padding: 20px 15px;
    }
    
    .review-header-simple h3 {
        font-size: 1.1em;
    }
    
    .review-content-simple p {
        font-size: 0.95em;
        line-height: 1.5;
    }
}

/* Для 3+ отзывов - автоматически переходит на сетку */
.reviews-grid-simple:has(.review-card-simple:nth-child(3)) {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
/* ===== CONDITIONS SECTION ===== */
body.service-page #conditions.conditions-section {
    background: #ffffff !important;
    padding: 80px 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
/* Отступ для заголовка условий работы */
#conditions .section-title {
    margin-bottom: 35px !important;
}

.conditions-grid {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.conditions-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* ====== */
/* Стиль для отдельного первого пункта */
.condition-item-single {
    max-width: 600px;
    margin: 0 auto 40px auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 25px !important;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #1a692f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.condition-item-single:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.condition-item-single .condition-icon {
    font-size: 2em;
    margin-right: 20px;
}

.condition-item-single .condition-text h4 {
    font-size: 1.3em;
    margin-bottom: 8px;
}

.condition-item-single .condition-text p {
    font-size: 1em;
    line-height: 1.5;
}

/* Адаптивность для отдельного пункта */
@media (max-width: 768px) {
    .condition-item-single {
        margin: 0 20px 30px 20px !important;
        padding: 20px 25px !important;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .condition-item-single .condition-icon {
        margin-right: 0;
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .condition-item-single {
        margin: 0 15px 25px 15px !important;
        padding: 18px 20px !important;
    }
    
    .condition-item-single .condition-text h4 {
        font-size: 1.2em;
    }
    
    .condition-item-single .condition-text p {
        font-size: 0.95em;
    }
}
/* ====== */
.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1a692f;
    transition: all 0.3s ease;
    height: fit-content;
}

.condition-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.condition-icon {
    font-size: 1.8em;
    flex-shrink: 0;
    margin-top: 2px;
}

.condition-text {
    flex: 1;
}

.condition-text h4 {
    color: #1a692f;
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.condition-text p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95em;
}

/* Оранжевый овал с важной фразой */
.conditions-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px 40px;
    border: 3px solid #e67e22;
    border-radius: 50px;
    background: #fffaf0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.2);
    position: relative;
}

.conditions-disclaimer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e67e22;
    border-radius: 3px;
}

.conditions-disclaimer p {
    color: #d35400;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .conditions-grid {
        gap: 30px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .condition-item {
        padding: 18px;
        gap: 15px;
    }
    
    .condition-icon {
        font-size: 1.6em;
    }
    
    .conditions-disclaimer {
        margin: 0 20px;
        padding: 20px 25px;
        border-radius: 30px;
    }
    
    .conditions-disclaimer p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .conditions-grid {
        gap: 15px;
        padding: 0 15px;
    }
    
    .condition-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .condition-icon {
        margin-top: 0;
        font-size: 1.8em;
    }
    
    .conditions-disclaimer {
        padding: 15px 20px;
        border-radius: 25px;
    }
    
    .conditions-disclaimer p {
        font-size: 0.95em;
    }
}
/* Скрываем определенные параграфы для английской версии */
#slide2.english-version [data-i18n="restText"],
#slide2.english-version [data-i18n="attitudeText"] {
    display: none !important;
}

/* Альтернативный вариант - скрывать целые параграфы */
#slide2.english-version p:has([data-i18n="restText"]),
#slide2.english-version p:has([data-i18n="attitudeText"]) {
    display: none !important;
}