@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --main-color: #0b4669;
    /* Ngjyra kryesore e gjithë faqes */
}


:root {
    --brand-blue: #0057b8;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: white;
}

/* 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 */
}


/* SLIDER (Faqja 1 - nuk preket efekti) */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: white;
}

.slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    animation: fadeSlide 16s infinite ease-in-out;
}


.slider .slide:nth-child(1) {
    animation-delay: 0s;
}

.slider .slide:nth-child(2) {
    animation-delay: 4s;
}

.slider .slide:nth-child(3) {
    animation-delay: 8s;
}

.slider .slide:nth-child(4) {
    animation-delay: 12s;
}


@keyframes fadeSlide {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* Disable parallax on mobile for compatibility */
@media (max-width: 820px) {
    .slider .slide {
        background-attachment: scroll !important;
    }
}


.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    opacity: 0.7;
    pointer-events: none;
    animation: zoomLogo 6s ease-out forwards;
}

@keyframes zoomLogo {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 600px;
        opacity: 1;
    }
}


/* ===== ÜBER UNS – FINAL & SAFE VERSION ===== */

.section-about {
    padding: 120px 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    overflow: hidden;
}

/* Teksti – vjen nga e majta */
.uber-text {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.uber-text.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Foto – vjen nga e djathta + container relativ për katrorin */
.uber-img {
    position: relative;
    /* 👈 KY mungonte, shumë i rëndësishëm */
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.uber-img.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 3D Foto – efekt më i butë dhe i plotë */
.uber-img img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease-out;
    transform-style: preserve-3d;
}

.uber-img img:hover {
    transform: perspective(1200px) rotateX(6deg) rotateY(-6deg) scale(1.05);
}


/* Katrori mbrapa fotos */
.blue-square {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: #0b4669;
    border-radius: 12px;
    z-index: 1;
    /* poshtë fotos */
}


/* ============================= */
/* ÜBER UNS – ANIMATION SLOW     */
/* ============================= */

.uber-text.animate,
.uber-img.animate {
    animation-duration: 1.6s;
    animation-timing-function: ease-out;
}

/* ============================= */
/* BORDER ANIMATION RRETH FOTOS  */
/* ============================= */

.uber-img-container {
    position: relative;
    display: inline-block;
}

.photo-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #0057b8;
    border-radius: 12px;
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    transition: opacity .3s;
}


@keyframes drawBorder {
    0% {
        opacity: 1;
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }

    25% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
    }

    75% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* ============================= */
/* ÜBER UNS – TYPOGRAPHY UPGRADE */
/* ============================= */

.section-about .uber-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 62px;
    font-weight: 800;
    color: #000000e2;
    /* NGJYRA E KALTËR */
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.section-about .uber-text p {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    /* NGJYRA E KALTËR */
    line-height: 1.55;
    max-width: 550px;
    margin-bottom: 25px;
}

/* ngritje e tekstit lart për balancë me foton */
.section-about .uber-text {
    margin-top: -40px;
}

.section-about {
    padding-top: 140px;
}


.uber-text.animate .signature {
    opacity: 1;
    transform: translateY(0);
}




/* ===== LEISTUNGEN SECTION (Page 3) ===== */
.section-services {
    min-height: 100vh;
    position: relative;

    background-image: url('./assets/scscs.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 50px;

    overflow: hidden;
}

@media (min-width: 1025px) {
    .section-services {
        background-attachment: fixed;
    }
}


.section-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(215, 215, 215, 0.40);
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
}

/* TITULLI LEISTUNGEN me animacion që përsëritet */
.title-leistungen {
    font-size: 53px;
    /* zvogëlimi i fontit */
    font-weight: 700;
    color: #0b4669;
    opacity: 0;
    animation: fadeZoomLeist 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    margin-bottom: 18px;
}

@keyframes fadeZoomLeist {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* GRID: 3 + 3, cards të vogla siç i ke */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2cm;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 0.5cm;
}

/* CARDS: 3 vijnë nga majt, 3 nga djatht dhe rianimojnë çdo scroll */
.service-card {
    background: white;
    color: #111;
    border-radius: 20px;
    padding: 16px;
    width: 340px;
    height: 295px;
    opacity: 0;
    transition: transform 0.45s ease-out, opacity 1.2s ease-out;
    will-change: transform, opacity;
    position: relative;
}


/* Ngritja e rreshtit të parë (3 kartat e para) */
.services-grid .service-card:nth-child(-n+3) {
    margin-top: -160px;
    /* NDRYSHO VLERËN sipas dëshirës */
}



@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-140px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(140px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}




/* Observer class që e reseton animacionin */
.service-card.animate {
    opacity: 1 !important;
    /* HOQËM transform-in që e shkatërronte hover-in */
}

/* FOTO në cards, sipas stilit tënd */
.service-card img {
    width: 100%;
    height: 170px;
    /* FOTO MË E MADHE */
    object-fit: cover;
    border-radius: 12px;
}

/* OUTLINE hover i hollë */
.service-card:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1.6px solid var(--brand-blue);
    border-radius: 18px;
    pointer-events: none;
    animation: borderFade 0.3s ease forwards;
}

@keyframes borderFade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}


/* ===== Mehr gallery brenda card-it (nuk del jashtë, shfaqet veç me hover) ===== */
.mehr-gallery {
    display: none;
    position: absolute;
    top: 155px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
}

.service-card:hover .mehr-gallery {
    display: flex;
}

.mehr-gallery img {
    width: 72px;
    height: 46px;
    object-fit: cover;
    border-radius: 6px;
    border: 1.2px solid var(--brand-blue);
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: #0b4669;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px) translateX(200px);
    transition: opacity .9s ease-out, transform .9s ease-out;
}


.uber-text.animate .signature {
    opacity: 1;
    transform: translateY(0) translateX(200px);
}


.photo-wrapper {
    position: relative;
    display: inline-block;
}

/* ================================================= */
/*  VIJË E HOLLË E BARDHË, ME ANIMACION + SHINE       */
/* ================================================= */

.photo-wrapper {
    position: relative;
    display: inline-block;
}

/* Fotoja sipër efektit */
.photo-wrapper img {
    position: relative;
    z-index: 5;
    border-radius: 12px;
}

/* VIJA E BARDHË — brenda fotos, elegante dhe e dukshme */
.photo-wrapper::before {
    content: "";
    position: absolute;

    inset: 12px;
    /* futet brenda fotos */
    border: 3px solid #ffffff;
    /* vija e bardhë */
    border-radius: 12px;

    opacity: 0;
    clip-path: inset(0 100% 0 0);
    /* animacion gradual */

    z-index: 6;
    pointer-events: none;

    filter: drop-shadow(0 0 5px #ffffff);
    /* glow i bardhë i butë */
    transition: opacity .4s ease-out;
}

/* fillimi i animacionit të vijës */
.photo-wrapper.animate::before {
    opacity: 1;
    animation: borderDraw 3.5s ease-out forwards;
}

/* SHINE — i bardhë, por shumë i butë dhe vetëm në vijë */
.photo-wrapper::after {
    content: "";
    position: absolute;

    inset: 12px;
    /* shine ndjek fiks vijën */
    border-radius: 20px;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            /* shine i butë, elegant */
            transparent);

    background-size: 250% 250%;
    opacity: 0;

    filter: none;
    pointer-events: none;
    z-index: 7;
}

/* Shine i ngadaltë dhe i butë */
.photo-wrapper.animate::after {
    opacity: 1;
    animation: shineMove 6s linear infinite;
}

