/* ============================ */
/*  STYLES FOR DACHABDICHTUNGEN */
/* ============================ */

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0c3850;
    color: white;
}

footer {
    padding: 10px 0;
    /* BEHET SHUMË MË I NGUSHTË */
    text-align: center;
    font-size: 14px;
    opacity: 0.85;
}


/* --- FIX HEADER POSITION --- */
/* HEADER – VERSION I UNIFIKUAR */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 46, 69, 0.60);
    /* NGJYRA E NJEJTË SI INDEX */
    backdrop-filter: blur(6px);
    /* BLUR I NJEJTË NË TË DY FAQET */
    z-index: 1000;
    /* PËR MIRËSTABILITET */
}

header img {
    height: 80px;
    filter: brightness(0) invert(1);
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    font-size: 20px;
    /* E SHTOJ KËTU QË TË JETË NJËSOJ SI INDEX */
    font-weight: 600;
    color: white;
    transition: 0.3s ease;
}

nav a:hover {
    color: #cce6ff;
    /* E PËRDORIM KËTË SEPSE DUKET MË MODERNE */
}


/* ============================ */
/*            HERO              */
/* ============================ */

.hero {
    height: 80vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.40)),
        url("../assets/CopertinaDach.jpg") no-repeat;
    background-size: cover;

    background-position: center 40%;
    /* ↑ UL FOTON POSHTË */

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}



@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h1 {
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    font-weight: 400;
    max-width: 800px;
    line-height: 1.6;
}

/* ============================ */
/*           GALLERY            */
/* ============================ */

.gallery {
    padding: 60px 6%;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    animation: galleryShow 1.2s ease forwards;
    transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

@keyframes galleryShow {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================ */
/*       IMAGE MODAL VIEW       */
/* ============================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 12px;
    animation: zoomIn 0.35s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.close:hover {
    color: #cce6ff;
}

/* ============================ */
/*     UNSERE LEISTUNGEN BOX    */
/* ============================ */

.leistungen-box {
    margin: 40px auto;
    padding: 25px 4%;
    max-width: 950px;

    background: rgba(255, 255, 255, 0.30);
    /* E bardhë 30% */
    border-radius: 18px;
    backdrop-filter: blur(6px);
    /* Efekt modern glass */
    text-align: center;
}

.leistungen-box h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: left;
}

.leistungen-grid ul {
    list-style: disc;
    font-size: 20px;
    line-height: 1.7;
}

.leistungen-grid li {
    margin-left: 18px;
}

/* ============================ */
/*        RESPONSIVE            */
/* ============================ */

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================ */
/*          KONTAKT BOX         */
/* ============================ */

.kontakt-box {
    margin-top: 110px;
    /* e afron tek faqja */
    padding: 25px 5%;
    /* ishte 40px  → më i ngushtë */
    background: rgba(16, 10, 10, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    /* ishte 40px → më kompakt */
    align-items: center;
}

/* LEFT – FORM */
.kontakt-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.kontakt-left form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kontakt-left input,
.kontakt-left textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(4px);
}

.kontakt-left textarea {
    height: 120px;
    resize: none;
}

.kontakt-left button {
    padding: 14px;
    border-radius: 12px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.kontakt-left button:hover {
    background: white;
    color: #0057b8;
}

/* CENTER – LOGO + INFO */
.kontakt-center {
    text-align: center;
}

.kontakt-logo {
    width: 320px;
    margin-bottom: 25px;
}

.kontakt-info p {
    margin: 6px 0;
    font-size: 17px;
    font-weight: 400;
    /* më e hollë se bold */
    letter-spacing: 0.4px;
    /* më elegante */
}

/* RIGHT – GOOGLE MAPS */
.kontakt-right iframe {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    margin-top: 20px;
    /* ➜ ZBRITET POSHTË */
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .kontakt-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kontakt-right iframe {
        height: 220px;
    }
}

.kontakt-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* Overlay transparent sipër hartës */
.kontakt-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    /* RREGULLO KËTU SA TRANSPARENCE DO */
    pointer-events: none;
    /* shumë e rëndësishme – që harta të klikohen normalisht */
    backdrop-filter: blur(2px);
    /* opsionale – efekt premium */
}


.kontakt-map iframe {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: 16px;
}

.footer-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0c3850;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    opacity: 0.95;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: #557485;
    text-decoration: underline;
}




