/* KONFIGURIMI BAZË */
:root {
    --red: #e31e24;
    --dark: #0a0a0a;
    --gray: #161616;
}

* { margin:0; padding:0; box-sizing:border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background: var(--dark); color: white; scroll-behavior: smooth; overflow-x: hidden; }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* HEADER DHE MENYJA LART */
header { background: #000; padding: 15px 0; position: sticky; top:0; z-index: 2000; border-bottom: 2px solid var(--red); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 50px; display: block; }
.desktop-nav { display: none; } /* Fshihet në celular */

/* BUTONI I KUQ ALARM 24/7 (Fiksimi i ngjyrës blu) */
.btn-alarm { 
    background: var(--red) !important; 
    color: white !important; 
    padding: 10px 20px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

/* HERO SLIDER (12 Fotot) */
.hero-slider { height: 85vh; position: relative; display: flex; align-items: center; text-align: center; }
.slide { position: absolute; top:0; left:0; width:100%; height:100%; background-size:cover; background-position:center; opacity:0; transition: 1s ease-in-out; z-index:-1; }
.slide.active { opacity:1; }

.slide1 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero1.jpeg'); }
.slide2 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero2.jpeg'); }
.slide3 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero3.jpeg'); }
.slide4 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero4.jpeg'); }
.slide5 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero5.jpeg'); }
.slide6 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero6.jpeg'); }
.slide7 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero7.jpeg'); }
.slide8 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero8.jpeg'); }
.slide9 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero9.jpeg'); }
.slide10 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero10.jpeg'); }
.slide11 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero11.jpeg'); }
.slide12 { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero12.jpeg'); }

.hero-content { width: 100%; }
.badge { background: var(--red); padding: 5px 15px; border-radius: 3px; font-weight: bold; text-transform: uppercase; font-size: 0.8rem; }
.hero-content h1 { font-size: 3rem; margin: 20px 0; }
.hero-content h1 span { color: var(--red); }
.hero-content p { font-size: 1.1rem; color: #ddd; margin-bottom: 30px; }
.btn-main { background: var(--red); color: white; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 5px; display: inline-block; font-size: 1.1rem; }

/* KATEGORITË DHE PËRMBAJTJA E GJATË */
.category-sec { padding: 80px 0; border-bottom: 1px solid #1a1a1a; }
.bg-darker { background: #050505; }
.sec-header h2 { font-size: 2.5rem; display: flex; align-items: center; gap: 15px; }
.sec-header h2 span { color: var(--red); }
.sec-desc { color: #aaa; margin: 15px 0 30px 0; font-size: 1.1rem; max-width: 800px; }

/* IKONA E KOPJIMIT TË LINKUT (Zëvendëson tekstin e shëmtuar) */
.btn-copy-icon { 
    background: transparent; 
    border: none; 
    color: #555; 
    font-size: 1.5rem; 
    cursor: pointer; 
    transition: 0.3s;
}
.btn-copy-icon:hover { color: var(--red); transform: scale(1.1); }

/* GRIDI I FOTOVE */
.img-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.img-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; border: 2px solid #222; transition: 0.3s; }
.img-grid img:hover { border-color: var(--red); }

/* FLOATING BUTTONS */
.floating-contact { position: fixed; bottom: 20px; right: 20px; z-index: 1000; display: flex; flex-direction: column; gap: 15px; }
.fab-wa { background: #25d366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); text-decoration: none; }
.fab-call { background: var(--red); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 25px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); text-decoration: none; }

/* FOOTER */
footer { padding: 60px 0 20px; background: black; border-top: 2px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; text-align: center; }
.logo-f { font-size: 2rem; font-weight: bold; margin-bottom: 15px; }
.logo-f span { color: var(--red); }
.f-contact h3 { color: var(--red); margin-bottom: 15px; }
.socials { margin-top: 20px; }
.socials a { color: white; font-size: 1.8rem; margin: 0 10px; transition: 0.3s; }
.socials a:hover { color: var(--red); }

/* ANIMACIONI I BUTONIT */
@keyframes pulse { 
    0% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7); } 
    70% { box-shadow: 0 0 0 15px rgba(227, 30, 36, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0); } 
}

/* DESKTOP OPTIMIZATION */
@media (min-width: 768px) {
    .desktop-nav { display: block; }
    .desktop-nav ul { display: flex; list-style: none; }
    .desktop-nav a { color: white; text-decoration: none; padding: 0 20px; font-weight: bold; transition: 0.3s; }
    .desktop-nav a:hover { color: var(--red); }
    .hero-content h1 { font-size: 4.5rem; }
    .img-grid { grid-template-columns: repeat(4, 1fr); }
    .img-grid img { height: 250px; }
    .footer-grid { grid-template-columns: 1fr 1fr; text-align: left; }
    .f-about { text-align: left; }
    .socials a { margin: 0 15px 0 0; }
}