/* ===== ОСНОВНЫЕ СТИЛИ ===== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50, #1a1a2e);
    color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.cookie-banner p {
    margin: 0;
    flex: 1;
    text-align: left;
    font-size: 14px;
}
.cookie-banner button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}
.cookie-banner button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background: #f5f5f5;
}

/* ===== НАВИГАЦИЯ ===== */
nav .nav-wrapper {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0 20px;
}

.brand-logo {
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-size: 1.5rem !important;
}

.sidenav-trigger i {
    font-size: 2rem;
}

.sidenav {
    background: #1a1a2e;
}

.sidenav li a {
    color: white;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero .btn-light {
    background: white;
    color: #ff7e5f;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease 0.2s both;
    display: inline-block;
}

.hero .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero img {
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero img:hover {
    transform: scale(1.02);
}

/* ===== СЕКЦИЯ О НАС ===== */
#about {
    background: white;
    padding: 70px 0;
}

#about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

#about h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff7e5f;
}

#about p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

#about img {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    transition: transform 0.3s ease;
}

#about img:hover {
    transform: scale(1.02);
}

/* ===== ОТЗЫВЫ (СЛАЙДЕР) ===== */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 70px 0;
    position: relative;
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

.testimonials .slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonials .slider-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin: 10px;
    transition: transform 0.3s ease;
    position: absolute;
    width: calc(100% - 20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonials .slider-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonials .slider-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonials .slider-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #feb47b;
}

.testimonials .slider-controls {
    text-align: center;
    margin-top: 30px;
}

.testimonials button {
    background: white;
    color: #764ba2;
    border: none;
    padding: 12px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonials button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== КОНТАКТНАЯ ФОРМА ===== */
.contact {
    background: white;
    padding: 70px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 2px solid #ff7e5f !important;
    box-shadow: 0 1px 0 0 #ff7e5f !important;
}

.contact .btn {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 50px;
    width: 200px;
    display: block;
    margin: 0 auto;
    font-weight: 600;
}

.contact .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== ПРЕИМУЩЕСТВА (КАРТОЧКИ) ===== */
.advantages {
    background: #f8f9fa;
    padding: 70px 0;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.advantages .card {
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.advantages .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.advantages .card-title {
    font-weight: 700;
    color: #ff7e5f;
    font-size: 1.3rem;
}

.advantages .card-title i {
    margin-right: 10px;
}

/* ===== СЕКЦИЯ С КАРТОЙ ===== */
section[style*="display: flex; min-height: 448px"] {
    background: white;
}

section[style*="display: flex; min-height: 448px"] iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

section[style*="display: flex; min-height: 448px"] > div:last-child div {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 20px;
}

/* ===== УСЛУГИ ===== */
.services {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 70px 0;
    color: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.services .service-item {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.services .service-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.2);
}

.services .service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.services .service-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== ФУТЕР ===== */
.page-footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding-top: 50px;
}

.page-footer a {
    color: #ddd;
    transition: color 0.3s ease;
}

.page-footer a:hover {
    color: #feb47b;
}

.footer-copyright {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

/* ===== МОДАЛЬНЫЕ ОКНА ===== */
.modal {
    border-radius: 20px;
}

.modal .modal-content h4 {
    color: #ff7e5f;
    margin-bottom: 25px;
}

.modal .btn {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 50px;
    width: 100%;
    margin-top: 10px;
}

.modal .btn.red {
    background: #dc3545;
    margin-top: 10px;
}

.modal .btn.red:hover {
    background: #c82333;
}

#thank-modal .modal-content {
    text-align: center;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero p {
        text-align: center;
    }
    
    .hero .btn-light {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: fit-content;
    }
    
    .hero img {
        margin-top: 30px;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        text-align: center;
    }
    
    #about h2, .advantages h2, .contact h2, .services h2, .testimonials h2 {
        font-size: 1.8rem;
    }
    
    section[style*="display: flex; min-height: 448px"] {
        flex-direction: column;
    }
    
    .testimonials .slider-item p {
        font-size: 1rem;
    }
    
    section[style*="display: flex; min-height: 448px"] > div:last-child div {
        font-size: 1.2rem;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1rem !important;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .advantages .card-title {
        font-size: 1.1rem;
    }
}







 .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
        }
        .cookie-banner button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            margin-top: 10px;
            cursor: pointer;
        }
        .cookie-banner button:hover {
            background-color: #45a049;
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