/* ============================= */
/*       SCROLL REVEAL EFFECT    */
/* ============================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* vonesë për paragrafin */
.reveal.delay {
    transition-delay: 0.25s;
}


/* Rikthim i hijezimit origjinal të kontaktit tek faqa MEHR */
.kontakt-box {
    background: rgba(16, 10, 10, 0.25) !important;
    backdrop-filter: blur(12px) !important;
}

/* Rikthim i hijezimit vetëm për faqet MEHR */
.kontakt-box {
    background: rgba(16, 10, 10, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 0 !important;
}

/* Rikthe pamjen origjinale të kontaktit në faqet MEHR */
.kontakt-box {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    background: rgba(16, 10, 10, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    padding: 40px 5% !important;
}


/* ================================ */
/*   KONTAKT BOX – SI TE INDEX      */
/* ================================ */

.kontakt-center {
    background: rgba(255, 255, 255, 0.20);
    /* transparencë si te index */
    backdrop-filter: blur(10px);
    /* glass effect */
    padding: 40px 50px;
    border-radius: 18px;
    max-width: 480px;
    margin: 0 auto 40px auto;
    /* qendra + hapësirë poshtë */
    text-align: left;
}

/* Teksti brenda kutisë */
.kontakt-center p,
.kontakt-center strong {
    color: #0c3850 !important;
    /* e njëjta ngjyrë si te index */
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px;
    margin: 8px 0;
}

.kontakt-center strong {
    font-size: 24px;
    font-weight: 700;
}

/* Heq vetëm logon */
.kontakt-logo {
    display: none !important;
}

/* Forma dhe Google Maps NUK preken */


/* ================================ */
/*   KONTAKT BOX – VER. IDENTIK ME INDEX */
/* ================================ */

.kontakt-center {
    background: rgba(255, 255, 255, 0.214);
    /* transparencë e lehtë – si te index */
    backdrop-filter: blur(12px);
    /* efekt glass */
    padding: 30px 35px;
    border-radius: 18px;
    max-width: 480px;
    margin: 60px auto 45px auto;
    /* qendër + hapësirë poshtë */
    text-align: center;
    /* TEKSTI QENDROR */
}

.kontakt-center {
    padding-bottom: 15px;
    /* zvogëlon lartësinë vetëm nga poshtë */
}


/* TEKSTI – I NJËJTI SI TE INDEX */
.kontakt-center p,
.kontakt-center strong {
    color: white !important;
    /* TE BARDHË, SI TE INDEX */
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    /* font më i vogël */
    margin: 6px 0;
}

.kontakt-center strong {
    font-size: 20px !important;
    font-weight: 600 !important;
}

/* Fshi LOGON */
.kontakt-logo {
    display: none !important;
}

.kontakt-center {
    transform: translateY(-20px);
}

.kontakt-center p {
    text-align: left;
    margin-left: 0;
}





















/* ===================================== */
/*  iOS ONLY – LEISTUNGEN ANIMATION      */
/*  iPhone + ALL iPads                   */
/* ===================================== */

@media (max-width: 1024px) {

    .service-card,
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 1s ease,
            transform 1s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .service-card.show,
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
}






/* ===================================== */
/*  iOS FIX – HEADER (Leistungen Pages)  */
/* ===================================== */

@media (max-width: 1024px) {

    header .page-title,
    header .contact-title,
    header h1 {
        display: none !important;
        /* ❌ hiq “Kontakt” */
    }

    header {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }

    header::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: white;
        margin: 12px auto 0;
        opacity: 0.8;
    }
}


/* ===================================== */
/*  iOS FIX – HERO TEXT (Leistungen)     */
/* ===================================== */

@media (max-width: 1024px) {

    .service-hero,
    .hero,
    .hero-section {
        padding-top: 100px !important;
        /* mos u mbulo nga header */
        padding-bottom: 60px !important;
    }

    .service-hero h1,
    .hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        text-align: center;
        margin-bottom: 16px;
    }

    .service-hero p,
    .hero p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        text-align: center;
        padding: 0 16px;
    }
}