/* Animacionet */
@keyframes borderDraw {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    25% {
        clip-path: inset(0 0 100% 0);
    }

    50% {
        clip-path: inset(0 0 0 100%);
    }

    75% {
        clip-path: inset(100% 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes shineMove {
    0% {
        background-position: 200% 50%;
    }

    100% {
        background-position: -200% 50%;
    }
}



.service-card {
    position: relative;
    padding-bottom: 90px;
    transition: transform 0.45s cubic-bezier(0.25, 0.75, 0.30, 1),
        box-shadow 0.45s ease;
    transform-origin: center;
}



.mehr-box {
    position: relative;
    width: 100%;
    height: 0;
    /* e mban butonin pa e prishur layoutin */
}

/* Hover efekti i butonit */
.service-card button:hover {
    transform: translateX(-50%) scale(1.12);
    box-shadow: 0 8px 16px rgba(0, 87, 184, 0.35);
}


/* Gjendja normale e butonit */
.service-card button {
    background: white;
    color: #0b4669;
    border: 3px solid #0b4669;
    padding: 14px 40px;
    border-radius: 22px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

/* HOVER — vetëm butoni bëhet blu dhe rritet */
.service-card button:hover {
    background: #0b4669;
    /* bëhet i kaltër */
    color: white;
    /* teksti i bardhë */
    transform: translateX(-50%) scale(1.12);
    /* rritet */
    box-shadow: 0 6px 16px rgba(0, 87, 184, 0.4);
}


/* Fix for Mehr button cutting issue */
.service-card {
    overflow: visible !important;
}


/* Nuk ka më diferenza midis kartave */
.services-grid .service-card {
    margin-top: 0 !important;
}


/* Pozicion unik për të gjitha butonat Mehr */
.service-card button {
    bottom: -35px !important;
}


.btn-wrap {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 50px;
}

.btn-wrap button {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 22px;
    color: #0057b8;
    font-size: 20px;
    font-weight: 700;
    border: 3px solid #0057b8;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: .25s;
}

.btn-wrap button:hover {
    background: #0057b8;
    color: white;
    transform: scale(1.12);
}

/* SVG border anim */
.border-anim {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.border-anim rect {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-dasharray: 350;
    stroke-dashoffset: 350;
    transition: stroke-dashoffset 1.3s linear;
}

/* Aktivizohet në hover */
.btn-wrap:hover .border-anim rect {
    stroke-dashoffset: 0;
}



/* KONTEINERI RRETH BUTONIT — nuk prek asgjë */
.mehr-wrap {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    height: max-content;
    z-index: 20;
}

/* vetë butoni që ke — NUK prekët fare! */

/* KORNIZA E ANIMUAR */
.border-anim {
    position: absolute;
    inset: -8px;
    /* qëndrueshme, mbi buton por pa e lëvizur */
    border-radius: 26px;
    border: 3px solid white;

    opacity: 0;
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    transition: opacity .3s ease;
}

/* aktivizohet në hover të wrap–it */
.mehr-wrap:hover .border-anim {
    opacity: 1;
    animation: borderDrawLine 1s linear forwards;
}

@keyframes borderDrawLine {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    25% {
        clip-path: inset(0 0 100% 0);
    }

    50% {
        clip-path: inset(0 0 0 100%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}


.mehr-border {
    position: absolute;
    inset: 0;
    border: 3px solid white;
    border-radius: 22px;
    pointer-events: none;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: opacity .2s linear;
}

.mehr-wrap:hover .mehr-border {
    opacity: 1;
    animation: drawBorderSlow 1.1s linear forwards;
}

@keyframes drawBorderSlow {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    25% {
        clip-path: inset(0 0 100% 0);
    }

    50% {
        clip-path: inset(0 0 0 100%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}


/* ---- BUTONI “MEHR” — VIJË E BARDHË ME ANIMACION PREMIUM ---- */

.mehr-wrap {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    height: max-content;
    z-index: 20;
}

.mehr-wrap button {
    position: relative;
    z-index: 10;
}

.mehr-border {
    position: absolute;

    top: 36px;
    /* ishte 40px → e ngrisim pak më lart */
    left: 50%;
    transform: translateX(-50%);

    width: 155px;
    /* madhësia që po funksionon bukur tani */
    height: 52px;

    border: 2px solid #ffffff;
    border-radius: 22px;

    pointer-events: none;
    opacity: 0;

    clip-path: inset(0 100% 0 0);
    transition: opacity .3s ease-out;

    z-index: 999;
}


.mehr-wrap:hover .mehr-border {
    opacity: 1;
    animation: drawBorderSlow 1.5s linear forwards;
}

@keyframes drawBorderSlow {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    25% {
        clip-path: inset(0 0 100% 0);
    }

    50% {
        clip-path: inset(0 0 0 100%);
    }

    75% {
        clip-path: inset(100% 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

/* Pozicionimi i ri i butonit “Mehr” */
.mehr-wrap {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
}

/* Butoni brenda wrap është i qendruar dhe i rregullt */
.mehr-wrap button {
    position: relative;
    z-index: 10;
}


/* LEJON HOVER PAS ANIMACIONIT TË HYRJES */
.service-card.animate {
    transform: none !important;
    opacity: 1 !important;
}


.service-card:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45) !important;
}


/* ===== ANIMACIONI PREMIUM PA TURBULLIM ===== */
.service-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease;
}

/* === FIX: Ndalo konfliktet e animacionit të shfaqjes === */
.service-card {
    will-change: opacity, transform;
    animation-fill-mode: forwards !important;
    backface-visibility: hidden;
}

/* Kur animacioni mbaron, kartat nuk humbasin formën */
.service-card.animate {
    transform: none !important;
    opacity: 1 !important;
}


.service-card:hover {
    transform: scale(1.05);
    /* e butë, e shëndetshme, pa turbullim */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}


/* ============================ */
/*   KONTAKT – VERSION MEHR     */
/* ============================ */

.kontakt-section-index {
    position: relative;
    background-image: url('./assets/munchen-b.webp');
    background-size: 115%;
    background-position: center 160px;
    /* SHTYJE POSHTË QË TË DALË MAJA */
    /* NGRIJE FOTON LART */
    background-attachment: fixed;
}

.kontakt-section-index::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    /* overlay i madh ashtu si tek Mehr */
    z-index: 1;
}

.kontakt-box-index {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 40px 5%;
    background: rgba(16, 10, 10, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    align-items: center;
}


/* ============= FORM – identik si Mehr ============= */
.kontakt-left-index h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff !important;
    /* Bardhë e pastër */
    font-weight: 800 !important;
    /* Bold i fortë */
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    /* E rrit dukshmërinë mbi foto */
}

.kontakt-left-index input,
.kontakt-left-index textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.60);
    color: rgb(0, 0, 0);
    font-size: 16px;
}

.kontakt-left-index input:focus,
.kontakt-left-index textarea:focus {
    outline: 2px solid #0057b8 !important;
    /* Kaltër si logoja */
    outline-offset: 2px;
    /* E bën vijën më elegante */
}


.kontakt-left-index textarea {
    height: 140px;
}

.kontakt-left-index button {
    width: 70%;
    padding: 16px;
    border-radius: 14px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.kontakt-left-index button:hover {
    background: white;
    color: #003a55;
}

/* ============= CENTER – identik si Mehr ============= */
.kontakt-center-index {
    text-align: center;
}

.kontakt-center-index .kontakt-logo {
    width: 320px;
    margin-bottom: 25px;
}

/* ============= MAPS – identik si Mehr ============= */
.kontakt-right-index iframe {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    margin-top: 20px;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 900px) {
    .kontakt-box-index {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* BËJE SEKSIONIN E KONTAKTIT SUPER TË SHKURTË */
.kontakt-section-index {
    padding-top: 1px !important;
    /* ishte 10px → zvogëlim 5mm */
    padding-bottom: 10px !important;
    /* ishte 20px → zvogëlim 5mm */
    min-height: auto !important;
}

/* UL KUTINË EDHE MË POSHTË + BËJE MË KOMPATKE */
.kontakt-box-index {
    margin-top: 20px !important;
    /* shumë më afër header-it */
    padding: 20px 30px !important;
    /* ngushto hapësirën e brendshme */
    gap: 10px !important;
    /* zvogëlo distancat midis kolonave */
}

.kontakt-left-index h2 {
    margin-bottom: 10px !important;
    color: #0f425f !important;
    /* Blu e errët – ngjyra që deshe */
    font-weight: 630 !important;
}


.kontakt-left-index input,
.kontakt-left-index textarea {
    padding: 10px 14px !important;
    /* fusha më të vogla */
}

.kontakt-right-index iframe {
    height: 230px !important;
    /* më e vogël, më profesionale */
}



/* ======== RREGULLO DISTANCËN MIDIS KOLONAVE ======== */
.kontakt-box-index {
    gap: 50px !important;
    /* më shumë hapësirë si tek MEHR */
    grid-template-columns: 1.1fr 1fr 1fr !important;
}

/* ======== SHTYJE KONTAKTIN MË MAJTAS & MAPSIN MË DJATHTAS ======== */
.kontakt-left-index {
    padding-right: 20px !important;
}





.kontakt-left-index input,
.kontakt-left-index textarea {
    margin-bottom: 18px !important;
    /* shton hapësirë poshtë secilës fushë */
}

/* ============================ */
/*        FOOTER LINE           */
/* ============================ */


footer,
.footer-mini {
    background: #0c3850;
    /* Bluja e logos */
    color: white;
    text-align: center;
    padding: 10px 0;
    /* njësoj si MEHR */
    font-size: 14px;
    /* njësoj si MEHR */
    opacity: 0.95;
    margin: 0;
}

.kontakt-box-index {
    background: rgba(120, 120, 120, 0.182) !important;
    backdrop-filter: none !important;
}


.kontakt-center-index {
    position: relative;
}

.kontakt-center-index::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 85%;
    /* sa shumë hije do të ketë → mund ta ndryshojmë */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.70) 100%);
    z-index: -1;
    border-radius: 12px;
}


.kontakt-textbox {
    background: rgba(0, 0, 0, 0.30);
    /* hijë e butë */
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 20px;
}


.kontakt-textbox {
    background: rgba(255, 255, 255, 0.275);
    /* e njëjta ngjyrë si input fields */
    padding: 20px 25px;
    border-radius: 14px;
    /* e njëjtë me style të input-ave */
    color: #0f425f;
    /* tekst i bardhë që shihet bukur */
}



.kontakt-right-index iframe {
    height: 330px !important;
    /* rrit maps-in */
}

.kontakt-right-index iframe {
    pointer-events: auto !important;
}


.kontakt-right-index iframe {
    position: relative;
    z-index: 3 !important;
    pointer-events: auto !important;
}

.footer-mini {
    display: flex;
    justify-content: space-between;
    /* majtas - djathtas */
    align-items: center;
    text-align: left;
    /* që të mos qendrohet më në mes */
    padding: 10px 20px;
    /* njësoj si më parë, vetëm pak anash për estetikë */
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-right a:hover {
    text-decoration: underline;
}


/* SHTYJE KUTINË E KONTAKTIT PAK NGA E DJATHTA */
.kontakt-box-index {
    margin-right: 40px !important;
    /* provo 20–40px derisa të duket perfekt */
}

/* ZGJERO BUTONIN E KONTAKTIT SI TE FAQJA MEHR */
.kontakt-left-index button {
    width: 100% !important;
    /* e bën butonin katror të gjatë */
}


.kontakt-section-index::before {
    pointer-events: none !important;
}

.kontakt-center-index::after {
    pointer-events: none !important;
}

/* === Shtyje kontakt-box pak nga të dy anët (≈11mm) === */
.kontakt-box-index {
    margin-left: 44px !important;
    margin-right: 44px !important;
}

.kontakt-box-index {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 40px 4% !important;
    /* njësoj si tek MEHR */
}

/* === FORCO HIJEZIMIN E KONTAKTIT (FINAL, MBIVENDOS TË GJITHA) === */
.kontakt-center-index::after {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.70) 100%) !important;
}

.kontakt-textbox {
    background: rgba(255, 255, 255, 0.533) !important;
}


















/* ====================== STATS SECTION ====================== */

.stats-section {
    background-color: #0b4669;
    padding: 50px 0;
    margin-top: 0;
}


.stats-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    text-align: center;
}

.stat h3 {
    font-weight: 300;
    letter-spacing: 1px;
}

.stat p {
    font-size: 40px;
    font-weight: 700;
}


/* ====================== WHY SECTION ====================== */

.why-section {
    text-align: center;
    padding: 40px 20px 70px 20px;
}

.why-title {
    color: #073652;
    font-size: 25px;
    font-weight: bold;
}

.why-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

.qualities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 120px;
    /* më shumë hapësirë vertikale + horizontale */
    max-width: 1000px;
    margin: 20px auto;
    /* shton pak hapësirë edhe rreth gjithë bllokut */
}


.quality-box {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #073652;
    padding: 15px 25px;
    height: 30px;
    /* e bën të HOLLË kutinë */
    width: 100%;
    /* plotësisht E GJATË */
    max-width: 600px;
    /* sa e gjatë e do */
    border-radius: 6px;
    margin: auto;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (min-width: 992px) {
    .quality-box p {
        white-space: nowrap;
    }
}


.quality-box.show {
    opacity: 1;
    transform: translateY(0);
}


.checkmark-box {
    width: 48px;
    height: 48px;
    border: 2px solid #073652;
    /* border blu */
    background-color: white;
    /* sfond i bardhë fillimisht */
    color: #073652;
    /* tiki blu */
    font-size: 26px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;

    transition: background-color 0.6s ease, color 0.6s ease;
}




html {
    scroll-behavior: smooth;
}

/* Fiksim i pozicionit për shkak të header-it sticky */
section {
    scroll-margin-top: 50px;
}

.quality-box {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.quality-box.left.show {
    opacity: 1;
    transform: translate(0px, 0px);
}

.quality-box.right.show {
    opacity: 1;
    transform: translate(0px, 0px);
}

.quality-box.left {
    transform: translateX(-50px);
}

.quality-box.right {
    transform: translateX(50px);
}

.quality-box.show {
    opacity: 1;
    transform: translateX(0);
}

/* =========== Quality Boxes – Final Safe Version Only for Boxes =========== */

/* Kutitë – të gjata dhe të holla */
.quality-box {
    width: 100%;
    max-width: 750px;
    /* i bën të gjata – mund ta rrisim ose zvogëlojmë */
    height: 85px;
    /* i bën të holla dhe të barabarta */
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Tik-u – më i madh */
.checkmark-box {
    width: 48px;
    height: 48px;
    font-size: 26px;
    font-weight: bold;
    border-radius: 6px;
}

.quality-box h3 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #073652;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.quality-box p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}


.quality-box.show .checkmark-box {
    background-color: #073652;
    /* mbushet me blu */
    color: white;
    /* tiki bëhet i bardhë */
}


.quality-box:nth-child(1) {
    transition-delay: 0.1s;
}

.quality-box:nth-child(2) {
    transition-delay: 0.3s;
}

.quality-box:nth-child(3) {
    transition-delay: 0.5s;
}

.quality-box:nth-child(4) {
    transition-delay: 0.7s;
}


.checkmark-box {
    position: relative;
    overflow: hidden;
}

.checkmark-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #073652;
    transition: left 0.6s ease;
    z-index: 0;
}

.quality-box.show .checkmark-box::before {
    left: 0;
}

.checkmark-box span {
    position: relative;
    z-index: 1;
}


/* =============== TICK ANIMATION INITIAL STATE =============== */

.checkmark-box {
    width: 40px;
    height: 40px;
    background-color: white;
    /* fillimisht e bardhë */
    border: 2px solid #073652;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #073652;
    /* ✔ blu */
    font-size: 22px;
    font-weight: 700;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

/* ================== BLUE FILL ANIMATION ================== */

.checkmark-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #073652;
    width: 0%;
    height: 100%;
    transition: width 0.6s ease;
    z-index: 0;
    border-radius: 6px;
}

/* Tik-u sipër */
.checkmark-box span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

/* ================== WHEN BOX SHOWS → FILL BLUE ================== */

.quality-box.show .checkmark-box::before {
    width: 100%;
}

.quality-box.show .checkmark-box span {
    color: white;
    /* bëhet i bardh kur mbushet sfondi */
}

/* =========== STAGGERED DELAY – një nga një =========== */

.quality-box:nth-child(1) .checkmark-box::before {
    transition-delay: 0.1s;
}

.quality-box:nth-child(2) .checkmark-box::before {
    transition-delay: 0.35s;
}

.quality-box:nth-child(3) .checkmark-box::before {
    transition-delay: 0.60s;
}

.quality-box:nth-child(4) .checkmark-box::before {
    transition-delay: 0.85s;
}

/* Gjendja fillestare e tikut */
.checkmark-box {
    width: 45px;
    height: 45px;
    background-color: white;
    border: 2px solid #073652;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.checkmark-box span {
    color: #073652;
    z-index: 2;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.8s ease;
}

/* Sfondi që duhet të zgjerohet */
.checkmark-box::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    height: 100%;
    background-color: #073652;
    z-index: 1;
    transition: width 1.3s ease;
    /* NGADALË */
}

/* Aktivizohet vetëm kur kutia merr klasën .ready */
.quality-box.ready .checkmark-box::before {
    width: 100%;
}

.quality-box.ready .checkmark-box span {
    color: white;
}

/* STAGGER – vonesë për secilen kuti */
.quality-box[data-delay="0"].ready .checkmark-box::before {
    transition-delay: 1.0s;
}

.quality-box[data-delay="1"].ready .checkmark-box::before {
    transition-delay: 1.5s;
}

.quality-box[data-delay="2"].ready .checkmark-box::before {
    transition-delay: 2.0s;
}

.quality-box[data-delay="3"].ready .checkmark-box::before {
    transition-delay: 2.5s;
}



/* ===================== SHINE EFFECT WITHOUT COLOR CHANGE ===================== */

.checkmark-box {
    position: relative;
    overflow: hidden;
}

/* Efekt shkëlqimi pa ndryshuar ngjyra */
.checkmark-box::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 60%);
    transform: translateX(-150%);
    opacity: 0;
}

/* Aktivizohet VETËM kur kutia është gati */
.quality-box.ready .checkmark-box::after {
    animation: shineMove 1.2s ease forwards;
    opacity: 1;
}

@keyframes shineMove {
    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(60%);
    }
}


/* ===================== SHINE EFFECT FOR CHECKMARK ===================== */

.checkmark-box {
    position: relative;
    overflow: hidden;
}

.checkmark-box::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 60%);
    transform: translateX(-150%);
    opacity: 0;
}

