hhtml {
    scroll-behavior: smooth !important;
}

.logo-link {
    text-decoration: none; /* Heq çdo vijë të padëshiruar poshtë logos */
    display: inline-block;
}
:root {
    --red: #ff3e3e;
    --black: #000000;
    --white: #ffffff;
    --dark-grey: #111111;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

nav {
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    text-align: center;
}
.logo-container img { height: 50px; }

/* HERO VIDEO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.8);
}
/* Teksti kryesor (IHR PARTNER FÜR...) */
.hero-content h1 {
    font-size: 5rem !important; /* Madhësia që kërkove më parë */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Kjo e bën tekstin të "kërcejë" nga video */
}

/* Teksti përshkrues poshtë tij */
.hero-content p { 
    font-size: 1.55rem !important; /* Ishte 1.1rem, tani 40% më e madhe */
    color: white;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Kjo e bën tekstin të "kërcejë" nga video */

}


/* SECTIONS */
.service { padding: 100px 10%; }
.container { max-width: 1100px; margin: 0 auto; }
h2 { font-size: 2.5rem; color: var(--red); margin-bottom: 30px; border-left: 5px solid var(--red); padding-left: 15px; }

/* --- RRADHITJA PERFEKTE E FOTOVE (GRID) --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* I ndan në kolona të barabarta */
    gap: 15px; /* Hapësira mes fotove */
    padding: 20px 0;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1; /* I bën të gjitha fotot katrore dhe të barabarta */
    object-fit: cover; /* Siguron që fotoja të mos shtypet, por të mbushë kutinë */
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    display: block;
}

/* --- EFEKTI HOVER (MBETET I NJËJTË POR PA PRISHUR RRADHITJEN) --- */
.gallery img:hover {
    transform: scale(1.05); 
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 2; /* Fotoja del pak sipër pa lëvizur fotot anash */
}
}
}
/* --- STILI I GALERISË ME SFOND TRANSPARENT (RREGULLUAR) --- */
.lightbox {
    display: none; /* Fshehur fillimisht */
    position: fixed;
    z-index: 20000000; /* Mbi çdo gjë tjetër, përfshirë butonin lundrues */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* NDRYSHIMI KETU: Ngjyra e zezë me transparencë 50% */
    background-color: rgba(0, 0, 0, 0.5); /* 0.5 = 50% */
    justify-content: center;
    align-items: center;
    user-select: none;
    backdrop-filter: blur(5px); /* Opsionale: Një turbullim i lehtë për dukje më profesionale */
}

/* --- STILI I GALERISË ME EFEKT TË BUTË (ZËVENDËSOJE) --- */
.lightbox {
    display: flex; /* Përdorim flex që fillimisht, por e fshehim me opacity */
    position: fixed;
    z-index: 20000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparente */
    justify-content: center;
    align-items: center;
    user-select: none;
    backdrop-filter: blur(5px);
    
    /* EFEKTI I BUTË: Fshehur fillimisht */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease; /* Kohëzgjatja e zbutjes (0.5s) */
}

/* Klasa që aktivizon shfaqjen e butë */
.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border: 2px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    
    /* EFEKTI I BUTË: Zmadhim i lehtë kur hapet */
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

/* Kur lightbox është i hapur, fotoja merr madhësinë e plotë */
.lightbox.show .lightbox-content {
    transform: scale(1);
}

/* --- ELEMENTET E TJERA MBETEN NJËSOJ --- */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 20000001;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 60px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 20000001;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover, .next-btn:hover {
    color: #ff3e3e;
}
/* ABOUT & PRODUCTS */
.about-content p { font-size: 1.1rem; color: #ccc; margin-bottom: 15px; }
.product-list {
    list-style: none;
    display: flex; /* Rreshton elementet në një vijë horizontale */
    justify-content: space-between; /* Krijon hapësirë identike mes çdo fjale */
    align-items: center;
    width: 100%; /* Shfrytëzon të gjithë gjerësinë e faqes */
    padding: 20px 0;
    gap: 10px; 
}

.product-list li {
    background: transparent !important; /* Heq sfondin */
    color: white !important;
    border: none !important; /* Heq vijat e kuqe vertikale */
    box-shadow: none !important; /* Heq hijet */
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap; /* Ndalon ndarjen e fjalëve të gjata në dy rreshta */
    font-size: 15px; 
}

/* Efekti kur i prek me gisht ose mausi kalon sipër */
.product-list li:hover {
    background: rgba(231, 67, 57, 0.1) !important; /* Një skuqje shumë e lehtë kur klikohet */
}
}