/* HIQE VETËM SHIRITIN E ERRËT BLU SIPËR HEADER-IT */
@media (max-width: 820px) {

    header::before,
    header::after {
        display: none !important;
        height: 0 !important;
        background: none !important;
    }
}





/* SHIRITI BLU SIPËR HEADER-IT */
header::before {
    content: "";
    position: absolute;
    top: 0;
    height: 20px;
    background: #0d2e45;
}





/* ===================================== */
/* HEADER – FORCE ULTRA THIN (LEISTUNGEN) */
/* ===================================== */

@media (max-width: 1024px) {

    header {
        height: 65px !important;
        /* 🔑 kjo e detyron */
        min-height: 48px !important;
        padding: 0 20px !important;
        /* hiq padding vertikal */
        box-sizing: border-box;
    }

    header::before {
        height: 2px !important;
    }
}



/* ===================================== */
/* LOGO – ZBRITJE PAK POSHTË (MOBILE)     */
/* ===================================== */

@media (max-width: 1024px) {

    header .logo,
    header img {
        position: relative;
        top: 3px;
        /* 🔑 ndrysho 2px – 5px sipas dëshirës */
    }
}


@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
}








/* ===================================== */
/* MODAL NAVIGATION ARROWS               */
/* ===================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    /* 🔑 iOS FIX REAL */
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}


.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.nav-arrow.prev {
    left: 20px;
}

.nav-arrow.next {
    right: 20px;
}

.nav-arrow:hover {
    opacity: 0.7;
}










/* =============================== */
/* DEFAULT – PC ONLY               */
/* =============================== */

.modal-content {
    transform: none;
}



/* ================================================= */
/* MOBILE + iPAD (ALL) – MAX 1024px                  */
/* ================================================= */

