* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Poppins', 'Roboto', sans-serif;
    overflow-x: hidden;
    background: #f8fafd;
}

/* ========================================
   НАВИГАЦИЯ
   ======================================== */

nav {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav .brand-logo {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

nav ul li a {
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
}

/* ========================================
   HERO СЕКЦИЯ
   ======================================== */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-particles {
    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 2000 2000"><circle cx="100" cy="100" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="400" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="500" cy="200" r="4" fill="rgba(255,255,255,0.06)"/><circle cx="700" cy="600" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="300" r="3" fill="rgba(255,255,255,0.07)"/><circle cx="1100" cy="500" r="2" fill="rgba(255,255,255,0.09)"/><circle cx="1300" cy="100" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="1500" cy="400" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="1700" cy="200" r="4" fill="rgba(255,255,255,0.07)"/><circle cx="1900" cy="600" r="2" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .buttons {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    background: white;
    color: #667eea;
    padding: 0px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-3px);
}

/* ========================================
   СЕКЦИЯ УСЛУГ
   ======================================== */

.services {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.left-align {
    text-align: left;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    color: #667eea;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #1a1a2e, #667eea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
    margin: 0 auto 20px;
}

.section-header.left-align .section-divider {
    margin: 0 0 20px 0;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background: white;
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.08);
    border: 1px solid rgba(102,126,234,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -12px rgba(102,126,234,0.25);
    border-color: rgba(102,126,234,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea10, #764ba210);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ========================================
   КАРТА И КОНТАКТЫ
   ======================================== */

.map-section {
    background: linear-gradient(135deg, #f0f4f8, #e8edf5);
    padding: 60px 0;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
}

.map-wrapper {
    flex: 1;
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
}

.map-info {
    flex: 0.8;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-info-content {
    color: white;
}

.map-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.map-icon i {
    font-size: 1.8rem;
    color: white;
}

.map-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.map-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.map-contact span {
    font-size: 0.85rem;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   О КОМПАНИИ
   ======================================== */

.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 24px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* ========================================
   ТЕСТИМОНИАЛЫ
   ======================================== */

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafd, #f0f4f8);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.08);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(102,126,234,0.2);
}

.testimonial-icon i {
    color: #667eea;
    font-size: 1.8rem;
    opacity: 0.5;
    margin-bottom: 15px;
    display: block;
}

.testimonial-card p {
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #1a1a2e;
}

.author-info span {
    font-size: 0.75rem;
    color: #a0aec0;
}

/* ========================================
   ФУТЕР
   ======================================== */

.page-footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding-top: 50px;
}

.page-footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.page-footer p, .page-footer ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.page-footer a:hover {
    color: #667eea;
}

.social-links li {
    margin-bottom: 10px;
}

.social-links li a i {
    margin-right: 10px;
    width: 20px;
}

.footer-copyright {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
}

/* ========================================
   COOKIE БАННЕР
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    backdrop-filter: blur(12px);
    color: #2d3748;
    padding: 18px 25px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(102,126,234,0.2);
}

.cookie-banner p {
    flex: 1;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-banner button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-banner button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

/* ========================================
   МОДАЛЬНЫЕ ОКНА
   ======================================== */

.modal {
    border-radius: 28px;
}

.modal .modal-content {
    border-radius: 28px;
    padding: 30px;
}

.modal h4 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.modal .input-field input,
.modal .input-field textarea {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 15px;
}

.modal .btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50px;
    margin-top: 10px;
}

/* ========================================
   АНИМАЦИИ
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .map-container {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services, .about-section, .testimonials-section {
        padding: 60px 0;
    }
    
    .about-grid {
        flex-direction: column;
    }
    
    .map-info {
        padding: 30px 20px;
    }
    
    .map-info h2 {
        font-size: 1.3rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .map-contact {
        flex-direction: column;
        align-items: center;
    }
}





.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #1e1e1e;
            color: #fff;
            padding: 20px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
            transform: translateY(100%);
            opacity: 0;
        }
        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 15px;
            font-size: 16px;
            text-align: center;
        }
        .cookie-banner button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #0056b3;
        }
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
