:root {
            --primary-color: #00ffff; /* Turcoaz */
            --secondary-color: #ff00ff; /* Magenta */
            --background-color: #1a1a2e; /* Întunecat */
            --text-color: #f0f0f0; /* Alb-gri */
            --accent-color: #ff8c00; /* Portocaliu */
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(5px);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 2px 2px var(--secondary-color);
            position: relative;
            animation: pulse 2s infinite ease-in-out;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        nav ul a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        nav ul a:hover {
            color: var(--primary-color);
        }

        nav ul a:hover::after {
            transform: scaleX(1);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 101;
        }

        .burger-menu span {
            height: 3px;
            width: 25px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .mobile-nav {
            display: none;
        }

        main {
            padding-top: var(--header-height);
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/05.webp');
            background-size: cover;
            background-position: center;
            filter: grayscale(80%) brightness(50%);
            z-index: 1;
            animation: kenburns 30s infinite alternate;
        }
        
        @keyframes kenburns {
            0% {
                transform: scale(1.1) translate(0, 0);
            }
            100% {
                transform: scale(1.2) translate(5%, 5%);
            }
        }

        .hero-content {
            z-index: 2;
            animation: fadeIn 2s ease-in-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 3px 3px var(--secondary-color);
            color: var(--primary-color);
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 600px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px #000;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--background-color);
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-transform: uppercase;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.4);
        }

        h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            position: relative;
            text-shadow: 2px 2px var(--secondary-color);
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        h2.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about .content,
        .products .product-grid,
        .prices .price-grid,
        .feedback .testimonials,
        .faq .faq-list {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .about .content.is-visible,
        .products .product-grid.is-visible,
        .prices .price-grid.is-visible,
        .feedback .testimonials.is-visible,
        .faq .faq-list.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about .content {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .about .text-content {
            flex: 1;
            min-width: 300px;
        }

        .about .image-wrapper {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about img:hover {
            transform: scale(1.05);
        }

        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: rgba(36, 36, 62, 0.7);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
            transform: rotate(45deg);
            z-index: 0;
            animation: gradientRotate 10s linear infinite;
        }

        @keyframes gradientRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .product-card-content {
            position: relative;
            z-index: 1;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 255, 255, 0.5);
        }
        
        .product-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .product-card p {
            margin-bottom: 20px;
        }

        .prices .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: rgba(36, 36, 62, 0.7);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }
        
        .price-card.featured {
            border-color: var(--primary-color);
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
            transform: scale(1.05);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 255, 0.5);
        }

        .price-card h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .price-card .price {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .price-card ul li:last-child {
            border-bottom: none;
        }
        
        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        
        .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 {
            overflow: hidden;
        }

        .testimonials-container {
            position: relative;
            width: 100%;
            height: auto;
        }

        .testimonials {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
            flex-wrap: nowrap;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(36, 36, 62, 0.7);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            margin: 0 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-card h4 {
            color: var(--primary-color);
            margin-top: 10px;
            font-size: 1.2rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--primary-color);
        }

        .faq .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question::after {
            content: '+';
            font-size: 2rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding-top: 0;
        }

        .faq-answer p {
            padding-top: 15px;
        }

        #contact {
            background: url(img/09.webp) no-repeat center center/cover;
            position: relative;
            text-align: center;
            padding: 100px 0;
            animation: fadeIn 1s ease-in-out;
        }

        #contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.8);
            z-index: 1;
        }

        .contact-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-content h2 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 20px;
            background: rgba(36, 36, 62, 0.8);
            padding: 30px;
            border-radius: 10px;
        }

        .contact-form input {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-bottom: 2px solid var(--primary-color);
            color: var(--text-color);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .contact-form input:focus {
            border-color: var(--secondary-color);
        }
        
        .contact-form button {
            width: 100%;
            padding: 15px;
            border: none;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--background-color);
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 50px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-form button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.4);
        }
        
        #disclaimer {
            padding: 40px 0;
            text-align: center;
            background-color: #0f0c29;
        }
        
        #disclaimer p {
            font-size: 0.9rem;
            color: #ccc;
        }

        footer {
            background-color: #0d0a21;
            color: #ccc;
            padding: 40px 0;
            font-size: 0.9rem;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-shadow: 1px 1px var(--secondary-color);
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-contact p {
            margin: 5px 0;
        }

        .footer-bottom {
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background-color: rgba(36, 36, 62, 0.95);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            z-index: 1000;
        }

        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .cookie-banner button:hover {
            background-color: var(--secondary-color);
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1001;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s, opacity 0.3s;
        }

        .popup.active {
            visibility: visible;
            opacity: 1;
        }

        .popup-content {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.8), rgba(255, 0, 255, 0.8));
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            color: var(--background-color);
            max-width: 400px;
            position: relative;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            color: var(--background-color);
            cursor: pointer;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .animated {
            animation: slideInUp 0.8s ease-out;
        }
        
        /* Media Queries */
        @media (max-width: 900px) {
            header {
                padding: 0 20px;
            }
            
            nav ul {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .mobile-nav {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: rgba(26, 26, 46, 0.95);
                backdrop-filter: blur(5px);
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out;
                z-index: 99;
                padding-bottom: 20px;
            }
            
            .mobile-nav.active {
                transform: translateX(0);
            }

            .mobile-nav li {
                padding: 15px 40px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .mobile-nav li a {
                font-size: 1.2rem;
                display: block;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .about .content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links ul {
                flex-direction: column;
            }
        }