@media (max-width: 1024px) {

    /* =============================== */
    /* MODAL IMAGE                     */
    /* =============================== */

    .modal-content {
        transform: translateY(10vh);
        /* balancë për iPhone + iPad */
        max-height: 95dvh;
        max-width: 100vw;
    }


    /* =============================== */
    /* UNSERE LEISTUNGEN               */
    /* =============================== */

    .leistungen-box {
        padding: 24px 6%;
        max-width: 92%;
        border-radius: 16px;
    }

    .leistungen-box h2 {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .leistungen-grid ul {
        font-size: 17px;
        line-height: 1.6;
    }


    /* =============================== */
    /* KONTAKT                         */
    /* =============================== */

    .kontakt-box {
        padding: 32px 6%;
        gap: 24px;
    }

    .kontakt-left h2 {
        font-size: 30px;
        margin-bottom: 16px;
        text-align: center;
    }

    .kontakt-left input,
    .kontakt-left textarea {
        padding: 13px 15px;
        font-size: 15.5px;
        border-radius: 11px;
    }

    .kontakt-left textarea {
        height: 120px;
    }

    .kontakt-left button {
        padding: 13px;
        font-size: 16.5px;
        border-radius: 12px;
    }

    .kontakt-center {
        padding: 24px 22px;
        margin-top: 85px;
        /* larg butonit */
    }

    .kontakt-center p,
    .kontakt-center strong {
        font-size: 15.5px;
    }
}


/* =============================== */
/* PC ONLY – MODAL POSITION FIX    */
/* =============================== */

@media (min-width: 1025px) {
    .modal-content {
        transform: translateY(6vh);
    }
}


/* =============================== */
/* PC ONLY – BIGGER MODAL IMAGE    */
/* =============================== */

@media (min-width: 1025px) {
    .modal-content {
        max-width: 95vw;
        /* 🔥 më e gjerë */
        max-height: 90vh;
        /* 🔥 më e lartë */
        transform: translateY(6vh);
        /* pozicion i bukur */
    }
}



/* =============================== */
/* FOOTER – iPHONE                 */
/* =============================== */

@media (max-width: 600px) {

    .footer-mini {
        flex-direction: column;
        gap: 8px;
        padding: 16px 14px;
        text-align: center;
        font-size: 14px;
    }

    .footer-left,
    .footer-right {
        line-height: 1.4;
    }
}


/* =============================== */
/* FOOTER – iPHONE + iPAD          */
/* =============================== */

@media (max-width: 1024px) {

    .footer-mini {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 👈 CENTER horizontal */
        justify-content: center;
        gap: 10px;
        padding: 18px 16px;
        text-align: center;
        /* 👈 CENTER tekst */
        font-size: 14px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
        /* 👈 DETYRON center */
        line-height: 1.5;
    }

    .footer-right a {
        display: inline-block;
        margin: 0 4px;
    }
}



/* =============================== */
/* MOBILE – LEISTUNGEN INSIDE MENU */
/* =============================== */

@media (max-width: 1024px) {

    /* fsheh dropdown fillimisht */
    nav .dropdown-menu {
        display: none;
        position: static;
        background: none;
        padding: 0;
        margin-top: 10px;
    }

    /* kur hapet */
    nav .dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* linket e nën-menusë */
    nav .dropdown-menu a {
        font-size: 20px;
        font-weight: 400;
        opacity: 0.85;
    }

    /* shigjeta */
    nav .dropdown>a {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

/* FIX – CENTER & STYLE LEISTUNGEN LINK */
@media (max-width: 1024px) {

    header nav .dropdown>a {
        font-size: 26px;
        font-weight: 600;
        color: #fff;
        text-align: center;
    }

    header nav li {
        text-align: center;
    }
}


/* =============================== */
/* FIX FINAL – MOBILE MENU ITEMS   */
/* =============================== */

@media (max-width: 1024px) {

    header nav ul {
        width: 100%;
        align-items: center;
    }

    header nav ul li {
        width: 100%;
        text-align: center;
    }

    header nav ul li a {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* FIX SPECIFIK PËR LEISTUNGEN */
    header nav .dropdown>a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 26px;
        font-weight: 600;
        color: #fff;
    }
}


/* ============================ */
/*  STYLES FOR DACHABDICHTUNGEN */
/* ============================ */

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0c3850;
    color: white;
}

footer {
    padding: 10px 0;
    /* BEHET SHUMË MË I NGUSHTË */
    text-align: center;
    font-size: 14px;
    opacity: 0.85;
}


/* --- FIX HEADER POSITION --- */
/* HEADER – VERSION I UNIFIKUAR */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 46, 69, 0.60);
    /* NGJYRA E NJEJTË SI INDEX */
    backdrop-filter: blur(6px);
    /* BLUR I NJEJTË NË TË DY FAQET */
    z-index: 1000;
    /* PËR MIRËSTABILITET */
}

header img {
    height: 80px;
    filter: brightness(0) invert(1);
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    font-size: 20px;
    /* E SHTOJ KËTU QË TË JETË NJËSOJ SI INDEX */
    font-weight: 600;
    color: white;
    transition: 0.3s ease;
}

nav a:hover {
    color: #cce6ff;
    /* E PËRDORIM KËTË SEPSE DUKET MË MODERNE */
}


/* ============================ */
/*            HERO              */
/* ============================ */

