* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background-color: #000000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER */
        header {
            /* E njëjta familje ngjyrash: i qetë (e zezë) me akcent portokalli */
            background: linear-gradient(180deg, #0b0b0b 0%, #1e1a18 100%);
            border-bottom: 4px solid #e07913;
            color: #ffffff;
            padding: 0.8rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            overflow: visible;
        }

        /* Klasa aktive kur përdoruesi scrollon poshtë */
        header.scrolled {
            background: rgba(11,11,11,0.95);
            transition: background 0.25s ease;
            border-bottom-color: #e07913;
        }
        
        .logo-img {
            display: none; /* hiq imazhin nëse mbetet nga versionet e mëparshme */
         }

        .logo-text {
            color: #e07913;
            font-weight: 700;
            font-size: 1.6rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-left: 4px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo span {
            color: #e74c3c;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: #e8dcc8;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #e07913;
        }

        /* MOBILE MENU TOGGLE */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #e07913;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
            flex-direction: column;
            gap: 5px;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: #e07913;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover {
            transform: scale(1.1);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translateY(12px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-12px);
        }

        /* HERO SECTION */
        .hero {
            background: url('image/IMG_2692 (1).PNG');
            background-size: 100% auto;
            background-position: center top;
            background-repeat: no-repeat;
            background-color: #333;
            background-attachment: fixed;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 0;
            margin-top: 0;
        }

        .hero-content {
            width: 100%;
            margin-top: -100px;
        }

        .hero-content h1 {
            font-size: 5.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
            color: #e07913;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            
        }

        .btn {
            display: inline-block;
            background: #e07913;
            color: white;
            padding: 12px 30px;
            text-decoration: none;  
            border-radius: 5px;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #c0392b;
        }

        /* ABOUT SECTION */
        .about {
            padding: 20px 0;
            background: #000000;
        }

        /* ANIMATIONS ON SCROLL */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #e07913;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-content h3 {
            color: #e8dcc8;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .about-content p {
            color: #e8dcc8;
            margin-bottom: 1rem;
        }

        .about-content ul {
            color: #e8dcc8;
        }

        .about-content li {
            color: #e8dcc8;
        }

        /* PRODUCTS SECTION */
        .products {
            padding: 80px 0;
            background: #000000;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            opacity: 1;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(224,121,19,0.3);
            border-top: 3px solid #e07913;
        }

        .product-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h3 {
            margin-bottom: 1rem;
            color: #e8dcc8;
        }

        .product-info p {
            color: #e8dcc8;
        }

        /* GALLERY SECTION */
        .gallery {
            padding: 80px 0;
            background: #000000;
        }

        .gallery-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(224,121,19,0.3);
            touch-action: pan-y;
            -webkit-user-select: none;
            user-select: none;
            cursor: grab;
        }

        .gallery-container:active {
            cursor: grabbing;
        }

        .gallery-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .gallery-slide {
             min-width: 100%;
             display: flex;
             align-items: center;
             justify-content: center;
             background: #1a1a1a;
            position: relative; /* që captions të shfaqen në çdo foto */
        }

        .gallery-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.7);
            color: #e07913;
            padding: 6px 12px;
            border-radius: 3px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 10;
            text-align: center;
        }

        .gallery-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #e07913;
        }

        .gallery-dot.active {
            background: #e07913;
            transform: scale(1.3);
        }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(224,121,19,0.7);
            color: white;
            border: none;
            font-size: 1rem;
            padding: 5px 8px;
            cursor: pointer;
            border-radius: 3px;
            transition: all 0.3s ease;
            z-index: 5;
        }

        .gallery-arrow:hover {
            background: #e07913;
            transform: translateY(-50%) scale(1.15);
        }

        .gallery-arrow.prev {
            left: 20px;
        }

        .gallery-arrow.next {
            right: 20px;
        }

        .gallery-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0,0,0,0.6);
            color: #e07913;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            z-index: 10;
        }

        /* CONTACT SECTION */
        .contact {
            padding: 80px 0;
            background: linear-gradient(180deg, #0f0f0f 0%, #14100e 100%);
            border-top: 4px solid rgba(224,121,19,0.12);
            color: #f5f5f5;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .contact-info {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
             box-shadow: 0 5px 15px rgba(224,121,19,0.2);
         }

         .contact-form {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
             box-shadow: 0 5px 15px rgba(224,121,19,0.2);
        }

        .contact-info h3 {
            color: #e07913;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
         }

         .contact-form h3 {
            color: #e07913;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
         }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border: 2px solid #e07913;
            border-radius: 5px;
            background: #000000;
            color: #e8dcc8;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            background: #1a1a1a;
            box-shadow: 0 0 10px rgba(224,121,19,0.3);
            border-color: #c0392b;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #666;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(224,121,19,0.2);
            margin-top: 2rem;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* FOOTER */
        footer {
            background: linear-gradient(0deg, #0b0b0b 0%, #1e1a18 100%);
            border-top: 4px solid #e07913;
            color: #ffffff;
            text-align: center;
            padding: 2rem 0;
        }

        footer .social-media {
            margin-bottom: 2rem;
        }

        footer .social-media h3 {
            color: #e07913;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #e07913;
            color: #e07913;
        }

        .social-links a.facebook {
            background: rgba(59, 89, 152, 0.1);
        }

        .social-links a.facebook:hover {
            background: #3b5998;
            color: white;
            border-color: #3b5998;
            transform: translateY(-5px);
        }

        .social-links a.instagram {
            background: rgba(224,121,19,0.1);
        }

        .social-links a.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: #bc1888;
            color: white;
            transform: translateY(-5px);
        }

        footer p {
            color: #e8dcc8;
            margin: 0.5rem 0;
        }

        /* MODAL STYLES */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            position: relative;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90%;
            max-width: 800px;
            height: 100vh;
        }

        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(224,121,19,0.3);
            animation: zoomIn 0.4s ease;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .close {
            position: absolute;
            right: 30px;
            top: 20px;
            color: #e07913;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close:hover {
            color: #ffffff;
        }

        /* MOBILE MENU TOGGLE */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #e07913;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
            flex-direction: column;
            gap: 5px;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: #e07913;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover {
            transform: scale(1.1);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translateY(12px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-12px);
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(11, 11, 11, 0.98);
                border-bottom: 2px solid #e07913;
                z-index: 999;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                list-style: none;
            }

            nav ul li {
                margin: 0;
                padding: 1rem 0;
                text-align: center;
                border-bottom: 1px solid rgba(224, 121, 19, 0.2);
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            nav ul li a {
                display: block;
                color: #e8dcc8;
                text-decoration: none;
                transition: color 0.3s;
            }

            nav ul li a:hover {
                color: #e07913;
            }

            .hero {
              margin-bottom: -350px
            }

            .hero-content h1 {
                font-size: 3.2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .gallery-slide img {
                height: 250px;
            }

            .gallery-caption {
                font-size: 0.7rem;
                bottom: 35px;
                padding: 6px 12px;
            }

            .gallery-counter {
                font-size: 0.7rem;
                padding: 5px 10px;
            }}