.quality-box.ready .checkmark-box::after {
    animation: shineMove 1.3s ease forwards;
    opacity: 1;
}

@keyframes shineMove {
    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(60%);
    }
}

/* ===================== SHINE EFFECT ===================== */

.checkmark-box span {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Efekt shkëlqimi "shine" */
.checkmark-box::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 250%;
    height: 250%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 60%);
    transform: translateX(-150%);
    opacity: 0;
    pointer-events: none;
}

/* Kur JS aktivizon "ready", fillon efekti */
.quality-box.ready .checkmark-box span {
    opacity: 1;
    transform: scale(1);
}

@keyframes shineMove {
    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(60%);
    }
}






/* ===========================================
   FIX: Checkmark box must be same size always
   =========================================== */

.checkmark-box {
    width: 55px !important;
    height: 55px !important;
    min-width: 55px !important;
    min-height: 55px !important;

    background-color: #0e4e72;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
    /* Shumë e rëndësishme */
}

.checkmark-box span,
.checkmark-box {
    font-size: 28px;
    /* madhësia e tikut */
    color: white;
}


/* Bëji të gjitha kutitë njësoj të gjata */
.quality-box {
    width: 100%;
    max-width: 650px;
    /* rrit ose zvogëlo sipas dëshirës */
    margin-left: auto;
    margin-right: auto;
}

/* ======== RREGULLIMI PËRFUNDIMTAR I GJATËSISË SË KUTIVE ======== */

.qualities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 kolona të barabarta */
    justify-items: center;
    /* qendërzo kutitë */
    align-items: center;
    column-gap: 120px;
    row-gap: 70px;
    width: 100%;
    max-width: 1300px;
    /* rrit hapësirën totale */
    margin: 0 auto;
}