.hero {
    height: 80vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.40)),
        url("../assets/CopertinaDach.jpg") no-repeat;
    background-size: cover;

    background-position: center 40%;
    /* ↑ UL FOTON POSHTË */

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}



@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h1 {
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    font-weight: 400;
    max-width: 800px;
    line-height: 1.6;
}

/* ============================ */
/*           GALLERY            */
/* ============================ */

.gallery {
    padding: 60px 6%;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    animation: galleryShow 1.2s ease forwards;
    transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

@keyframes galleryShow {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================ */
/*       IMAGE MODAL VIEW       */
/* ============================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 12px;
    animation: zoomIn 0.35s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.close:hover {
    color: #cce6ff;
}

/* ============================ */
/*     UNSERE LEISTUNGEN BOX    */
/* ============================ */

.leistungen-box {
    margin: 40px auto;
    padding: 25px 4%;
    max-width: 950px;

    background: rgba(255, 255, 255, 0.30);
    /* E bardhë 30% */
    border-radius: 18px;
    backdrop-filter: blur(6px);
    /* Efekt modern glass */
    text-align: center;
}

.leistungen-box h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: left;
}

.leistungen-grid ul {
    list-style: disc;
    font-size: 20px;
    line-height: 1.7;
}

.leistungen-grid li {
    margin-left: 18px;
}

/* ============================ */
/*        RESPONSIVE            */
/* ============================ */

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================ */
/*          KONTAKT BOX         */
/* ============================ */

.kontakt-box {
    margin-top: 110px;
    /* e afron tek faqja */
    padding: 25px 5%;
    /* ishte 40px  → më i ngushtë */
    background: rgba(16, 10, 10, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    /* ishte 40px → më kompakt */
    align-items: center;
}

/* LEFT – FORM */
.kontakt-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.kontakt-left form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kontakt-left input,
.kontakt-left textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(4px);
}

.kontakt-left textarea {
    height: 120px;
    resize: none;
}

.kontakt-left button {
    padding: 14px;
    border-radius: 12px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.kontakt-left button:hover {
    background: white;
    color: #0057b8;
}

/* CENTER – LOGO + INFO */
.kontakt-center {
    text-align: center;
}

.kontakt-logo {
    width: 320px;
    margin-bottom: 25px;
}

.kontakt-info p {
    margin: 6px 0;
    font-size: 17px;
    font-weight: 400;
    /* më e hollë se bold */
    letter-spacing: 0.4px;
    /* më elegante */
}

/* RIGHT – GOOGLE MAPS */
.kontakt-right iframe {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    margin-top: 20px;
    /* ➜ ZBRITET POSHTË */
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .kontakt-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kontakt-right iframe {
        height: 220px;
    }
}

.kontakt-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* Overlay transparent sipër hartës */
.kontakt-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    /* RREGULLO KËTU SA TRANSPARENCE DO */
    pointer-events: none;
    /* shumë e rëndësishme – që harta të klikohen normalisht */
    backdrop-filter: blur(2px);
    /* opsionale – efekt premium */
}


.kontakt-map iframe {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: 16px;
}

.footer-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0c3850;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    opacity: 0.95;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: #557485;
    text-decoration: underline;
}




/* ============================= */
/*       SCROLL REVEAL EFFECT    */
/* ============================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* vonesë për paragrafin */
.reveal.delay {
    transition-delay: 0.25s;
}


/* Rikthim i hijezimit origjinal të kontaktit tek faqa MEHR */
.kontakt-box {
    background: rgba(16, 10, 10, 0.25) !important;
    backdrop-filter: blur(12px) !important;
}