/* CONTACT */
/* Zgjerojmë rrjetën e kontaktit që të zërë më shumë vend në ekran */
.contact-grid { 
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    justify-content: center !important;
    gap: 30px; 
    max-width: 1200px; /* E rrisim nga 800px në 1200px për Browser */
    margin: 0 auto;
}

/* Rregullimi i hartës që të jetë e gjerë */
.map-container {
    width: 100% !important; /* Merr gjerësinë e plotë të max-width më sipër */
    height: 450px !important; /* Mund ta rritësh edhe lartësinë nëse dëshiron */
    border-radius: 15px;
    overflow: hidden;
}

/* Forma e emailit që të qëndrojë në të njëjtën linjë qendrore */
.contact-details {
    width: 100% !important;
    max-width: 600px; /* Forma qëndron pak më e mbledhur se harta për dukje më të mirë */
}

/* --- BUTONI LUNDRUES (RRETH I BARDHË, TELEFON I KUQ) --- */
.main-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #ffffff; /* Sfondi i bardhë */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    text-decoration: none;
    border: 1px solid #ff3e3e; /* Kornizë e kuqe e hollë */
    transition: 0.3s;
}

.
}

footer { padding: 30px; text-align: center; color: #555; }

//* --- RREGULLIMI I LOGOS (MADHËSI NORMALE) --- */
.main-logo {
    height: 110px; /* Kjo është madhësia ideale për këtë lloj logoje */
    width: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

/* --- RREGULLIMI I LOGOS PNG --- */
.main-logo {
    height: 100px; /* Madhësi e balancuar */
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    /* Kualitet i lartë për PNG */
    image-rendering: -webkit-optimize-contrast;
}

.main-logo:hover {
    transform: scale(1.05);
}

/* Navigimi që qëndron fiks lart */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    z-index: 1000;
}

/* Hapësira që faqja të mos fillojë nën logo */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px; 
}

/* --- LOGO MINIMALISTE 60PX --- */
.main-logo {
    height: 60px; /* Madhësia e re më e vogël */
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
}

/* Navigimi bëhet edhe më i hollë dhe elegant */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 5px 0; /* Padding minimal për shiritin e zi */
    z-index: 1000;
}

/* Rregullojmë pikën e ndalimit (scroll) për logon e vogël */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* E ulim që seksionet të ngjiten më lart */
}

/* Sigurohemi që ikona Hamburger të rrijë fiks në mes vertikalisht me logon 60px */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px; /* Lartësia e shiritit të zi */
    position: relative;
}

.menu-icon {
    position: absolute;
    right: 25px;
    cursor: pointer;
}

/* Ikona Hamburger që të rrijë në rregull me logon e re */
.menu-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%); /* Centron ikonën vertikalisht me logon */
    cursor: pointer;
}
}

/* Rregullimi i ikonës hamburger që të rrijë anash logos */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-icon {
    position: absolute;
    right: 20px;
    cursor: pointer;
}
}
/* --- NAV & HAMBURGER ICON --- */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 5%;
}

.menu-icon {
    position: absolute;
    right: 20px;
    width: 35px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #666; /* Ngjyra gri si në foton tuaj */
    border-radius: 3px;
    transition: 0.3s;
}

/* --- WIDGETI I MENUSË (I INTEGRUAR DHE PËRDITËSUAR) --- */

