@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

        :root {
            --color-primary: #FF00FF; /* Fucsia */
            --color-secondary: #8A2BE2; /* Violeta */
            --color-accent: #00FFFF; /* Cian */
            --color-bg-light: #F0F8FF; /* AliceBlue */
            --color-bg-dark: #120A2F; /* Midnight Purple */
            --color-text-light: #F0F8FF;
            --color-text-dark: #120A2F;
            --font-display: 'Orbitron', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-bg-light);
            color: var(--color-text-dark);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: var(--color-secondary);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-primary);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            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); }
        }

        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            will-change: opacity, transform;
        }
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Header */
        header {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-secondary);
            text-shadow: 2px 2px var(--color-accent);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            font-family: var(--font-display);
            text-transform: uppercase;
            font-size: 0.9rem;
            color: var(--color-text-dark);
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 5px;
            right: 0;
            background: var(--color-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
            left: 0;
            background: var(--color-primary);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1010;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--color-text-dark);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-text-light);
            position: relative;
            overflow: hidden;
            background-image: url('../img/03.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(18, 10, 47, 0.7);
            backdrop-filter: blur(2px);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            animation: fadeIn 1s ease-out;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 8vw, 5rem);
            line-height: 1.2;
            margin-bottom: 1rem;
            text-shadow: 4px 4px var(--color-accent);
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.5rem);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            background-color: var(--color-primary);
            color: var(--color-bg-dark);
            padding: 15px 30px;
            border-radius: 5px;
            text-transform: uppercase;
            font-weight: bold;
            font-family: var(--font-display);
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-5px);
            background-color: var(--color-accent);
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        h2, h3 {
            font-family: var(--font-display);
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        h2 {
            font-size: 2.5rem;
            color: var(--color-secondary);
            text-shadow: 2px 2px var(--color-primary);
        }

        h3 {
            font-size: 1.8rem;
            color: var(--color-text-dark);
        }
        
        /* About */
        .about .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .about-image {
            flex: 1 1 400px;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .about-text {
            flex: 1 1 500px;
        }

        /* Products */
        .products {
            background-color: var(--color-bg-dark);
            color: var(--color-text-light);
        }

        .products h2 {
            color: var(--color-text-light);
            text-shadow: 2px 2px var(--color-primary);
        }

        .products h3 {
            color: var(--color-accent);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            text-align: center;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card img {
            width: 100%;
            max-width: 250px;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
            filter: grayscale(50%);
            transition: filter 0.3s ease;
        }

        .product-card:hover img {
            filter: grayscale(0);
        }

        /* Prices */
        .prices {
            background-color: var(--color-bg-light);
        }
        
        .price-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .price-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
            flex: 1 1 300px;
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .price-card h3 {
            color: var(--color-primary);
            margin-bottom: 15px;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-family: var(--font-display);
            color: var(--color-secondary);
            margin-bottom: 10px;
        }

        .price-card .price span {
            font-size: 1rem;
            color: #777;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 20px;
        }

        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .price-card ul li:last-child {
            border-bottom: none;
        }

        /* Gallery */
        .gallery {
            background-color: var(--color-bg-dark);
        }

        .gallery h2 {
            color: var(--color-text-light);
            text-shadow: 2px 2px var(--color-primary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        /* Feedback */
        .feedback-slider-container {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-card {
            flex: 0 0 100%;
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            text-align: center;
            margin: 0 15px;
        }
        
        .feedback-card p {
            font-style: italic;
            margin-bottom: 15px;
            color: #555;
        }
        
        .feedback-card h4 {
            font-family: var(--font-display);
            color: var(--color-secondary);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .slider-control {
            width: 10px;
            height: 10px;
            background-color: #ccc;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-control.active {
            background-color: var(--color-primary);
        }

        /* FAQ */
        .faq .container {
            max-width: 800px;
        }
        
        .faq-item {
            border-bottom: 1px solid #ccc;
            padding: 20px 0;
            cursor: pointer;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            font-family: var(--font-display);
            color: var(--color-secondary);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding-top: 0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px; /* Adjust as needed */
            padding-top: 15px;
        }

        /* Form */
        #contact-form {
            max-width: 600px;
            margin: 40px auto;
            padding: 40px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            animation: fadeIn 1s ease-out;
        }

        #contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        #contact-form input, #contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        #contact-form input:focus, #contact-form textarea:focus {
            outline: none;
            border-color: var(--color-primary);
        }

        #contact-form button {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: var(--color-secondary);
            color: var(--color-text-light);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #contact-form button:hover {
            background-color: var(--color-primary);
        }

        .form-message {
            margin-top: 20px;
            text-align: center;
            font-weight: bold;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #333;
            color: #aaa;
            padding: 20px;
            text-align: center;
            font-size: 0.8rem;
        }

        /* Footer */
        footer {
            background-color: var(--color-bg-dark);
            color: var(--color-text-light);
            padding: 40px 0;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        
        .footer-section {
            flex: 1 1 250px;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            font-family: var(--font-display);
            color: var(--color-accent);
            margin-bottom: 15px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--color-text-light);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-primary);
        }
        
        .footer-contacts p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 20px;
        }

        /* Popup */
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--color-bg-light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 2000;
            display: none;
            text-align: center;
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1999;
            display: none;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            cursor: pointer;
            color: #888;
        }

        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--color-bg-dark);
            color: var(--color-text-light);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1500;
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin: 0;
            flex-grow: 1;
        }
        
        .cookie-banner .btn {
            white-space: nowrap;
            margin-left: 20px;
            padding: 10px 20px;
            background-color: var(--color-primary);
            color: var(--color-bg-dark);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 0;
                height: 100vh;
                width: 70%;
                flex-direction: column;
                background-color: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                padding-top: 80px;
            }
            
            .nav-links.nav-active {
                transform: translateX(0);
            }
            
            .nav-links li {
                opacity: 0;
                margin: 20px 0;
            }
            
            .nav-links.nav-active li {
                opacity: 1;
                animation: navLinkFade 0.5s ease forwards 0.5s;
            }

            @keyframes navLinkFade {
                from { opacity: 0; transform: translateX(50px); }
                to { opacity: 1; transform: translateX(0); }
            }
            
            .burger-menu {
                display: flex;
            }
            
            .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .toggle .line2 { opacity: 0; }
            .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
            
            .hero-content {
                padding: 0 20px;
            }
            
            .about .container {
                flex-direction: column;
            }

            .feedback-slider-container {
                padding: 0 20px;
            }
            h2{
                font-size: 2em !important;
            }
        }

