:root {
            --primary-color: #ff5722;
            --secondary-color: #212121;
            --accent-color: #ff9800;
            --text-color: #fafafa;
            --bg-color: #121212;
            --light-text-color: #bdbdbd;
            --font-family: 'Roboto', sans-serif;
        }

        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Bebas+Neue&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3 {
            font-family: 'Bebas Neue', cursive;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-color);
            margin-bottom: 0.5em;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 12px 25px;
            border-radius: 5px;
            text-transform: uppercase;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.9);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: background-color 0.3s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            font-family: 'Bebas Neue', cursive;
            color: var(--primary-color);
            letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 20px;
        }

        .nav-link {
            color: var(--light-text-color);
            font-weight: bold;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .bar {
            height: 3px;
            width: 100%;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: var(--primary-color);
            position: relative;
        }
        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            margin: 10px auto 0;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-color);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('../img/10.webp') no-repeat center center/cover;
            z-index: -1;
            animation: zoom-in-out 20s infinite alternate;
        }

        @keyframes zoom-in-out {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        .hero-content {
            z-index: 2;
            animation: fadeInDown 1s ease-in-out;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            line-height: 1;
            margin-bottom: 0.2em;
            color: var(--text-color);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2em;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        @keyframes fadeInDown {
            0% { opacity: 0; transform: translateY(-50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* About Section */
        .about {
            background-color: var(--secondary-color);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 1em;
            color: var(--light-text-color);
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-in-out;
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Products Section */
        .product-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            background-color: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: scaleIn 0.8s ease-in-out;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
        }

        @keyframes scaleIn {
            0% { opacity: 0; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .product-card-content {
            padding: 25px;
        }

        .product-card-content h3 {
            color: var(--primary-color);
            margin-top: 0;
        }

        .product-card-content p {
            color: var(--light-text-color);
            font-size: 0.95rem;
        }

        /* Prices Section */
        .prices {
            background-color: var(--secondary-color);
        }

        .price-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: var(--bg-color);
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            width: 320px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: rotateIn 0.8s ease-in-out;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background-color: rgba(255, 87, 34, 0.1);
            transform: rotate(45deg);
        }

        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
        }

        .price-card h3 {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .price-card .price {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .price-card .price span {
            font-size: 1.2rem;
            font-weight: normal;
            color: var(--light-text-color);
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .price-card ul li {
            margin-bottom: 10px;
            color: var(--light-text-color);
            position: relative;
            padding-left: 25px;
        }
        .price-card ul li::before {
            content: '✓';
            color: var(--accent-color);
            font-size: 1.2rem;
            position: absolute;
            left: 0;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Section */
        .feedback {
            background-color: var(--secondary-color);
            text-align: center;
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 30px;
            text-align: center;
            flex-shrink: 0;
        }
        
        .testimonial-card p {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--light-text-color);
        }

        .testimonial-card h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-nav-dot {
            width: 12px;
            height: 12px;
            background-color: var(--light-text-color);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-nav-dot.active {
            background-color: var(--primary-color);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--bg-color);
        }

        .faq-item {
            background-color: var(--secondary-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            color: var(--accent-color);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 20px;
            color: var(--light-text-color);
        }
        
        .faq-answer.open {
            max-height: 200px; /* Adjust as needed */
            padding: 20px;
        }

        /* Contact Form */
        #contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--secondary-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-in-out;
        }

        @keyframes slideInUp {
            0% { opacity: 0; transform: translateY(100px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent-color);
            font-weight: bold;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid var(--light-text-color);
            background-color: var(--bg-color);
            color: var(--text-color);
            font-size: 1rem;
        }
        
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
            cursor: pointer;
        }

        /* Pop-up */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .popup.open {
            visibility: visible;
            opacity: 1;
        }
        .popup-content {
            background-color: var(--bg-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 0 25px rgba(255, 87, 34, 0.6);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        .popup.open .popup-content {
            transform: scale(1);
        }

        /* Disclaimer */
        .disclaimer {
            background-color: #0d0d0d;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
            color: var(--light-text-color);
            border-top: 1px solid rgba(255, 87, 34, 0.3);
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--light-text-color);
            padding: 50px 0 20px;
            text-align: center;
            border-top: 5px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: left;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 2.5rem;
            color: var(--primary-color);
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 3px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 20px;
        }

        .footer-section h4 {
            color: var(--text-color);
            margin-bottom: 20px;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            margin-top: 5px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: var(--light-text-color);
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(33, 33, 33, 0.95);
            color: var(--light-text-color);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1500;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner .btn {
            padding: 8px 15px;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
                text-align: center;
            }
            .about-image {
                margin-top: 30px;
            }
            .footer-content {
                flex-direction: column;
                align-items: center;
            }
            .footer-section {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: 100vh;
                flex-direction: column;
                background-color: var(--secondary-color);
                padding-top: 50px;
                transition: right 0.3s ease-in-out;
                z-index: 999;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            }
            .nav-menu.active {
                right: 0;
            }
            .nav-item {
                margin: 20px 0;
                text-align: center;
            }
            .hamburger {
                display: flex;
            }
            .hero-content h1 {
                font-size: 3rem;
            }
            .hero-content p {
                font-size: 1.2rem;
            }
            .price-card {
                width: 100%;
            }
            .popup-content {
                margin: 20px;
            }
            h1{
                font-size: 2.5em !important;
            }
            h2{
                font-size: 2em !important;
            }
        }