/* Gjendja kryesore (E fshehur) */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* E fshehur fillimisht në të djathtë */
    width: 20%;    /* E DETARUAR: 20% gjerësi në Desktop */
    height: 100vh;
    
    /* Sfond i zi me transparencë 80% */
    backdrop-filter: blur(10px); /* Kjo shton efektin xham i ngrirë */
    -webkit-backdrop-filter: blur(10px); /* Për iPhone/Safari */
    
    /* Efekti i turbullimit (blur) prapa menusë */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    
    z-index: 9999; /* Mbi çdo gjë tjetër */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* I centron elementet horizontalisht */
    
    /* Animacion i lëmuar nga e djathta */
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    
    /* Vija ndarëse e kuqe elegante anash menusë */
}

/* Kur menuja bëhet aktive (Aktivizohet nga JavaScript) */
.menu-overlay.active {
    right: 0; 
}

/* Kontejneri i linkeve */
.menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    width: 100%;
    padding: 0 30px;
}

/* Stilimi i linkeve kryesore (Uppercase, Bold) */
.menu-links a {
    color: white;
    font-size: 1.5rem; /* Madhësi ideale për këtë gjerësi */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.menu-links a:hover {
    color: #E74339;
    transform: scale(1.05);
}

/* Vija ndarëse e kuqe */
.menu-divider {
    border: 0; 
    border-top: 2px solid #E74339; 
    margin: 15px 0; 
    width: 60%; 
    opacity: 0.8;
}

/* Stilimi i linkeve ligjore (Text-transform None) */
.menu-links a.sub-link {
    color: #acacac;
    text-transform: none !important;
    font-size: 1em !important;
    font-weight: 400;
}

.menu-links a.sub-link:hover {
    color: white;
}

/* Butoni X (Close) */
.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* ==========================================================
   === RREGULLIMI RESPONSIVE PËR SMARTPHONE (IPHONE/ANDRIOD) ===
   ========================================================== */
@media (max-width: 768px) {
    .menu-overlay {
        width: 65%; /* KJO e detyron menunë të hapet në 60%+ në mobile */
        border-left: none; /* Mund ta heqësh vijën në telefon nëse dëshiron */
    }

    .menu-links a {
        font-size: 1.25rem; /* Pak më i mbledhur në telefon */
    }

    .menu-divider {
        width: 80%;
    }
}
}
.social-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.social-link {
    color: #ffffff; /* Ngjyra e bardhë fillestare */
    transition: all 0.3s ease;
    display: inline-block;
}

/* Ngjyra e Instagramit kur i afrohesh */
.social-link.insta:hover {
    color: #E1306C !important;
    transform: translateY(-5px) scale(1.1);
}

/* Ngjyra e Facebook-ut kur i afrohesh */
.social-link.fb:hover {
    color: #1877F2 !important;
    transform: translateY(-5px) scale(1.1);
}/* --- IKONAT SOCIALE MAJTAS POSHTË --- */
.social-container-left {
    text-align: left !important; /* Detyron rreshtimin majtas */
    padding: 20px 5% !important;
    margin-top: 30px !important;
}

.social-container-left p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.social-icons-left {
    display: flex !important;
    justify-content: flex-start !important; /* I mbledh në fillim (majtas) */
    gap: 20px !important;
}

