:root {
            --primary-color: #00bcd4;
            --secondary-color: #ffeb3b;
            --accent-color: #ff5722;
            --text-color: #212121;
            --background-color: #eceff1;
            --retro-font: 'Orbitron', sans-serif;
            --future-font: 'Roboto', sans-serif;
        }

        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--future-font);
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
            overflow-x: hidden;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: var(--primary-color);
            color: var(--background-color);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        header .logo {
            font-family: var(--retro-font);
            font-size: 2rem;
            color: var(--secondary-color);
            text-shadow: 2px 2px var(--accent-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--background-color);
            text-decoration: none;
            font-family: var(--retro-font);
            font-weight: 700;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--secondary-color);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--background-color);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        .nav-active {
            transform: translateX(0%);
        }

        @media screen and (max-width: 768px) {
            .nav-menu {
                position: fixed;
                right: 0;
                top: 0;
                height: 100vh;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                width: 60%;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                padding-top: 6rem;
                gap: 3rem;
            }

            .burger {
                display: block;
            }
        }
        
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--background-color);
            text-align: center;
            overflow: hidden;
            padding-top: 6rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/09.webp') no-repeat center center/cover;
            filter: brightness(0.6);
            z-index: -1;
            transform: translateY(var(--parallax-offset, 0));
        }
        
        .hero-content {
            z-index: 10;
        }

        .hero h1 {
            font-family: var(--retro-font);
            font-size: 4rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            color: white;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--accent-color);
            color: var(--background-color);
            text-decoration: none;
            font-family: var(--retro-font);
            text-transform: uppercase;
            border-radius: 5px;
            margin-top: 2rem;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #e64a19;
        }

        section {
            padding: 5rem 2rem;
        }

        h2 {
            font-family: var(--retro-font);
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
        }
        
        .about .container, .products .container {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .about .container .text, .products .container .text {
            flex: 1;
            min-width: 300px;
            animation: fadeIn 1s ease-in-out;
        }

        .about .container .image img, .products .container .image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .products .container {
            flex-direction: row-reverse;
        }
        
        .prices {
            background-color: #cfd8dc;
            text-align: center;
        }
        
        .prices-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            max-width: 300px;
            width: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .price-card.featured::before {
            content: 'ƏN YAXŞI SEÇİM';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--accent-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-family: var(--retro-font);
        }

        .price-card h3 {
            font-family: var(--retro-font);
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin: 1rem 0;
        }

        .price-card ul li::before {
            content: '✓';
            color: green;
            margin-right: 1rem;
        }
        
        .gallery .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        .feedback {
            background-color: #cfd8dc;
        }
        
        .feedback-slider {
            display: flex;
            overflow: hidden;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .feedback-slide {
            min-width: 100%;
            text-align: center;
            transition: transform 0.5s ease-in-out;
            padding: 2rem;
        }
        
        .feedback-slide blockquote {
            font-style: italic;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: #555;
        }

        .feedback-slide cite {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .slider-dots {
            text-align: center;
            margin-top: 1rem;
        }
        
        .dot {
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.6s ease;
        }

        .dot.active {
            background-color: var(--primary-color);
        }
        
        .faq .faq-item {
            border-bottom: 1px solid #ccc;
            padding: 1.5rem 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-top: 1rem;
        }

        .faq-answer p {
            padding-right: 1.5rem;
        }

        .faq-question .icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active .icon {
            transform: rotate(45deg);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-family: var(--retro-font);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #008c9e;
        }
        
        .disclaimer {
            background-color: #212121;
            color: #bdbdbd;
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }

        .disclaimer p {
            margin-bottom: 1rem;
        }

        footer {
            background-color: #263238;
            color: #b0bec5;
            padding: 2rem;
            text-align: center;
        }
        
        footer .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            font-family: var(--retro-font);
            font-size: 2rem;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
        }

        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul a, .footer-contact a {
            color: #b0bec5;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul a:hover, .footer-contact a:hover {
            color: var(--primary-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0,0,0,0.8);
            color: white;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            animation: slideIn 0.5s ease-out;
        }
        
        .cookie-banner p {
            margin: 0;
        }

        .cookie-banner .accept-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            border-radius: 5px;
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 3000;
        }

        .popup-content {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