.quality-box {
    width: 100%;
    max-width: 530px;
    /* Bëji pak më të ngushta */
    min-height: 100px;
    /* Bëji pak më të ulëta */
    padding: 20px 30px;
    /* më pak hapësirë brenda kutisë */
    box-sizing: border-box;
}


/* ===== DROPDOWN MENU ===== */

.dropdown {
    position: relative;
}

.arrow {
    font-size: 10px;
    margin-left: 4px;
}

/* fshehur fillimisht */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 28px;
    /* ishte 40px — e afrojmë më lart */
    left: 0;
    background: rgba(255, 255, 255, 0.97);
    list-style: none;
    padding: 8px 0;
    border-radius: 8px;
    min-width: 210px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}



/* shfaqet kur e prek me maus */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* items e dropdown-it */
.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #0c3850;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #0c3850;
    color: white;
}

/* ========== DROPDOWN MENU – FINAL VERSION ========== */

.dropdown {
    position: relative;
}

.arrow {
    font-size: 10px;
    margin-left: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    /* nuk prish headerin */
    left: 0;
    background: rgba(255, 255, 255, 0.97);
    list-style: none;
    padding: 8px 0;
    border-radius: 8px;
    min-width: 210px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #0c3850;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #0c3850;
    color: white;
}

.kontakt-box-index {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 40px;
    padding: 40px 5%;
}

.kontakt-center-index {
    text-align: left;
}

.kontakt-textbox p {
    margin: 8px 0;
    font-size: 18px;
}

.kontakt-right-index iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: none;
}

/* ZBRIT PJESËN QË ESHTË NË MES (QELAJ DACH… + ADRESA) */
.kontakt-center-index {
    margin-top: 45px;
    /* rrit ose zvogëlo sipas dëshirës */
}

/* ZBRIT GOOGLE MAPS QË TË JETË NË TË NJEJTIN NIVEL ME FORMULARIN */
.kontakt-right-index {
    margin-top: 45px;
    /* rrit ose zvogëlo sipas dëshirës */
}



.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: #638599;
    text-decoration: underline;
}


.inhaber-line {
    display: flex;
    align-items: center;
    gap: 10px;
    /* AFROHEN shumë bukur */
    margin-top: 20px;
}

.inhaber {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0c3850;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #0c3850;
    line-height: 1;
}

/* Shfaq ballkonin në kartën e Spenglerarbeiten */
.services-grid .service-card:nth-child(4) img {
    object-position: center 15% !important;
}


/* Lëviz foto të kartës së Balkon Abdichtung-Sanierung */
.services-grid .service-card:nth-child(6) img {
    object-position: center 15% !important;
}


.service-card {
    mix-blend-mode: normal !important;
}

.service-card img {
    mix-blend-mode: normal !important;
    filter: none !important;
}

/* Rregullim për distancën e tekstit në faqet Impressum & Datenschutz */
.page-top-space {
    margin-top: 120px;
}


/* ===== Spacing për faqet Impressum & Datenschutz ===== */
.impressum-section h1,
.datenschutz-section h1 {
    margin-bottom: 30px;
}

.impressum-section h3,
.datenschutz-section h3 {
    margin-top: 35px;
    margin-bottom: 10px;
}

.impressum-section p,
.datenschutz-section p {
    margin-bottom: 18px;
    line-height: 1.6;
    /* Tekst më i lexueshëm */
}


/* ===== Për të shtyrë poshtë tekstin në Impressum & Datenschutz ===== */
.impressum-section,
.datenschutz-section {
    padding-top: 120px !important;
    /* më shumë hapësirë poshtë headerit */
}


.footer-mini {
    font-weight: 400 !important;
}

.footer-mini a {
    font-weight: 400 !important;
}


/* Dropdown hover & active styling profesionál */
header nav ul li.dropdown .dropdown-menu a {
    color: #0b2d3c !important;
    /* ngjyra normale e tekstit */
    font-weight: 600;
}

header nav ul li.dropdown .dropdown-menu a:hover,
header nav ul li.dropdown .dropdown-menu a:focus,
header nav ul li.dropdown .dropdown-menu a:active {
    background-color: #0b2d3c !important;
    /* blu e errët elegante */
    color: white !important;
    /* tekst i bardhë – duket shumë bukur */
}


/* === FIX: Afroj "Inhaber:" dhe "Jetmir Qelaj" === */

.inhaber-line {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    /* NDËRROJE KËTU për ta larguar ose afruar */
    margin-top: 10px !important;
}




.signature {
    font-family: 'Great Vibes', cursive !important;
    font-size: 54px !important;
    /* madhësia e re */
    color: #0c3850 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(2px) !important;
    /* ngjit pak lart */
    margin-top: 15x !important;

}

.inhaber {
    display: block !important;
    margin-top: 20px !important;
    /* Rrite ose zvogle për distancë */
}


.signature {
    font-size: 44px !important;
    /* ndroje numrin për ta bërë më të vogël */
    color: #000000 !important;
    /* ngjyrë e zezë */
}



/* Rrit vetëm fotografinë rrethore të pronarit */
.owner-photo {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    object-fit: cover !important;

    margin-left: 25px !important;
    /* SHTYN MË SHUMË DJATHTAS */
    margin-right: 25px !important;
}


.inhaber {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #4a4a4a !important;
    letter-spacing: 0 !important;
    margin-bottom: 3px !important;
}

.inhaber-text {
    transform: translateY(35px) !important;
}

.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}










/* Dropdown – renditje MAJTAS */
.dropdown-menu {
    text-align: left !important;
    padding: 12px 22px !important;
    /* i shton hapësirë majtas */
}

/* Elementet brenda dropdown-it */
.dropdown-menu li {
    display: block;
    text-align: left !important;
}

/* Linkët e listës */
/* Dropdown – font më i vogël dhe i barabartë */
.dropdown-menu li a {
    font-size: 18px !important;
    /* më i vogël */
    font-weight: 600;
    padding: 10px 0;
    text-align: left;
    /* renditje majtas */
    padding-left: 20px;
    /* rreshtim i bukur majtas */
}


/* Efekt hover */
.dropdown-menu li a:hover {
    background: #e9f2f7;
    color: #002d44;
}


/* Shigjeta ▼ e Leistungen – madhësi fikse */
nav ul li .arrow {
    font-size: 14px !important;
    /* e njëjtë në çdo faqe */
    margin-left: 6px;
    position: relative;
    top: -2px;
    /* e rregullon rreshtimin */
    opacity: 0.85;
}

header nav ul li a:hover {
    color: #b3c5dc;
    /* e njëjta ngjyrë si tekstet e rëndësishme */
}


/* ======================
   Correct center text under titles (Leistungen pages)
   ====================== */
.page-header-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
}

/* QENDRIMI I TITULLIT + PARAGRAFIT NË FAQET LEISTUNGEN */
.leistung-header,
.leistung-header p {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: block !important;
}


/* ===== Qendrimi i tekstit në faqet Leistungen ===== */
.hero-section,
.hero-section h1,
.hero-section p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-section p {
    max-width: 1100px !important;
    width: 100% !important;
    line-height: 1.6;
}

.cursor-circle {
    width: 12px;
    height: 12px;
    background-color: #0b4669;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0.9;
}


.section-title {
    margin-bottom: 40px;
    position: relative;
}

.subtitle {
    font-size: 20px;
    color: #0b4669;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: relative;
}


.subtitle {
    font-size: 20px;
    color: #0b4669;
    font-weight: 500;
}

.title-underline {
    width: 130px;
    height: 18px;
    margin-top: -5px;
    /* afrohet lart */
    margin-bottom: 10px;
    /* hapësirë para titullit */
}

.title-underline path {
    stroke: #0b4669;
    stroke-width: 6;
    fill: none;
    stroke-linecap: round;
}


.main-title {
    font-size: 34px !important;
}


.main-title {
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: relative;
    font-family: 'Playfair Display', serif !important;
}


.uber-text p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    line-height: 1.60;
    /* hapësira mes rreshtave, më e bukur */
    letter-spacing: 0.2px;
    /* hapësira mes shkronjave, më moderne */
    font-weight: 600;
}


.title-underline path {
    stroke: #0b4669;
    stroke-width: 6;
    /* trashësia e vijës */
    fill: none;
    stroke-linecap: round;
    /* E TRASHON FUNDIN */
}

.subtitle {
    margin-left: 14px;
    /* provo 8–14px sipas shijes */
}


.section-about {
    background: repeating-linear-gradient(135deg,
            #f9f9f9,
            #f9f9f9 3px,
            #f2f2f2 3px,
            #f2f2f2 6px);
}



.uber-text p {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #4a4a4a !important;
    font-weight: 400 !important;
}


.inhaber-line {
    display: flex;
    align-items: center;
    gap: 20px;
    /* hapësira mes fotos dhe tekstit */
    margin-top: 30px;
}



/* teksti me Inhaber + nënshkrim vertikal */
.inhaber-text {
    display: flex;
    flex-direction: column;
}

/* Inhaber më i vogël */
.inhaber {
    font-size: 18px;
    font-weight: 600;
    color: #0b4669;
    margin-bottom: 4px;
}

/* Emri si nënshkrim POSHTË */
.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: #0b4669;
    margin-top: -2px;
}




.inhaber-line {
    display: flex;
    align-items: center;
    gap: 20px;
    /* zvogëlo hapsiren mes fotos dhe tekstit */
}

