:root {
    --primary-orange: #e67e22;
    --primary-black: #1F1F1F;
    --red-banner: #d10a10;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 60px 0; }

/* --- Header --- */
header { background: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.logo-img { height: 55px; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: var(--primary-black); font-weight: bold; transition: 0.3s; }
nav ul li a:hover { color: var(--primary-orange); }
.btn-nav { background: var(--primary-orange); color: white !important; padding: 8px 15px; border-radius: 5px; }

.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--primary-orange); }

/* --- Slider --- */
.hero-slider { position: relative; width: 100%; height: 85vh; overflow: hidden; background: #000; margin-top: 75px; }
.slider-wrapper { display: flex; width: 300%; height: 100%; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.slide-item { width: 33.333%; height: 100%; background-size: cover; background-position: center; }
.slide-footer-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.75); color: white; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.slider-btn { background: rgba(255,255,255,0.1); color: white; border: 1px solid white; width: 45px; height: 45px; cursor: pointer; }

/* --- Toggle Section --- */
.toggle-header { background: #fff; padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; border: 1px solid #eee; border-radius: 8px; }
.header-left { display: flex; align-items: center; gap: 15px; font-weight: 700; color: #2c3e50; font-size: 1.2rem; }
.header-left i, #toggleIcon { color: var(--primary-orange); }
.toggle-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; background: #fff; }
.toggle-content.active { max-height: 1000px; border: 1px solid #eee; border-top: none; }
.content-inner { display: flex; flex-wrap: wrap; gap: 30px; padding: 30px; }
@media (max-width: 768px) {
    /* Rregullimi për imazhin brenda toggle */
    .content-image img {
        max-height: 250px; /* Kufizon lartësinë që të mos duket shumë e madhe */
        object-fit: cover; /* Siguron që fotoja të mos shtrembërohet */
        width: 100%;
        margin-bottom: 15px;
    }

    .content-inner {
        padding: 15px; /* Pakëson hapsirën anësore në celular */
        gap: 10px;
    }

    .content-text h3 {
        font-size: 1.3rem; /* Zvogëlon pak titullin që të rrijë në një rresht */
    }
}

/* --- Services & Projects --- */
.section-header { text-align: center; margin-bottom: 40px; }
.line { width: 60px; height: 4px; background: var(--primary-orange); margin: 10px auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card { padding: 30px; background: white; text-align: center; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-bottom: 4px solid var(--primary-orange); transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.icon { font-size: 3rem; color: var(--primary-orange); margin-bottom: 15px; }

.project-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; }
.p-item { background: #f9f9f9; padding: 15px; border-radius: 5px; font-weight: 600; }
.p-item i { color: var(--primary-orange); margin-right: 10px; }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; height: 250px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; color: white; }
.gallery-item:hover .overlay { opacity: 1; }

/* --- Service Banner (Kuq) --- */
.service-banner { background: var(--red-banner); color: white; padding: 40px; text-align: center; }
.btn-whatsapp-banner { background: white; color: var(--red-banner); padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; margin-top: 15px; }

/* --- Contact & Social --- */
.contact-box { background: var(--primary-black); color: white; padding: 40px; border-radius: 10px; text-align: center; }
.social-links { margin-top: 20px; display: flex; justify-content: center; gap: 15px; }
.social-icon { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; text-decoration: none; }
.whatsapp { background: #25d366; }
.facebook { background: #1877f2; }
.instagram { background: #e4405f; }

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Lightbox --- */
.lightbox { display: none; position: fixed; z-index: 3000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); text-align: center; padding-top: 100px; }
.lightbox-content { max-width: 80%; max-height: 80%; border: 3px solid white; }
.close-lightbox { position: absolute; top: 30px; right: 40px; color: white; font-size: 50px; cursor: pointer; }

/* --- Mobile Queries --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav { position: fixed; top: 75px; right: -100%; width: 75%; height: 100vh; background: white; transition: 0.4s; box-shadow: -2px 0 10px rgba(0,0,0,0.1); }
    nav.active { right: 0; }
    nav ul { flex-direction: column; padding: 30px; }
    nav ul li { margin: 15px 0; border-bottom: 1px solid #eee; padding-bottom: 10px; }
    .hero-slider { height: 60vh; }
    .slide-footer-overlay { flex-direction: column; padding: 15px; }
}

footer { background: #111; color: #777; text-align: center; padding: 20px; font-size: 0.9rem; }
