/* ========================================
   БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
======================================== */

:root {
    --primary-bg: #1a1f3b;
    --accent-lime: #bfff00;
    --accent-emerald: #104f55;
    --text-light: #e5e5e5;
    --text-white: #ffffff;
    --gradient-form: linear-gradient(135deg, #1a1f3b 0%, #104f55 100%);
    --shadow-glow: 0 0 20px rgba(191, 255, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   АНИМАЦИИ
======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(191, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(191, 255, 0, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* ========================================
   COOKIE BANNER
======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-form);
    border-top: 2px solid var(--accent-lime);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-lime);
    text-decoration: underline;
}

.cookie-accept {
    background: var(--accent-lime);
    color: var(--primary-bg);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   HEADER
======================================== */

.header {
    background: rgba(26, 31, 59, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(191, 255, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 24px;
    font-weight: bold;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo svg {
    transition: var(--transition);
}

.logo:hover svg {
    transform: rotate(10deg);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-lime);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-lime);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-form);
    color: var(--text-white);
    border: 2px solid var(--accent-lime);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.cta-button:hover {
    background: var(--accent-lime);
    color: var(--primary-bg);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-lime);
    transition: var(--transition);
}

/* ========================================
   MAIN CONTENT
======================================== */

.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--accent-emerald) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/O1d6JO.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--accent-lime);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-lime);
    color: var(--primary-bg);
    padding: 18px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(16, 79, 85, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-lime);
    border-radius: 2px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--gradient-form);
    border: 2px solid var(--accent-lime);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(191, 255, 0, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: var(--transition);
}

.benefit-card:hover::before {
    transform: scale(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-bg);
}

.benefit-card h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--gradient-form);
    border: 2px solid var(--accent-lime);
    border-radius: 15px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-image img {
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--accent-lime);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-price {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
}

.service-button {
    width: 100%;
    background: var(--accent-lime);
    color: var(--primary-bg);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.service-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(191, 255, 0, 0.4);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-lime);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    color: var(--text-white);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    background: var(--gradient-form);
    border: 2px solid var(--accent-lime);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    color: var(--accent-lime);
    font-size: 2rem;
    font-weight: bold;
}

.testimonial-author {
    color: var(--accent-lime);
    font-weight: bold;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: var(--gradient-form);
    border: 2px solid var(--accent-lime);
    border-radius: 15px;
    padding: 40px;
}

.contact-info h3 {
    color: var(--accent-lime);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--accent-lime);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: url('./img/xlyTaj.jpg') center/cover;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid var(--accent-lime);
}

/* ========================================
   CONTACT FORM
======================================== */

.contact-form {
    background: var(--gradient-form);
    border: 2px solid var(--accent-lime);
    border-radius: 15px;
    padding: 40px;
    animation: glow 3s ease-in-out infinite;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(26, 31, 59, 0.8);
    border: 2px solid rgba(191, 255, 0, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-lime);
    box-shadow: 0 0 10px rgba(191, 255, 0, 0.3);
    transform: scale(1.02);
}

.form-group input::placeholder {
    color: rgba(229, 229, 229, 0.6);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--accent-lime);
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background: var(--accent-lime);
    color: var(--primary-bg);
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.4);
}

.submit-button:active {
    transform: scale(0.98);
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--primary-bg);
    border-top: 2px solid var(--accent-lime);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-lime);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-lime);
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(191, 255, 0, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .services-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo svg {
        width: 36px;
        height: 36px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .benefit-card,
    .service-card,
    .testimonial {
        padding: 25px 20px;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-button {
        padding: 15px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
} 