.owner-photo {
    width: 200px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    transform: translateX(-29px);
    /* SHTYN MAJTAS */
}


/* RENDITJA VERTIKALE SI TEK SHEMBULLI */
.inhaber-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

/* E VEMË EMRIN LART */
.signature {
    order: 1 !important;
}

/* DHE INHABER POSHTË */
.inhaber {
    order: 2 !important;
}

















/* Seksioni i Partnerëve – i madh dhe i zgjeruar */
.partner-big {
    width: 100%;
    min-height: 600px;
    /* ↑ Rrit lartësinë */
    padding: 120px 20px;
    /* ↑ Rrit hapësirën sipër dhe poshtë */
    background-color: #f8f8f8;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* largon ngjeshjen lart */
    gap: 80px;
    /* distancë mes titullit dhe logos */
}

/* Titulli me dy vija */
.partner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    font-size: 32px;
    /* ↑ Rrit madhësinë e tekstit */
    font-weight: 700;
    color: #0b4669;
    margin: 0 auto;
    text-align: center;
    max-width: 1200px;
}

.partner-divider::before,
.partner-divider::after {
    content: "";
    flex: 1;
    height: 3px;
    background-color: #0b4669;
    max-width: 280px;
    /* ↑ vija më të gjata */
}

.partner-big-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    /* ↑ distancë më e madhe mes logos */
    flex-wrap: wrap;
}

.partner-big-logos img {
    max-width: 300px;
    /* ↑ logot më të mëdha */
    height: auto;
    transition: transform 0.3s ease;
}

.partner-big-logos img:hover {
    transform: scale(1.1);
    /* efekt i bukur hover */
}


.partner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    /* distanca midis vijës dhe tekstit */

    font-size: 26px;
    font-weight: 700;
    color: #0b4669;
    text-align: center;
    margin-bottom: 60px;
}

.partner-divider::before,
.partner-divider::after {
    content: "";
    width: 110px;
    /* ← KËTU I BËJMË VIJAT MË TË SHKURTRA */
    height: 2px;
    background-color: #0b4669;
}

.partner-divider {
    margin-top: -25px;
}


.partner-border {
    border-top: 2px solid #e4ecf0;
    /* vijë shumë e hollë, elegante */
}




/* ============================= */
/*   DISABLE ALL LEISTUNGEN ANIMATIONS  */
/* ============================= */



/* Heq animacionet left/right */
.service-card.from-left,
.service-card.from-right {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Heq animacionin e shfaqjes së titullit */
.title-leistungen {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Heq hover-efektet e tepruara nëse shkaktojnë dridhje */
.service-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25) !important;
}

/* Siguron që kartat shfaqen menjëherë */
.services-grid {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== HOVER EFFECT I RI — KARTA RRIHET MË SHUMË ===== */
.service-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform-origin: center;
}

/* Rritje shumë më e madhe për hover */
.service-card:hover {
    transform: scale(1.16) !important;
    /* nga 1.13 → 1.22, shumë më e dukshme */
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.45) !important;
    z-index: 20 !important;
    /* del mbi kartat e tjera */
}


