/* ===== ОСНОВНЫЕ СТИЛИ ===== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #222;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px 10px 0 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;
}
.cookie-banner.show {
    opacity: 1;
}
.cookie-banner p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 14px;
}
.cookie-banner button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.cookie-banner button:hover {
    background-color: #218838;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f5f5f5;
}

/* ===== НАВИГАЦИЯ ===== */
.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;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 76vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===== КАРТОЧКИ ПРЕИМУЩЕСТВ ===== */
.advantages {
    padding: 60px 0;
    background: white;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.advantages .card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advantages .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.advantages .card-title {
    font-weight: 700;
    color: #1a1a2e;
}

.advantages .card-title i {
    margin-right: 10px;
    color: #28a745;
}

/* ===== КОНТАКТНАЯ ФОРМА ===== */
#contact-form {
    background: #f8f9fa;
    padding: 60px 0;
}

#contact-form h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 2px solid #28a745 !important;
    box-shadow: 0 1px 0 0 #28a745 !important;
}

#contact-form .btn {
    background: linear-gradient(135deg, #28a745, #218838);
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
}

#contact-form .btn:hover {
    opacity: 0.9;
}

/* ===== СЕКЦИЯ С КАРТОЙ ===== */
section[style*="height:403px"] {
    background: white;
}

section[style*="height:403px"] h1 {
    font-size: 2rem;
    color: #333;
    padding: 20px;
}

/* ===== СЛАЙДЕР (ОТЗЫВЫ) ===== */
#testimonials {
    background: white;
    padding: 60px 0;
}

#testimonials h2 {
    margin-bottom: 40px;
}

.slider .slides {
    background: transparent;
}

.slider .slides blockquote {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #28a745;
    margin: 20px;
}

.slider .slides blockquote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.slider .slides blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
}

.slider .indicators .indicator-item {
    background-color: #ccc;
}

.slider .indicators .indicator-item.active {
    background-color: #28a745;
}

/* ===== О НАС ===== */
#about {
    background: #f8f9fa;
    padding: 60px 0;
}

#about h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

#about p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* ===== УСЛУГИ (ТАБЛИЦА) ===== */
.services {
    background: white;
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.services table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.services thead {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.services th {
    font-weight: 600;
    padding: 15px !important;
}

.services td {
    padding: 15px !important;
}

/* ===== ФУТЕР ===== */
.page-footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding-top: 40px;
}

.page-footer a {
    color: #ddd;
    transition: color 0.3s ease;
}

.page-footer a:hover {
    color: #28a745;
}

.footer-copyright {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

/* ===== МОДАЛЬНЫЕ ОКНА ===== */
.modal {
    border-radius: 15px;
}

.modal .modal-content h4 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.modal .btn {
    background: #28a745;
    border-radius: 5px;
    margin-top: 10px;
}

.modal .btn:hover {
    background: #218838;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .advantages h2,
    #contact-form h2,
    #testimonials h2,
    #about h2,
    .services h2 {
        font-size: 1.5rem;
    }
    
    .slider .slides blockquote {
        margin: 10px;
        padding: 15px;
    }
    
    .brand-logo {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .cookie-banner {
        width: 95%;
        padding: 15px;
    }
}







.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background-color: #222;
            color: #fff;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
            box-sizing: border-box;
            text-align: center;
            border-radius: 10px 10px 0 0;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .cookie-banner.show {
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .cookie-banner button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #218838;
        }
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