.social-link-new {
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.social-link-new.insta:hover {
    color: #E1306C !important;
    transform: scale(1.1);
}

.social-link-new.fb:hover {
    color: #1877F2 !important;
    transform: scale(1.1);
}
/* Rregullimi i Grupit Majtas (Sociale + Logo) */
.nav-left-group {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important; /* Hapësira mes ikonave dhe logos */
}

.nav-socials-top {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.nav-icon {
    color: #ffffff !important;
    transition: 0.3s !important;
    display: flex !important;
    align-items: center !important;
}

.nav-icon:hover {
    color: #ff3e3e !important; /* Ngjyra e kuqe kur i prek */
}

/* Sigurohemi që Logoja të mos lëvizë nga pozicioni i ri */
.logo-link {
    display: flex !important;
    align-items: center !important;
}

.main-logo {
    height: 60px !important;
    width: auto !important;
}
footer {
    width: 100%;
    padding: 30px 0;
    background-color: var(--black); /* Ose ngjyra që ke aktualisht */
    text-align: center !important; /* Kjo e vendos në mes */
    display: block !important;
}

footer p {
    color: #acacac; /* Ngjyra gri që kishit */
    font-size: 14px;
    margin: 0;
}
/* RREGULLIMI PËR PRODUKTET NË SMARTPHONE */
@media (max-width: 768px) {
    /* Ky rregull barazon madhësinë për të dy titujt */
    #produkte h2, 
    #kontakt h2, 
    .section-title-red {
        font-size: 28px !important; /* Rregulloni vlerën që të përshtatet me KONTAKT */
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        margin-bottom: 30px !important;
        text-align: left !important;
        border-left: 5px solid #ff3e3e !important;
        padding-left: 15px !important;
    }
}

    .product-list li {
        text-align: left !important;
        border-left: none !important; /* Sigurohet që nuk ka vija as në mobil */
        padding: 5px 0 !important;
    }
}

/* Optional: Ein dezenter Effekt beim Drüberfahren nur für den Text */
.product-list li:hover {
    
    background: transparent !important;
}
}

    .nav-logo-centered {
        position: static; /* Heq pozicionin fiks që e përplas me të tjerat */
        transform: none;
        order: 2; /* Vendos logon në mes */
        margin: 10px auto;
    }

    .nav-logo-centered img {
        height: 50px; /* E bën logon pak më të vogël në telefon */
    }

    .nav-social-group {
        order: 1; /* Ikonat sociale lart majtas */
    }

    .nav-label {
        display: none; /* Heq tekstin "Besuchen Sie uns" në telefon për të kursyer vend */
    }

    .menu-icon {
        order: 3; /* Menyja (tri vijat) djathtas */
    }

    /* Rregullimi i tekstit mbi video */
    .banner-content h1 {
        font-size: 28px !important; /* E bën tekstin e madh më të vogël që të mos dalë jashtë ekrani */
        padding: 0 10px;
    }
    
    .banner-content p {
        font-size: 14px !important;
    }
}
/* SFONDI I ZI PËR KONTAKTIN */
#kontakt {
    background-color: #000000 !important;
    padding: 60px 20px;
}

/* HARTA E ZEZE */
.map-container {
    background-color: #000000 !important;
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
    border: none !important;
}

.map-container iframe {
    /* Ky filtër e bën hartën të zezë */
    filter: grayscale(100%) invert(90%) contrast(120%);
    border: 0 !important;
    display: block;
}
/* 1. GALERIA 3 KOLONA */

.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 15px !important;
    background-color: #000 !important;
}
.gallery-item {
    aspect-ratio: 1/1 !important;
    overflow: hidden !important;
}
.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 2. HARTA E ZEZE DHE SFONDI */
#kontakt {
    background-color: #000000 !important;
}
.map-container {
    background-color: #000 !important;
    border: none !important;
    line-height: 0 !important;
}
.map-container iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2) !important;
}