/* Animacion elegant për titullin LEISTUNGEN */
.title-leistungen {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.title-leistungen.show {
    opacity: 1;
    transform: translateY(0);
}


/* ========================= */
/*  ANIMACION VETËM PËR TIKA */
/* ========================= */

.quality-box {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.quality-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Tik fillimisht i zbrazët */
.checkmark-box {
    position: relative;
    overflow: hidden;
    width: 55px;
    height: 55px;
    background: white;
    border: 2px solid #073652;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Filli i kaltër që shfaqet me animacion */
.checkmark-box::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    height: 100%;
    background: #073652;
    transition: width 2.2s ease;
    /* slomo por më e shpejtë */
    z-index: 1;
}

/* Tik-u mbi sfond */
.checkmark-box span {
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    color: #073652;
    transition: color 0.5s ease;
}

/* Kur kutia është “ready”, mbushet */
.quality-box.ready .checkmark-box::before {
    width: 100%;
}

.quality-box.ready .checkmark-box span {
    color: white;
}



/* ===== PARTNER LOGO BOXES ===== */

.partner-big-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    /* distanca mes kutive */
    margin-top: 40px;
}

/* Kuti elegante për çdo logo */
.brand-box {
    width: 260px;
    height: 160px;
    border: 2px solid #0a3d62;
    /* ngjyra elegante blu */
    border-radius: 14px;
    background-color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efekt i bukur hover (opsional) */
.brand-box:hover {
    transform: scale(1.07);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

/* Logo brenda kutisë */
.brand-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}











/* ==== FIX: ndalo partner-section të shtyjë kontaktin lart ===== */

.partner-divider {
    margin-top: 0 !important;
    /* heq ngritjen e rrezikshme */
}

.partner-big {
    padding-top: 60px !important;
    /* nga 120px → 60px */
    padding-bottom: 60px !important;
    min-height: 450px !important;
    /* nga 600px → 450px */
}

.kontakt-section-index {
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
}


.partner-big {
    padding-bottom: 200px !important;
    background-color: #f8f8f8 !important;
}


.kontakt-section-index {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center 150px !important;
}

.kontakt-box-index input,
.kontakt-box-index textarea {
    background: rgba(255, 255, 255, 0.766) !important;

}

.kontakt-textbox {
    background: rgba(255, 255, 255, 0.637) !important;


}


button:hover,
button:focus,
button:active {
    background-color: rgba(10, 61, 95, 0.6) !important;
    color: white !important;
    border-color: rgba(10, 61, 95, 0.9) !important;
}



























/* ========================= */
/* SLIDER RESPONSIVE FIX */
/* ========================= */

/* iPad */
@media (min-width: 821px) and (max-width: 1180px) {
    .center-logo {
        width: 420px;
        max-width: 80%;
    }
}

/* Mobile (iPhone) */
@media (max-width: 820px) {
    .slider {
        padding-top: 80px;
        /* lartësia e header-it */
    }

    .center-logo {
        width: 260px;
        max-width: 80%;
    }
}

/* iPhone shumë i vogël (SE, Mini) */
@media (max-width: 480px) {
    .center-logo {
        width: 220px;
        max-width: 75%;
    }
}




/* ========================= */
/* MOBILE HEADER & MENU */
/* ========================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* MOBILE */
@media (max-width: 820px) {

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(13, 46, 69, 0.95);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        padding: 25px 0;
        gap: 18px;
        text-align: center;
    }

    nav ul li a {
        font-size: 20px;
    }

    .hamburger {
        display: flex;
    }
}

/* 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;
    }
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    height: 20px;
    background: #0d2e45;
}



/* HIQE SHIRITIN BLU KUR MENUJA ËSHTË E MBYLLUR */
@media (max-width: 820px) {
    nav {
        padding: 0 !important;
        background: transparent !important;
    }

    nav ul {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Vetëm kur menuja hapet */
    nav.active {
        background: rgba(13, 46, 69, 0.95) !important;
    }

    nav.active ul {
        padding: 20px 0 !important;
    }
}



@media (max-width: 820px) {

    /* NAV nuk ndikon në lartësinë e header-it */
    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: transparent;
    }

    /* Menuja e mbyllur – krejt e fshehur */
    nav ul {
        display: none;
    }

    /* Menuja e hapur */
    nav.active ul {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        background: rgba(13, 46, 69, 0.95);
    }
}











/* ========================= */
/* ÜBER UNS – MOBILE FIX */
/* ========================= */
@media (max-width: 820px) {

    .section-about {
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

}


.uber-text {
    width: 100%;
}

.uber-text p {
    font-size: 16px;
    line-height: 1.6;
}

/* Foto e madhe poshtë tekstit */
.uber-img {
    width: 100%;
    order: 2;
}

.uber-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Inhaber – foto majtas, tekst djathtas */
.inhaber-line {
    display: flex;
    flex-direction: row;
    /* ⬅️ paralel */
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
    margin-top: 20px;
}

.owner-photo {
    width: 120px !important;
    height: 120px !important;
    flex-shrink: 0;
}

.inhaber-text {
    display: flex;
    flex-direction: column;
}

.inhaber {
    font-size: 14px;
    opacity: 0.7;
    margin-top: -8px;
    /* ⬅️ e ngre Inhaber më lart */
}


.signature {
    font-size: 22px;
    margin-bottom: -8px;
    /* ⬅️ e afron Inhaber lart */
    line-height: 1.2;
    /* ⬅️ kontroll i lartësisë */
}


@media (max-width: 820px) {
    .section-about .section-title {
        margin-top: 40px;
        /* ⬅️ zbret “Über uns”, pa krijuar boshllëk */
    }
}



@media (max-width: 820px) {
    .signature {
        line-height: 1.3;
        /* ⬅️ krijon hapësirë vertikale */
        letter-spacing: 0.5px;
        /* ⬅️ pak ajër mes shkronjave */
    }
}


@media (max-width: 820px) {
    .inhaber-text {
        margin-left: -15px;
        /* ⬅️ shtyn tekstin majtas */
    }
}



/* ===== FINAL MOBILE FIX – Inhaber & Signature ===== */
@media (max-width: 820px) {

    .inhaber-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        /* ⬅️ distanca mes Inhaber & Emrit */
        margin-left: -15px;
    }

    .signature {
        font-size: 24px !important;
        line-height: 1.1 !important;
        margin: 0 !important;
    }

    .inhaber {
        font-size: 10px;
        margin: 0 !important;
        line-height: 1.1;
    }

}

/* ==================================
   ÜBER UNS – RESPONSIVE (CLEAN FINAL)
   ================================== */

/* TABLET + PHONE */
@media (max-width: 1024px) {

    .section-about {
        grid-template-columns: 1fr;
        padding: 90px 22px;
        gap: 28px;
    }

    /* Renditja */
    .uber-text {
        order: 1;
        display: flex;
        flex-direction: column;
    }

    .uber-text p {
        font-size: 16px;
        line-height: 1.65;
    }

    .inhaber-line {
        order: 2;
        margin-top: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }

    .uber-img {
        order: 3;
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-right: 8px;
        box-sizing: border-box;
    }

    .photo-wrapper img {
        width: 100%;
        border-radius: 14px;
    }

    .blue-square {
        width: 100%;
        height: 100%;
        right: -6px;
        top: 22px;
        border-radius: 14px;
    }
}

/* PHONE */
@media (max-width: 768px) {

    .section-about {
        padding: 80px 18px;
    }

    .inhaber-line {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .owner-photo {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }

    .signature {
        font-size: 36px;
        line-height: 1.1;
    }

    .inhaber {
        font-size: 16px;
    }
}

/* SMALL PHONE (iPhone SE) */
@media (max-width: 375px) {

    .section-about {
        padding: 70px 14px;
    }

    .signature {
        font-size: 32px;
    }

    .inhaber {
        font-size: 14px;
    }

    .owner-photo {
        width: 120px;
        height: 120px;
    }

    .blue-square {
        top: 26px;
        right: -6px;
    }
}


/* ==================================
   INHABER – PERFECT CENTER (iPad + Phones)
   ================================== */
@media (max-width: 1024px) {

    /* Blloku komplet në qendër */
    .inhaber-line {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 14px;
        /* ⬅️ e kontrolluar, jo shumë poshtë */
    }

    /* Foto rrethore – center real */
    .owner-photo {
        display: block;
        margin: 0 auto 4px auto !important;
        transform: none !important;
    }

    /* Teksti poshtë fotos */
    .inhaber-text {
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        text-align: center;
    }

    /* Emri */
    .signature {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.05;
    }

    /* Inhaber */
    .inhaber {
        margin-top: 2px !important;
    }
}


/* =================================
   FIX: Move ONLY white shine line LEFT
   ================================= */
@media (max-width: 1024px) {

    .photo-wrapper::before,
    .photo-wrapper::after {
        transform: translateX(-8px);
        /* ⬅️ kjo e bart vijën nga djathta kah majtas */
    }
}



/* =================================
   ÜBER UNS – Blue square EXPANDED (iPad only – refined)
   ================================= */
@media (min-width: 768px) and (max-width: 1024px) {

    .uber-img {
        padding-right: 6px;
        /* balans më i mirë vizual */
    }

    .blue-square {
        right: -18px;
        /* del bukur djathtas */
        top: 20px;
        /* pak më poshtë nga lart */
        bottom: -22px;
        /* del bukur poshtë */
        border-radius: 14px;
    }
}

/* =================================
   ÜBER UNS – Text scale for iPad
   ================================= */
@media (min-width: 768px) and (max-width: 1024px) {

    .uber-text p {
        font-size: 17px;
        line-height: 1.7;
    }

    .section-about .uber-text h2 {
        font-size: 43px;
    }
}




@media (max-width: 768px) {

    /* HEADER */
    header {
        padding: 0 16px;
        height: 70px;
    }

    nav ul {
        gap: 16px;
    }

    nav a {
        font-size: 16px;
    }

    /* SLIDER */
    .center-logo {
        width: 280px;
    }

    /* ABOUT SECTION */
    .section-about {
        grid-template-columns: 1fr;
        padding: 80px 6%;
        text-align: center;
    }

    .uber-text {
        margin-top: 0;
    }

    .section-about .uber-text h2 {
        font-size: 36px;
    }

    .section-about .uber-text p {
        font-size: 16px;
        max-width: 100%;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-card {
        width: 100%;
        height: auto;
    }

    .service-card img {
        height: 180px;
    }

    /* DISABLE HOVER SCALE ON MOBILE */
    .service-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    /* KONTAKT */
    .kontakt-box-index {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        margin: 0;
    }

    .kontakt-center-index,
    .kontakt-right-index {
        margin-top: 0;
        text-align: center;
    }

    .kontakt-right-index iframe {
        height: 220px;
    }

    /* FOOTER */
    .footer-mini {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}




@media (max-width: 1024px) {

    /* ÜBER UNS – CENTER TEK IPAD */
    .section-about {
        text-align: center;
    }

    .section-about .uber-text {
        align-items: center;
        margin: 0 auto;
    }

    .section-about .uber-text h2 {
        text-align: center;
    }

    .section-about .uber-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

}













@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }

    .service-card {
        width: 100%;
        height: auto;
    }

    .service-card img {
        height: 180px;
        object-fit: cover;
    }
}

/* =========================
   LEISTUNGEN – FINAL SAFE ANIMATIONS
   ========================= */

.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.4s ease;
    will-change: transform, opacity;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover – i butë, profesional */
.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
    z-index: 10;
}


/* =========================
   LEISTUNGEN – RESTORED ANIMATIONS
   ========================= */

/* SHFAQJA (si më parë) */
.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.4s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER – PA PRISHUR SHFAQJEN */
.service-card:hover {
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

.service-card:hover img {
    transform: scale(1.08);
    transition: transform 0.4s ease;
}


/* =========================
   LEISTUNGEN – NO IMAGE ZOOM
   ========================= */

.service-card img {
    transform: none !important;
    transition: none !important;
}


/* =================================
   LEISTUNGEN – iPad SOFT CARD SCALE
   ================================= */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Karta rritet lehtë */
    .service-card:hover {
        transform: scale(1.035);
        box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
        z-index: 5;
    }

    /* Fotoja MBETET STATIKE */
    .service-card:hover img {
        transform: none;
    }
}


/* =================================
   LEISTUNGEN – iPad MINI (NO HOVER SCALE)
   ================================= */
@media (min-width: 768px) and (max-width: 820px) {

    .service-card:hover {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }
}




















/* =========================
TELEFONA – 1 KARTË NË RRESHT
iPhone / Android
========================= */
@media (max-width: 768px) {

    .services-grid {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
        justify-items: stretch;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
    }

    .service-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
}


/* =========================
IPAD – 2 KARTA NGA 2
iPad Air / iPad Pro / iPad mini
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .services-grid {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 32px;
        justify-items: stretch;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
    }

}




/* FIX – SERVICES SECTION HEIGHT */
.section-services {
    position: relative;
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 80px;
}

.services-grid {
    position: relative;
}


/* =========================
VERTICAL SPACE BETWEEN CARDS
========================= */

/* TELEFONA */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 30px;
    }
}

/* IPAD */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-card {
        margin-bottom: 45px;
    }
}


/* =================================
   LEISTUNGEN – iPad cards SMALLER
   ================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Grid – më kompakt */
    .services-grid {
        gap: 28px;
        /* ishte 40px */
        padding: 0 24px;
        /* ishte 32px */
    }

    /* Kartat – më të lehta */
    .service-card {
        padding: 14px;
        /* ⬅️ ky është ÇELËSI */
    }

    /* Foto – pak më e ulët */
    .service-card img {
        height: 150px;
        /* ishte implicit / më e madhe */
    }

    /* Hapësira poshtë kartës */
    .service-card {
        margin-bottom: 28px;
        /* ishte 45px */
    }
}




/* =================================
   LEISTUNGEN – iPad NORMAL CARD SHAPE
   ================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Grid – mos i shtri kartat tepër */
    .services-grid {
        max-width: 900px;
        /* ⬅️ KY ËSHTË ÇELËSI */
        margin: 0 auto;
        gap: 32px;
    }

    /* Kartat – formë më katrore */
    .service-card {
        padding: 16px;
        border-radius: 18px;
    }

    /* Foto – mos u shtri */
    .service-card img {
        height: 160px;
        /* ⬅️ JO 200+ */
        border-radius: 12px;
    }

    /* Teksti – mos e zgjat kartën */
    .service-card h3 {
        font-size: 18px;
        margin-top: 12px;
    }

    .service-card p {
        font-size: 15px;
        line-height: 1.5;
    }
}


/* =================================
   LEISTUNGEN – iPad SAFE HOVER SPACE
   ================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Hapësirë më e madhe mes kartave */
    .services-grid {
        row-gap: 54px;
        /* ⬅️ më e madhe se gap */
    }

    /* Hapësirë sigurie poshtë çdo karte */
    .service-card {
        margin-bottom: 20px;
        transform-origin: center center;
        /* rritet nga mesi */
    }
}


/* =================================
   LEISTUNGEN – iPad MINI FIX (REAL)
   ================================= */
@media (min-width: 768px) and (max-width: 820px) {

    /* Grid MOS u shtri në 100% */
    .services-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        max-width: 720px;
        margin: 0 auto;
        gap: 32px;
    }

    /* Kartat MOS u zgjas */
    .service-card {
        max-width: 340px;
        /* ⬅️ KY ËSHTË ÇELËSI */
        margin: 0 auto;
        padding: 14px;
    }

    /* Foto më kompakte */
    .service-card img {
        height: 130px;
    }

    /* Teksti mos e zgjas kartën */
    .service-card p {
        line-height: 1.4;
        font-size: 14px;
    }

    /* Butoni */
    .service-card .btn,
    .service-card a {
        margin-top: 10px;
    }
}



