:root {
            --color-primary: #1E3F66;
            --color-secondary: #C0C5C1;
            --color-accent: #FF5A5F;
            --color-text: #E5E5E5;
            --color-background: #0D1B2A;
            --font-main: 'Orbitron', sans-serif;
            --font-secondary: 'Rajdhani', sans-serif;
        }

        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@400;600&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-secondary);
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: var(--color-accent);
            transition: color 0.3s ease;
        }

        a:hover {
            color: #FF7B80;
        }

        h1, h2, h3 {
            font-family: var(--font-main);
            color: var(--color-secondary);
            text-transform: uppercase;
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .btn {
            background-color: var(--color-accent);
            color: var(--color-background);
            padding: 1rem 2rem;
            border-radius: 5px;
            text-transform: uppercase;
            font-weight: bold;
            display: inline-block;
            transition: transform 0.3s ease, background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #FF7B80;
            transform: translateY(-3px);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 27, 42, 0.9);
            padding: 1rem 0;
            z-index: 1000;
            transition: background-color 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-main);
            font-size: 1.8rem;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-item {
            margin-left: 2rem;
        }

        .nav-link {
            color: var(--color-secondary);
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .nav-link:hover {
            color: var(--color-accent);
            transform: translateY(-2px);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background-color: var(--color-secondary);
            transition: all 0.3s ease-in-out;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(13, 27, 42, 0.95);
                padding: 1rem 0;
                text-align: center;
                border-top: 1px solid var(--color-accent);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-item {
                margin: 1rem 0;
            }

            .burger-menu {
                display: flex;
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), url('../img/01.webp') no-repeat center center/cover;
            position: relative;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to top, var(--color-background), transparent);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInTop 1s forwards 0.5s;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin: 1rem 0 2rem;
        }

        /* Sections */
        section {
            padding: 5rem 0;
            position: relative;
        }

        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        #about {
            background-color: var(--color-primary);
        }

        #about .container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        #about .content {
            flex: 1;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 1s ease-out;
        }

        #about .content.visible {
            transform: translateX(0);
            opacity: 1;
        }

        #about img {
            width: 400px;
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            transform: translateX(50px);
            opacity: 0;
            transition: all 1s ease-out;
        }
        
        #about img.visible {
            transform: translateX(0);
            opacity: 1;
        }

        @media (max-width: 900px) {
            #about .container {
                flex-direction: column;
                text-align: center;
            }
            #about img {
                width: 100%;
                margin-top: 2rem;
            }
        }
        
        #products {
            background-color: var(--color-background);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background-color: var(--color-primary);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .product-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 1rem;
        }

        #prices {
            background: linear-gradient(rgba(30, 63, 102, 0.8), rgba(30, 63, 102, 0.8)), url('img/03.webp');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
        }

        .price-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .price-card {
            background-color: rgba(13, 27, 42, 0.8);
            border: 2px solid var(--color-accent);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .price-card.visible {
            transform: scale(1);
            opacity: 1;
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .price-card .price-value {
            font-size: 3rem;
            color: var(--color-accent);
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-card li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .price-card li::before {
            content: '✓';
            color: var(--color-accent);
            position: absolute;
            left: 0;
        }

        #gallery .container {
            text-align: center;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .gallery-item.visible {
            transform: scale(1);
            opacity: 1;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        #feedback {
            background-color: var(--color-primary);
        }

        .slider-container {
            position: relative;
            max-width: 800px;
            margin: 2rem auto;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slider-card {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(13, 27, 42, 0.8);
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 1s ease-out;
        }
        
        .slider-card.active {
            opacity: 1;
        }

        .slider-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .slider-card .author {
            font-weight: bold;
            color: var(--color-accent);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .nav-dot {
            width: 10px;
            height: 10px;
            background-color: var(--color-secondary);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .nav-dot.active {
            background-color: var(--color-accent);
        }

        #faq .faq-item {
            background-color: var(--color-primary);
            margin-bottom: 1rem;
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid var(--color-secondary);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(30, 63, 102, 0.8);
        }

        .faq-question h3 {
            margin: 0;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-question span {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }

        /* Contact Form */
        #contact {
            background-color: var(--color-primary);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.75rem;
            border-radius: 5px;
            border: 1px solid var(--color-secondary);
            background-color: var(--color-background);
            color: var(--color-text);
            font-size: 1rem;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--color-accent);
        }

        /* Footer */
        footer {
            background-color: var(--color-primary);
            padding: 3rem 0;
            text-align: center;
        }

        footer .container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }

        .footer-logo {
            font-family: var(--font-main);
            font-size: 2rem;
            color: var(--color-accent);
        }
        
        .footer-nav {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-nav a {
            color: var(--color-secondary);
        }

        .contact-info {
            font-style: normal;
        }

        .disclaimer {
            margin-top: 2rem;
            font-size: 0.8rem;
            color: rgba(229, 229, 229, 0.7);
        }

        /* Popups */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .popup-content {
            background-color: var(--color-primary);
            color: var(--color-text);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: fadeIn 0.5s ease-out;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--color-secondary);
            transition: color 0.3s ease;
        }

        .popup-close:hover {
            color: var(--color-accent);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--color-primary);
            color: var(--color-text);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            z-index: 1500;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner-text {
            flex: 1;
        }

        .cookie-banner-actions {
            display: flex;
            gap: 0.5rem;
        }

        .cookie-banner .btn {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        /* Animations */
        @keyframes fadeInTop {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