/* Rikthim i hijezimit vetëm për faqet MEHR */
.kontakt-box {
    background: rgba(16, 10, 10, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 0 !important;
}

/* Rikthe pamjen origjinale të kontaktit në faqet MEHR */
.kontakt-box {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    background: rgba(16, 10, 10, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    padding: 40px 5% !important;
}


/* ================================ */
/*   KONTAKT BOX – SI TE INDEX      */
/* ================================ */

.kontakt-center {
    background: rgba(255, 255, 255, 0.20);
    /* transparencë si te index */
    backdrop-filter: blur(10px);
    /* glass effect */
    padding: 40px 50px;
    border-radius: 18px;
    max-width: 480px;
    margin: 0 auto 40px auto;
    /* qendra + hapësirë poshtë */
    text-align: left;
}

/* Teksti brenda kutisë */
.kontakt-center p,
.kontakt-center strong {
    color: #0c3850 !important;
    /* e njëjta ngjyrë si te index */
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px;
    margin: 8px 0;
}

.kontakt-center strong {
    font-size: 24px;
    font-weight: 700;
}

/* Heq vetëm logon */
.kontakt-logo {
    display: none !important;
}

/* Forma dhe Google Maps NUK preken */


/* ================================ */
/*   KONTAKT BOX – VER. IDENTIK ME INDEX */
/* ================================ */

.kontakt-center {
    background: rgba(255, 255, 255, 0.214);
    /* transparencë e lehtë – si te index */
    backdrop-filter: blur(12px);
    /* efekt glass */
    padding: 30px 35px;
    border-radius: 18px;
    max-width: 480px;
    margin: 60px auto 45px auto;
    /* qendër + hapësirë poshtë */
    text-align: center;
    /* TEKSTI QENDROR */
}

.kontakt-center {
    padding-bottom: 15px;
    /* zvogëlon lartësinë vetëm nga poshtë */
}


/* TEKSTI – I NJËJTI SI TE INDEX */
.kontakt-center p,
.kontakt-center strong {
    color: white !important;
    /* TE BARDHË, SI TE INDEX */
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    /* font më i vogël */
    margin: 6px 0;
}

.kontakt-center strong {
    font-size: 20px !important;
    font-weight: 600 !important;
}

/* Fshi LOGON */
.kontakt-logo {
    display: none !important;
}

.kontakt-center {
    transform: translateY(-20px);
}

.kontakt-center p {
    text-align: left;
    margin-left: 0;
}





















/* ===================================== */
/*  iOS ONLY – LEISTUNGEN ANIMATION      */
/*  iPhone + ALL iPads                   */
/* ===================================== */

@media (max-width: 1024px) {

    .service-card,
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 1s ease,
            transform 1s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .service-card.show,
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
}






/* ===================================== */
/*  iOS FIX – HEADER (Leistungen Pages)  */
/* ===================================== */

@media (max-width: 1024px) {

    header .page-title,
    header .contact-title,
    header h1 {
        display: none !important;
        /* ❌ hiq “Kontakt” */
    }

    header {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }

    header::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: white;
        margin: 12px auto 0;
        opacity: 0.8;
    }
}


/* ===================================== */
/*  iOS FIX – HERO TEXT (Leistungen)     */
/* ===================================== */

@media (max-width: 1024px) {

    .service-hero,
    .hero,
    .hero-section {
        padding-top: 100px !important;
        /* mos u mbulo nga header */
        padding-bottom: 60px !important;
    }

    .service-hero h1,
    .hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        text-align: center;
        margin-bottom: 16px;
    }

    .service-hero p,
    .hero p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        text-align: center;
        padding: 0 16px;
    }
}




/* HIQE VETËM SHIRITIN E ERRËT BLU SIPËR HEADER-IT */
@media (max-width: 820px) {

    header::before,
    header::after {
        display: none !important;
        height: 0 !important;
        background: none !important;
    }
}





/* SHIRITI BLU SIPËR HEADER-IT */
header::before {
    content: "";
    position: absolute;
    top: 0;
    height: 20px;
    background: #0d2e45;
}





/* ===================================== */
/* HEADER – FORCE ULTRA THIN (LEISTUNGEN) */
/* ===================================== */