/* =================================
   LEISTUNGEN – iPad MINI SAFE SPACING
   ================================= */
@media (min-width: 768px) and (max-width: 820px) {

    /* Hapësirë vertikale reale mes rreshtave */
    .services-grid {
        row-gap: 50px;
        /* ⬅️ buffer për animacion */
    }

}



/* =========================
   LEISTUNGEN – NO IMAGE ZOOM (GLOBAL)
   ========================= */
.service-card img {
    transform: none !important;
    transition: none !important;
}


/* =========================
   LEISTUNGEN – TABLET (iPad Mini + Air + Pro)
   ========================= */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Hover i butë për kartën */
    .service-card:hover {
        transform: scale(1.035);
        box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
        z-index: 5;
    }

    .service-card {
        transform-origin: center center;
    }
}


/* =========================
   LEISTUNGEN – iPad MINI (touch-first)
   ========================= */
@media (min-width: 768px) and (max-width: 820px) {

    /* iPad Mini nuk përdor hover real */
    .service-card:hover {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    /* Spacing sigurie */
    .services-grid {
        row-gap: 72px;
    }
}


/* =========================
   LEISTUNGEN – iPad AIR / PRO (extra space)
   ========================= */
@media (min-width: 821px) and (max-width: 1024px) {

    /* Hapësirë e madhe për scale */
    .services-grid {
        row-gap: 96px;
        /* ⬅️ FINAL */
    }
}






/* =================================
   LEISTUNGEN – iPad MINI TAP ANIMATION
   ================================= */
@media (min-width: 768px) and (max-width: 820px) {

    .service-card:active,
    .service-card:focus-within {
        transform: scale(1.035);
        box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
        z-index: 10;
    }
}



















/* =====================
   STATISTIKAT – DEFAULT (iPad + Desktop)
   ===================== */

.stats-section {
    background-color: #0c4a6e;
    padding: 80px 20px;
    color: #fff;
}

.stats-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* PC & iPad */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat h3 {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.stat .count {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}


/* =====================
   MOBILE – iPhone / Android
   ===================== */
@media (max-width: 768px) {

    .stats-box {
        display: flex;
        flex-direction: column;
        /* ⬅️ njëra poshtë tjetrës */
        gap: 40px;
        max-width: 100%;
    }

    .stat .count {
        font-size: 52px;
    }
}




/* =====================
   STATISTIKAT – DESKTOP DEFAULT
   ===================== */
.stats-section {
    background-color: #0c4a6e;
    padding: 80px 20px;
    color: #fff;
}

.stats-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat h3 {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stat .count {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}


/* =====================
   TABLET – ALL iPADS (ONE RULE)
   Mini / Air / Pro / Max
   ===================== */
@media (max-width: 1024px) {

    .stats-section {
        padding: 55px 20px;
        /* shirit blu më i hollë */
    }

    .stats-box {
        grid-template-columns: repeat(4, 1fr);
        /* SI PC */
        gap: 28px;
        max-width: 1000px;
    }

    .stat h3 {
        font-size: 14px;
        letter-spacing: 0.8px;
    }

    .stat .count {
        font-size: 44px;
        /* më e vogël për iPad */
    }
}


/* =====================
   MOBILE – iPhone / Android
   ===================== */
@media (max-width: 768px) {

    .stats-box {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .stat .count {
        font-size: 52px;
    }
}

/* ================= LEISTUNGEN – SAFE SCROLL REVEAL ================= */

/* DEFAULT: PC / DESKTOP – pa animacion */
.service-card {
    opacity: 1;
    transform: none;
}

/* MOBILE + iPAD – animacion */
@media (max-width: 1024px) {

    .service-card {
        opacity: 0;
        transform: translateY(40px);
        transition:
            opacity 0.9s ease,
            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .service-card.show {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kur shfaqet */
.service-card.show {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================= */
/*  BUTONI "MEHR" – MOBILE (FINAL & CLEAN)          */
/* ================================================= */

@media (hover: none) and (pointer: coarse) {

    .service-card button {
        background: #0b4669 !important;
        color: white !important;
        border: 3px solid #0b4669 !important;
        box-shadow: 0 6px 16px rgba(11, 70, 105, 0.35);
    }

    /* siguri: pa hover fake */
    .service-card button:hover {
        transform: none !important;
    }
}




/* ========================================================= */
/*  MEHR BUTTON – ANIMACION AUTOMATIK KUR KARTA SHFAQET      */
/*  VETËM PËR iPHONE & iPAD                                  */
/* ========================================================= */

@media (hover: none) and (pointer: coarse) {

    /* Butoni gjithmonë blu */
    .service-card .mehr-wrap button {
        background: #0b4669 !important;
        color: white !important;
        border: 3px solid #0b4669 !important;
        box-shadow: 0 8px 20px rgba(11, 70, 105, 0.45);
    }

    /* Border fillimisht i fshehur */
    .service-card .mehr-border {
        opacity: 0;
    }

    /* KUR KARTA SHFAQET → border animon */
    .service-card.show .mehr-border {
        opacity: 1;
        animation: drawBorderSlow 1.6s linear forwards;
    }

    .service-card.show .mehr-wrap button::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;

        background: linear-gradient(120deg,
                rgba(255, 255, 255, 0.45),
                rgba(255, 255, 255, 0.45));

        /* 🔑 KJO E BËN SHINE-IN REALISHT TË NGUSHTË */
        clip-path: polygon(48% 0%,
                52% 0%,
                60% 100%,
                44% 100%);

        animation: shineMove 5.5s linear infinite;
        pointer-events: none;
        z-index: 1;
    }




    .service-card .mehr-wrap button {
        position: relative;
        overflow: hidden;
    }


    /* Çaktivizo hover fake në mobile */
    .mehr-wrap:hover .mehr-border {
        animation: none !important;
    }
}



/* ======================================== */
/*  STATS – TITULLI (PROJEKTE, KUNDEN, etj.) */
/*  VETËM PC / DESKTOP                       */
/* ======================================== */

@media (hover: hover) and (pointer: fine) {

    #why.stats-section .stat h3 {
        font-family: sans-serif;
        /* ose Poppins */
        font-size: 20px;
        /* rrite sipas dëshirës */
        font-weight: 500;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

}

@media (hover: hover) and (pointer: fine) {

    #why.stats-section .stat h3 {
        font-weight: 500;
        /* 🔑 BOLD */
    }

}



/* ===================================================== */
/*  LEISTUNGEN – FINAL OVERRIDE (ALL iPHONE & iPAD)     */
/* ===================================================== */

/* DEFAULT – siguri absolute */
.service-card {
    opacity: 1 !important;
    transform: none !important;
}

/* iPhone + ALL iPads */
@media (max-width: 1024px) {

    .service-card {
        opacity: 0 !important;
        transform: translateY(40px) !important;
        transition:
            opacity 1.2s ease,
            transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) !important;

    }

    .service-card.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}


/* ===== LEISTUNGEN – RESET FINAL (SAFE) ===== */

.service-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
}

/* iPhone & ALL iPads */
@media (max-width: 1024px) {

    .service-card {
        opacity: 0 !important;
        transform: translateY(30px) !important;
        transition: opacity 0.8s ease, transform 0.8s ease !important;
    }

    .service-card.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

































































/* ===================================== */
/* MOBILE & iPAD – WARUM UNS WÄHLEN       */
/* ===================================== */

@media (max-width: 1024px) {

    /* Titulli kryesor */
    .why-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 8px;
    }

    .why-subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 30px;
        padding: 0 16px;
    }

    /* Container i kartave */
    .qualities {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }

    /* Kartat individuale */
    .quality-box {
        width: 100%;
        padding: 18px 16px;
        border-radius: 14px;
        box-sizing: border-box;
    }

    /* Ikona ✓ */
    .checkmark-box {
        min-width: 44px;
        height: 44px;
        font-size: 20px;
    }

    /* Titulli brenda kartës */
    .quality-box h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    /* Teksti brenda kartës */
    .quality-box p {
        font-size: 14px;
        line-height: 1.5;
    }
}


/* ===================================== */
/* MOBILE & iPAD – WHY US ANIMATION      */
/* ===================================== */

@media (max-width: 1024px) {

    /* gjendja fillestare */
    .quality-box {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.6s ease forwards;
    }

    /* delay një-pas-një */
    .quality-box:nth-child(1) {
        animation-delay: 0.1s;
    }

    .quality-box:nth-child(2) {
        animation-delay: 0.25s;
    }

    .quality-box:nth-child(3) {
        animation-delay: 0.4s;
    }

    .quality-box:nth-child(4) {
        animation-delay: 0.55s;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}









/* ===================================== */
/* PARTNER SECTION – MOBILE & iPAD FIX   */
/* ===================================== */

@media (max-width: 1024px) {

    #partner-section {
        padding: 60px 0;
        text-align: center;
    }

    .partner-divider {
        font-size: 24px;
        line-height: 1.3;
        text-align: center;

        max-width: 100%;
        margin: 0 auto 40px;
        padding: 0 16px;

        /* KJO ËSHTË ÇELËSI */
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .partner-big-logos {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        /* 👈 më shumë hapësirë */
        padding: 0 16px;
    }


    .brand-box {
        width: 100%;
        max-width: 280px;
        padding: 20px;
        box-sizing: border-box;
    }

    .brand-box img {
        width: 100%;
        max-width: 200px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

/* ============ iPHONE SE ONLY ============ */

@media (max-width: 375px) {

    .partner-divider {
        font-size: 19px;
        /* më e vogël, nuk pritet */
        line-height: 1.25;
        padding: 0 12px;
    }
}


/* ===================================== */
/* iPAD – PARTNER LOGOS GRID             */
/* ===================================== */

@media (min-width: 768px) and (max-width: 1024px) {

    .partner-big-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 për rresht */
        gap: 36px;
        /* hapësirë e bukur */
        justify-items: center;
        padding: 0 32px;
    }

    .brand-box {
        max-width: 300px;
        width: 100%;
    }
}


/* ===================================== */
/* KONTAKT – MOBILE & iPAD ONLY          */
/* ===================================== */

@media (max-width: 1024px) {

    .kontakt-section-index {
        padding: 60px 16px;
    }

    .kontakt-box-index {
        display: flex;
        flex-direction: column;
        gap: 36px;
    }

    /* FORM */
    .kontakt-left-index {
        width: 100%;
    }

    .kontakt-left-index h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .kontakt-left-index form {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .kontakt-left-index input,
    .kontakt-left-index textarea {
        width: 100%;
        font-size: 15px;
        padding: 12px;
        box-sizing: border-box;
    }

    .kontakt-left-index textarea {
        min-height: 120px;
        resize: vertical;
    }

    .kontakt-left-index button {
        margin-top: 10px;
        padding: 14px;
        font-size: 15px;
    }

    /* INFO TEXT */
    .kontakt-center-index {
        width: 100%;
        text-align: center;
    }

    .kontakt-textbox {
        padding: 20px;
        line-height: 1.6;
    }

    /* MAP */
    .kontakt-right-index {
        width: 100%;
    }

    .kontakt-right-index iframe {
        width: 100%;
        height: 260px;
        border-radius: 16px;
        border: 0;
    }
}



/* ===================== iPHONE SE ONLY ===================== */

@media (max-width: 375px) {

    .kontakt-left-index h2 {
        font-size: 22px;
    }

    .kontakt-left-index input,
    .kontakt-left-index textarea {
        font-size: 14px;
        padding: 10px;
    }

    .kontakt-right-index iframe {
        height: 220px;
    }
}



/* ===================================== */
/* FOOTER – FULL CENTER (MOBILE & iPAD)  */
/* ===================================== */

@media (max-width: 1024px) {

    .footer-mini {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
        padding: 16px 12px;
        gap: 8px;
    }

    .footer-left {
        width: 100%;
        text-align: center;
        font-size: 11px;
        line-height: 1.4;
    }

    .footer-right {
        width: 100%;
        text-align: center;
        font-size: 9px;
        line-height: 1.4;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .footer-right a {
        display: inline-block;
        text-align: center;
    }
}

/* ================= iPHONE SE ONLY ================= */

@media (max-width: 375px) {

    .footer-left,
    .footer-right {
        font-size: 12px;
    }
}





/* ===================================== */
/* DISABLE CURSOR CIRCLE – MOBILE & iPAD */
/* ===================================== */

@media (max-width: 1024px) {

    .cursor-circle {
        display: none !important;
        pointer-events: none !important;
    }
}



/* ===================================== */
/* MOBILE MENU FIX – SHOW MENU PROPERLY  */
/* ===================================== */

@media (max-width: 1024px) {

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    header nav {
        position: fixed;
        top: 70px;
        /* poshtë header-it */
        left: 0;
        width: 100%;
        background: #5f7686;
        /* ngjyra e header-it */
        z-index: 9999;

        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    header nav.active {
        display: flex;
    }
}


/* ===================================== */
/* REMOVE LEISTUNGEN DROPDOWN – MOBILE   */
/* ===================================== */

@media (max-width: 1024px) {

    /* hiq shigjetën */
    .dropdown>a::after,
    .dropdown>a span,
    .dropdown .arrow {
        display: none !important;
    }

    /* mos shfaq submenu */
    .dropdown ul,
    .dropdown-content {
        display: none !important;
    }
}


header {
    display: flex;
}

.logo {
    flex: 0 0 auto;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

@media (max-width: 768px) {
    .section-services {
        background-image: url('./assets/scscs.webp');

        /* 🔑 mos e zmadhoni më tepër se duhet */
        background-size: auto 100%;
        background-position: center;
        background-repeat: no-repeat;

        /* ndihmon Safari iPhone */
        image-rendering: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}


@media (max-width: 768px) {

    /* ===============================
       WHY / QUALITÄTEN – MOBILE FIX
       =============================== */

    #why-qualities .qualities {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    #why-qualities .quality-box {
        width: 100%;
        flex-direction: row;
        align-items: center;

        /* ❌ hiq left/right chaos */
        transform: none !important;
        opacity: 0;

        /* ✅ animacion i njëtrajtshëm */
        animation: mobileFadeUp 0.6s ease forwards;
    }

    /* rend i saktë një nga një */
    #why-qualities .quality-box:nth-child(1) {
        animation-delay: 0s;
    }

    #why-qualities .quality-box:nth-child(2) {
        animation-delay: 0.25s;
    }

    #why-qualities .quality-box:nth-child(3) {
        animation-delay: 0.5s;
    }

    #why-qualities .quality-box:nth-child(4) {
        animation-delay: 0.75s;
    }

    /* tiku i bardhë */
    #why-qualities .checkmark-box {
        background: #0b3a5a;
        color: #ffffff;
    }

    #why-qualities .checkmark-box span {
        color: #ffffff;
        font-weight: 700;
    }
}

/* animacion i thjeshtë për mobile */
@keyframes mobileFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ================================= */
/* FIX: FOTO = HIJEZIM (MOBILE)      */
/* ================================= */
@media (max-width: 768px) {

    .kontakt-section-index {
        position: relative;
        min-height: 120vh !important;
        /* FOTO BËHET MË E GJATË */
        padding-top: 120px !important;
        padding-bottom: 60px !important;

        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    /* hijezimi të ketë FIKS të njëjtën lartësi */
    .kontakt-section-index::before {
        height: 100% !important;
    }

}









/* ===============================
   GOOGLE MAPS – iOS SAFE SOLUTION
   =============================== */

.map-wrapper {
    position: relative;
}

/* harta fillimisht pasive */
.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: 0;
    pointer-events: none;
}

/* overlay për aktivizim */
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    z-index: 2;
    cursor: pointer;
}

/* kur aktivizohet */
.map-wrapper.active iframe {
    pointer-events: auto;
}

.map-wrapper.active .map-overlay {
    display: none;
}



    .map-wrapper iframe {
        pointer-events: auto;
    }


/* ===============================
   GOOGLE MAPS – UNIVERSAL ACTIVE
   =============================== */

.maps-section {
    width: 100%;
    background: #fff;   /* shumë e rëndësishme */
    padding: 20px 0;
}

.maps-section iframe {
    width: 100%;
    height: 150px;
    border: 0;
    display: block;
    pointer-events: auto;
    touch-action: pan-x pan-y;
}

@media (max-width: 1024px) {
    .maps-section iframe {
        height: 300px;
    }
}

/* ===============================
   KONTAKT – NGREJE LART (iPhone & iPad)
   =============================== */

@media (max-width: 1024px) {

    .kontakt-section-index {
        padding-top: 20px;   /* zvogëlon hapësirën e zbrazët sipër */
    }

    .kontakt-box-index {
        margin-top: -120px;  /* 👈 ngrit të DYJA kutitë lart */
    }
}


/* ===============================
   GOOGLE MAPS – DEVICE CONTROL
   =============================== */

/* PC & Laptop */
@media (min-width: 1025px) {

    /* ❌ mos shfaq maps-section në PC */
    .maps-section {
        display: none;
    }

    /* ✅ shfaq Google Maps brenda kontaktit */
    .kontakt-right-index {
        display: block;
    }
}

/* iPhone & iPad */
@media (max-width: 1024px) {

    /* ❌ mos shfaq Google Maps brenda kontaktit */
    .kontakt-right-index {
        display: none;
    }

    /* ✅ shfaq vetëm maps-section */
    .maps-section {
        display: block;
    }
}



/* ===============================
   DATENSCHUTZ & IMPRESSUM
   FIX VETËM PËR iPHONE
   =============================== */

@media (max-width: 600px) {

    .datenschutz-section,
    .impressum-section {
        padding: 30px 16px;
    }

    .datenschutz-section h1,
    .impressum-section h1 {
        font-size: 24px;     /* 👈 titulli më i vogël */
        line-height: 1.25;
        word-break: break-word;
    }

    .datenschutz-section h3,
    .impressum-section h3 {
        font-size: 17px;
    }

    .datenschutz-section p,
    .datenschutz-section li,
    .impressum-section p,
    .impressum-section li {
        font-size: 15px;
        line-height: 1.6;
    }
}


.kontakt-textbox p {
    text-align: left;
}

.kontakt-textbox {
    display: flex;
    flex-direction: column;
    gap: 6px; /* ose 8px */
}