/* 3. TEKSTI I KONTAKTIT */
.contact-info-text {
    color: white !important;
    text-align: center !important;
    margin-top: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Stilimi për Logot poshtë */
.material-logos-section {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #222; /* Një vijë e hollë ndarëse */
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.logos-container img {
    height: 40px; /* Mund ta ndryshosh sipas dëshirës */
    width: auto;
    filter: brightness(0) invert(1); /* I bën logot të bardha që të duken në sfond të zi */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logos-container img:hover {
    opacity: 1;
}

.brand-disclaimer {
    font-size: 12px;
    color: #8a8a8a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Për pajisjet mobile */
@media (max-width: 600px) {
   /* --- Seksioni i Logove të Materialeve (Responsive) --- */

.material-logos-section {
    background-color: #000; /* Sfond i zi */
    padding: 60px 20px; /* Hapësirë lart e poshtë */
    text-align: center;
    border-top: 1px solid #1a1a1a; /* Vija ndarëse diskrete */
    width: 100%;
    box-sizing: border-box;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; /* Hapësira mes logove në Desktop */
    flex-wrap: wrap; /* E rëndësishme: I kalon logot në rresht të ri nëse s'nxënë */
    max-width: 1100px;
    margin: 0 auto 30px auto; /* Centron kontejnerin dhe jep hapësirë poshtë */
    padding: 0 15px;
}

.logos-container img {
    height: 45px; /* Lartësia në Desktop */
    width: auto;
    /* Detyron ngjyrën e bardhë */
    filter: grayscale(100%) brightness(0) invert(1) !important;
    opacity: 0.8;
    transition: all 0.3s ease;
    object-fit: contain; /* Siguron që logoja mos të shtrembërohet */
}

.logos-container img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-disclaimer {
    font-size: 13px;
    color: #696969; /* Ngjyrë gri e hapur për tekstin */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
    font-family: sans-serif; /* Ose fontin që përdor faqja */
}

/* --- Rregullat specifikisht për Smartphone (Ekranet nën 768px) --- */
@media (max-width: 768px) {
    .material-logos-section {
        padding: 40px 15px; /* Pakësojmë hapësirën anësore */
    }

    .logos-container {
        gap: 30px; /* Pakësojmë hapësirën mes logove */
        justify-content: center; /* I mban në qendër edhe kur ndahen në 2 rreshta */
    }

    .logos-container img {
        height: 30px; /* Zvogëlojmë lartësinë e logove në mobile */
        max-width: 40%; /* Siguron që asnjë logo mos të jetë më e gjerë se gjysma e ekranit */
    }

    .brand-disclaimer {
        font-size: 11px; /* Teksti pak më i vogël në mobile */
        line-height: 1.5;
    }
}

/* --- Për ekranet shumë të vegjël (nën 480px) --- */
@media (max-width: 480px) {
    .logos-container {
        gap: 20px; /* Edhe më pak hapësirë */
    }
    
    .logos-container img {
        height: 25px; /* Logot akoma më të vogla që të nxënë */
    }
}
}
/* --- SEKSIONI PRODUKTE - FULL RESPONSIVE & CENTERED --- */

#produkte {
    background-color: #000000 !important;
    padding: 60px 20px;
    width: 100%;
    overflow-x: hidden; /* Ndalon lëvizjen anash të faqes */
}

/* Titulli PRODUKTE - Gjithmonë majtas me vijën e kuqe */
.section-title-red {
    color: #ff3e3e;
    font-size: clamp(24px, 5vw, 35px); /* Madhësi adaptive */
    font-weight: 800;
    margin-bottom: 50px;
    border-left: 5px solid #ff3e3e;
    padding-left: 15px;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Rrjeta e Ikonave */
.product-icons-grid {
    display: grid;
    /* Desktop: 3 kolona | Tablet: 2 kolona | Mobile: 2 kolona */
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center; /* Centron kutitë në rrjetë */
    align-items: end; /* Rreshton tekstet horizontalisht në një vijë */
}

/* Kutia e çdo ikone */
.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centron ikonën dhe tekstin fiks në mes */
    justify-content: flex-end;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
}

/* Stilimi i Ikonave */
.icon-item img {
    height: auto;
    max-height: 85px; /* Lartësia maksimale në Desktop */
    width: auto;
    max-width: 80%; /* Ndalon ikonat të dalin jashtë kutisë */
    margin-bottom: 15px;
    filter: brightness(0) invert(1) !important;
    object-fit: contain;
}

/* Teksti i kuq poshtë ikonave */
.icon-item span {
    color: #ff3e3e !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap; /* Mban tekstin në një rresht */
    letter-spacing: 0.5px;
    display: block;
}
/* --- TEKSTI POSHTË IKONAVE (MOBILE / SMARTPHONE) --- */
@media (max-width: 768px) {
    .icon-item span, .one-line-text {
        font-size: 13px !important; /* U rrit nga 10px në 12px (+20%) */
        letter-spacing: 0.5px;
    }
}

/* --- ADAPTIVITETI PËR TABLET (iPad etj.) --- */
@media (max-width: 1024px) {
    .product-icons-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolona për iPad */
        gap: 50px 30px;
    }
    
    .icon-item img {
        max-height: 75px;
    }
}

/* --- ADAPTIVITETI PËR SMARTPHONE (iPhone etj.) --- */
@media (max-width: 768px) {
    #produkte {
        padding: 40px 10px;
    }

    .section-title-red {
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .product-icons-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolona fiks në mobile */
        gap: 35px 10px;
        width: 100%;
    }

    .icon-item {
        padding: 10px 5px; /* Hapësirë e brendshme që të mos prekin anët */
    }

    .icon-item img {
        max-height: 60px; /* Madhësi ideale për smartphone */
        margin-bottom: 10px;
    }

    .icon-item span {
        font-size: 10px; /* Shkrim i lexueshëm por i mbledhur */
    }
}

/* Për telefona shumë të vegjël */
@media (max-width: 380px) {
    .product-icons-grid {
        gap: 25px 5px;
    }
    .icon-item img {
        max-height: 50px;
    }
    .icon-item span {
        font-size: 9px;
    }
}
/* --- NDRYSHIMI I SFONDIT PËR FB DHE INSTA --- */

/* I bëjmë të gjitha ikonat me ngjyrë të njëjtë si emaili (#333 ose #111) */
.btn-fb, 
.btn-insta { 
    background: #333333 !important; /* Ngjyra gri e errët si te emaili */
    background-image: none !important; /* Heqim gradientin e Instagramit */
}

/* Nëse dëshiron që të gjitha butonat (përveç telefonit) të jenë njësoj */
.sub-button.btn-fb, 
.sub-button.btn-insta, 
.sub-button.btn-mail {
    background-color: #333333 !important;
    color: white !important;
}

/* Mbajmë vetëm butonin e thirrjes (call) të kuq nëse dëshiron, ose bëje edhe atë #333 */
.btn-call { 
    background-color: #E74339 !important; 
}

/* --- QENDËRZIMI TOTAL DHE ANIMACIONI (PC & IPHONE) --- */

.logo-link {
    display: flex !important;
    justify-content: center !important; /* Qendërzon horizontalisht */
    align-items: center !important;
    height: 80px;
    width: 100%;
    text-decoration: none;
    position: relative;
}

.animation-wrapper {
    position: absolute; /* E heqim nga rrjedha normale për ta qendërzuar fiks */
    left: 50%;
    transform: translateX(-50%); /* Kjo e mban fiks në mes të ekranit */
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo-reveal-container {
    position: relative;
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    animation: revealLogoClip 14s infinite linear;
}

.main-logo-animated {
    height: 45px !important; /* Madhësia origjinale siç e kërkove */
    width: auto;
    display: block;
}

/* RAKELA VERTIKALE */
.squeegee-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    z-index: 10;
    animation: moveSqueegeePrecise 14s infinite linear;
}

.squeegee-icon {
    width: 38px; /* Madhësia e rakelës */
    height: auto;
    transform: rotate(8deg); /* Vertikale */
    display: block;
}

/* --- ANIMACIONET --- */

@keyframes revealLogoClip {
    0% { clip-path: inset(0 100% 0 0); }
    28.5% { clip-path: inset(0 0% 0 0); }
    100% { clip-path: inset(0 0% 0 0); }
}

@keyframes moveSqueegeePrecise {
    0% { left: -10px; opacity: 1; }
    28.5% { left: 100%; opacity: 1; } /* Shkon deri në fund të logos */
    32% { left: 100%; opacity: 0; }
    95% { left: -10px; opacity: 0; }
    100% { left: -10px; opacity: 0; }
}

/* RREGULLIMI SPECIFIK PËR IPHONE DHE MOBILE */
@media (max-width: 768px) {
    .logo-link {
        height: 65px;
    }
    .main-logo-animated {
        height: 45px !important; /* Madhësia origjinale për Mobile */
    }
    .squeegee-icon {
        width: 30px;
    }
    .animation-wrapper {
        left: 50%;
        transform: translateX(-50%);
    }
}