@media (max-width: 1024px) {

    header {
        height: 65px !important;
        /* 🔑 kjo e detyron */
        min-height: 48px !important;
        padding: 0 20px !important;
        /* hiq padding vertikal */
        box-sizing: border-box;
    }

    header::before {
        height: 2px !important;
    }
}



/* ===================================== */
/* LOGO – ZBRITJE PAK POSHTË (MOBILE)     */
/* ===================================== */

@media (max-width: 1024px) {

    header .logo,
    header img {
        position: relative;
        top: 3px;
        /* 🔑 ndrysho 2px – 5px sipas dëshirës */
    }
}


@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
}








/* ===================================== */
/* MODAL NAVIGATION ARROWS               */
/* ===================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    /* 🔑 iOS FIX REAL */
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}


.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.nav-arrow.prev {
    left: 20px;
}

.nav-arrow.next {
    right: 20px;
}

.nav-arrow:hover {
    opacity: 0.7;
}










/* =============================== */
/* DEFAULT – PC ONLY               */
/* =============================== */

.modal-content {
    transform: none;
}



/* ================================================= */
/* MOBILE + iPAD (ALL) – MAX 1024px                  */
/* ================================================= */

@media (max-width: 1024px) {

    /* =============================== */
    /* MODAL IMAGE                     */
    /* =============================== */

    .modal-content {
        transform: translateY(10vh);
        /* balancë për iPhone + iPad */
        max-height: 95dvh;
        max-width: 100vw;
    }


    /* =============================== */
    /* UNSERE LEISTUNGEN               */
    /* =============================== */

    .leistungen-box {
        padding: 24px 6%;
        max-width: 92%;
        border-radius: 16px;
    }

    .leistungen-box h2 {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .leistungen-grid ul {
        font-size: 17px;
        line-height: 1.6;
    }


    /* =============================== */
    /* KONTAKT                         */
    /* =============================== */

    .kontakt-box {
        padding: 32px 6%;
        gap: 24px;
    }

    .kontakt-left h2 {
        font-size: 30px;
        margin-bottom: 16px;
        text-align: center;
    }

    .kontakt-left input,
    .kontakt-left textarea {
        padding: 13px 15px;
        font-size: 15.5px;
        border-radius: 11px;
    }

    .kontakt-left textarea {
        height: 120px;
    }

    .kontakt-left button {
        padding: 13px;
        font-size: 16.5px;
        border-radius: 12px;
    }

    .kontakt-center {
        padding: 24px 22px;
        margin-top: 85px;
        /* larg butonit */
    }

    .kontakt-center p,
    .kontakt-center strong {
        font-size: 15.5px;
    }
}


/* =============================== */
/* PC ONLY – MODAL POSITION FIX    */
/* =============================== */

@media (min-width: 1025px) {
    .modal-content {
        transform: translateY(6vh);
    }
}


/* =============================== */
/* PC ONLY – BIGGER MODAL IMAGE    */
/* =============================== */

@media (min-width: 1025px) {
    .modal-content {
        max-width: 95vw;
        /* 🔥 më e gjerë */
        max-height: 90vh;
        /* 🔥 më e lartë */
        transform: translateY(6vh);
        /* pozicion i bukur */
    }
}



/* =============================== */
/* FOOTER – iPHONE                 */
/* =============================== */

@media (max-width: 600px) {

    .footer-mini {
        flex-direction: column;
        gap: 8px;
        padding: 16px 14px;
        text-align: center;
        font-size: 14px;
    }

    .footer-left,
    .footer-right {
        line-height: 1.4;
    }
}


/* =============================== */
/* FOOTER – iPHONE + iPAD          */
/* =============================== */

@media (max-width: 1024px) {

    .footer-mini {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 👈 CENTER horizontal */
        justify-content: center;
        gap: 10px;
        padding: 18px 16px;
        text-align: center;
        /* 👈 CENTER tekst */
        font-size: 14px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
        /* 👈 DETYRON center */
        line-height: 1.5;
    }

    .footer-right a {
        display: inline-block;
        margin: 0 4px;
    }
}



/* =============================== */
/* MOBILE – LEISTUNGEN INSIDE MENU */
/* =============================== */

@media (max-width: 1024px) {

    /* fsheh dropdown fillimisht */
    nav .dropdown-menu {
        display: none;
        position: static;
        background: none;
        padding: 0;
        margin-top: 10px;
    }

    /* kur hapet */
    nav .dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* linket e nën-menusë */
    nav .dropdown-menu a {
        font-size: 20px;
        font-weight: 400;
        opacity: 0.85;
    }

    /* shigjeta */
    nav .dropdown>a {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

/* FIX – CENTER & STYLE LEISTUNGEN LINK */
@media (max-width: 1024px) {

    header nav .dropdown>a {
        font-size: 26px;
        font-weight: 600;
        color: #fff;
        text-align: center;
    }

    header nav li {
        text-align: center;
    }
}


/* =============================== */
/* FIX FINAL – MOBILE MENU ITEMS   */
/* =============================== */

@media (max-width: 1024px) {

    header nav ul {
        width: 100%;
        align-items: center;
    }

    header nav ul li {
        width: 100%;
        text-align: center;
    }

    header nav ul li a {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* FIX SPECIFIK PËR LEISTUNGEN */
    header nav .dropdown>a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 26px;
        font-weight: 600;
        color: #fff;
    }
}


/* ===================================== */
/* FLÜSSIG – FONT FIX iPHONE + iPAD     */
/* ===================================== */

@media (max-width: 1024px) {

    /* TITULLI */
    .hero h1,
    .hero-title {
        font-size: clamp(26px, 6vw, 38px);
        line-height: 1.2;
        margin-bottom: 16px;
        text-align: center;
    }

    /* TEKSTI */
    .hero p,
    .hero-text {
        font-size: clamp(14.5px, 4.2vw, 18px);
        line-height: 1.55;
        max-width: 92%;
        margin: 0 auto;
        text-align: center;
    }
}



/* ===================================== */
/* FLÜSSIG – HERO SPACING FIX MOBILE    */
/* ===================================== */

@media (max-width: 1024px) {

    .hero,
    .service-hero {
        padding-top: 110px;
        /* 🔑 larg nga header */
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: clamp(24px, 6vw, 34px) !important;
        line-height: 1.25 !important;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: clamp(14px, 4vw, 17px) !important;
        line-height: 1.6 !important;
        max-width: 92%;
        margin: 0 auto;
    }
}



/* ===================================== */
/* LEISTUNGEN – TITLE SIZE FIX           */
/* ===================================== */

.leistungen-hero h1,
.page-title,
.hero-title {
    font-size: 20px;
}

/* MOBILE + iPAD */
@media (max-width: 1024px) {

    .leistungen-hero h1,
    .page-title,
    .hero-title {
        font-size: 20px;
    }
}

/* ===============================
   GOOGLE MAPS – PC vs MOBILE
   =============================== */

/* ===============================
   PC & Laptop
   =============================== */
@media (min-width: 1025px) {

    /* Shfaq maps brenda kontaktit */
    .kontakt-right {
        display: block;
    }

    /* Fshih maps-section */
    .maps-section {
        display: none;
    }
}

/* ===============================
   iPhone & iPad
   =============================== */
@media (max-width: 1024px) {

    /* Fshih maps brenda kontaktit */
    .kontakt-right {
        display: none;
    }

    /* Shfaq maps-section */
    .maps-section {
        display: block;
    }

    .maps-section iframe {
        width: 100%;
        max-width: 500px;
        height: 200px;
        margin: 0 auto;
        display: block;
        border: 0;
        border-radius: 18px;
        pointer-events: auto;
        touch-action: pan-x pan-y;
    }
}


