/* =============== RESET & BASE =============== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html { scroll-behavior: smooth; }

        body {
            background-color: #f3f6fb;
            color: #222;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            line-height: 1.6;
            padding-bottom: 0;
        }

        a { color: inherit; text-decoration: none; }

        a:focus-visible, button:focus-visible {
            outline: 2px solid #1f6fba;
            outline-offset: 2px;
        }

        h1, h2, h3, h4 { color: #111827; }

        p { color: #4b5563; }

        section[id] { scroll-margin-top: 90px; }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* =============== HEADER (dark, me logo B) =============== */

        .site-header {
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 999;
            backdrop-filter: blur(12px);
            background: linear-gradient(to right, rgba(10,20,40,0.96), rgba(25,55,110,0.96));
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding: 8px 0;
        }

        .header-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-logo-icon {
            height: 100px;
            width: auto;
            object-fit: contain;
        }

        .header-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.06em;
        }

        .brand-subtitle {
            font-size: 0.75rem;
            color: #d1d5db;
        }

        .header-nav {
            display: flex;
            gap: 22px;
        }

        .header-nav a {
            color: #e5e7eb;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
        }

        .header-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0%;
            height: 2px;
            background: #f57c1f;
            transition: 0.25s ease;
        }

        .header-nav a:hover::after {
            width: 100%;
        }

                .header-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-call-btn {
            background: linear-gradient(135deg, #f57c1f, #ff9f4a);
            padding: 8px 18px;
            border-radius: 999px;
            color: #111;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 6px 16px rgba(255,140,60,0.4);
            transition: 0.2s ease;
            white-space: nowrap;
        }

        .header-call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255,140,60,0.55);
        }

        /* HAMBURGER BUTTON */
 .menu-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.7);
    background: rgba(15,23,42,0.9);
    margin-left: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;

    flex-direction: column;   /* <<< SHTO KËTË */
}


        .menu-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #e5e7eb;
            border-radius: 999px;
            margin: 2px 0;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        /* animimi X kur hapet */
        .menu-toggle.open span:nth-child(1) {
            transform: translateY(4px) rotate(45deg);
        }
        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.open span:nth-child(3) {
            transform: translateY(-4px) rotate(-45deg);
        }

        /* MENU MOBILE (poshtë header-it) */
        .mobile-nav {
            display: none;
            background: #020617;
            border-top: 1px solid #111827;
            border-bottom: 1px solid #111827;
        }

        .mobile-nav a {
            display: block;
            padding: 10px 20px;
            font-size: 0.95rem;
            color: #e5e7eb;
            border-top: 1px solid #111827;
        }

        .mobile-nav a:first-child {
            border-top: none;
        }

        .mobile-nav a:hover {
            background: #0f172a;
        }

                /* kur menu ka klasën "open", bëhet e dukshme */
        .mobile-nav.open {
            display: block;
        }


        /* MOBILE BREAKPOINT – HEADER për telefon */
        @media (max-width: 760px) {
            .header-inner {
                flex-wrap: nowrap;
                justify-content: space-between;
                padding: 6px 12px;
            }

            .header-left {
                gap: 8px;
            }

            .header-logo-icon {
                height: 60px;   /* logo më e vogël në mobile */
            }

            .brand-title {
                font-size: 0.9rem;
            }

            .brand-subtitle {
                font-size: 0.7rem;
            }

            .header-brand-text {
                max-width: 145px;
            }

            /* fsheh nav desktop */
            .header-nav {
                display: none;
            }

            /* shfaq hamburger butonin */
            .menu-toggle {
                display: inline-flex;
            }

            /* butoni Call më kompakt në mobile */
            .header-call-btn {
                padding: 6px 14px;
                font-size: 0.8rem;
            }

            /* mobile nav full width poshtë header-it */
            .mobile-nav a {
                padding: 12px 18px;
                font-size: 0.95rem;
            }
        }


        
        
        /* =============== HERO =============== */

        .hero {
            background: radial-gradient(circle at top left, #1d4ed8 0, #0b1120 45%, #020617 100%);
            color: #e5e7eb;
            padding: 2.5rem 0 4rem;
        }

        .hero-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(280px, 1fr);
            gap: 2.5rem;
            align-items: center;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0.8rem;
            border-radius: 999px;
            background: rgba(15,23,42,0.8);
            border: 1px solid rgba(59,130,246,0.5);
            font-size: 0.8rem;
            color: #bfdbfe;
            margin-bottom: 0.9rem;
        }

        .hero-eyebrow strong { color: #f97316; }

        .hero-title {
            font-size: clamp(2.1rem, 3vw, 2.7rem);
            line-height: 1.1;
            margin-bottom: 0.6rem;
            color: #f8fafc;
        }

        .hero-title span { color: #f97316; }

        .hero-subtitle {
            font-size: 0.98rem;
            color: #cbd5f5;
            max-width: 28rem;
            margin-bottom: 1.2rem;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 1.2rem;
        }

        .hero-badges span {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            background: rgba(15,23,42,0.9);
            border: 1px solid rgba(148,163,184,0.7);
            font-size: 0.78rem;
            color: #e5e7eb;
        }

        .hero-badges span::before {
            content: "\2713";
            font-size: 0.8rem;
            color: #22c55e;
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
            margin-bottom: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f97316, #fb923c);
            color: #111827;
            padding: 0.9rem 1.5rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            box-shadow: 0 16px 40px rgba(248,113,113,0.45);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 20px 50px rgba(248,113,113,0.7);
        }

        .btn-ghost {
            border-radius: 999px;
            border: 1px solid rgba(148,163,184,0.8);
            padding: 0.8rem 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
            color: #e5e7eb;
            cursor: pointer;
            background: transparent;
            transition: background 0.15s ease, border-color 0.15s ease;
        }

        .btn-ghost:hover {
            background: rgba(15,23,42,0.9);
            border-color: #93c5fd;
        }

        .btn-ghost-light {
            border-radius: 999px;
            border: 1px solid #cbd5e1;
            padding: 0.8rem 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
            color: #0f172a;
            cursor: pointer;
            background: #ffffff;
            transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
        }

        .btn-ghost-light:hover {
            background: #eff6ff;
            border-color: #93c5fd;
            transform: translateY(-1px);
        }

        .hero-phone-note {
            font-size: 0.84rem;
            color: #9ca3af;
        }

        .hero-phone-note strong { color: #e5e7eb; }

        .hero-right { position: relative; }

        .hero-card {
            background: radial-gradient(circle at top left, #1d4ed8, #020617 60%);
            border-radius: 1.25rem;
            padding: 1.2rem 1.2rem 1.4rem;
            border: 1px solid rgba(148,163,184,0.6);
            box-shadow: 0 24px 60px rgba(15,23,42,0.9);
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .hero-card-header h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #e5e7eb;
        }

        .hero-tag {
            font-size: 0.7rem;
            padding: 0.18rem 0.6rem;
            border-radius: 999px;
            border: 1px solid rgba(52,211,153,0.8);
            color: #bbf7d0;
            background: rgba(22,163,74,0.3);
        }

        .hero-card-main {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 0.7rem;
            align-items: center;
        }

        .hero-card-main h4 {
            font-size: 0.9rem;
            color: #bfdbfe;
            margin-bottom: 0.25rem;
        }

        .hero-card-main p {
            font-size: 0.8rem;
            color: #9ca3af;
            margin-bottom: 0.5rem;
        }

        .hero-card-phone {
            font-size: 1.1rem;
            font-weight: 700;
            color: #f97316;
            margin-bottom: 0.25rem;
        }

        .hero-card-badge {
            font-size: 0.78rem;
            color: #e5e7eb;
        }

        .hero-photo-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    box-shadow: 0 18px 45px rgba(15,23,42,0.9);
    max-width: 260px;          /* e bën kartën më të ngushtë */
    margin-left: auto;         /* e shtyn pak nga e djathta, duket më kompakte */
}

.hero-photo {
    display: block;
    width: 100%;
    height: 230px;             /* pak më e lartë, por jo shumë */
    object-fit: cover;
    object-position: center;   /* e afron më bukur tek qendra e fytyrës/trupit */
}


        .hero-service-strip {
            margin-top: 0.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .hero-service-strip span {
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            background: rgba(15,23,42,0.8);
            border: 1px solid rgba(148,163,184,0.5);
        }

        /* =============== BENEFIT STRIP (poshtë hero) =============== */

        .benefit-strip {
            margin-top: -1.2rem;
            margin-bottom: 2.3rem;
        }

        .benefit-strip-inner {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .benefit-grid {
            background: #ffffff;
            border-radius: 1rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 14px 35px rgba(15,23,42,0.12);
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            overflow: hidden;
        }

        .benefit-item {
            padding: 1rem 1.2rem;
            border-right: 1px solid #e5e7eb;
        }

        .benefit-item:last-child { border-right: none; }

        .benefit-label {
            font-size: 0.8rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.2rem;
        }

        .benefit-main {
            font-size: 0.98rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.15rem;
        }

        .benefit-sub {
            font-size: 0.8rem;
            color: #6b7280;
        }

        /* =============== SECTION GENERALE =============== */

        .section { padding: 2.5rem 0; }

        .section-header {
            text-align: center;
            margin-bottom: 1.8rem;
        }

        .section-kicker {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #6b7280;
            margin-bottom: 0.3rem;
        }

        .section-title {
            font-size: 1.7rem;
            margin-bottom: 0.4rem;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: #6b7280;
            max-width: 42rem;
            margin: 0.1rem auto 0;
        }

        /* =============== WHY US =============== */

        .why { background: #f9fafb; }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .why-card {
            background: #ffffff;
            border-radius: 0.9rem;
            padding: 1rem;
            border: 1px solid #e5e7eb;
            text-align: left;
            transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
        }

        .why-card-icon {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #eff6ff;
            color: #1d4ed8;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
        }

        .why-card h3 { font-size: 0.98rem; margin-bottom: 0.15rem; }

        .why-card p { font-size: 0.85rem; }

        .why-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 13px 30px rgba(148,163,184,0.4);
            border-color: #1d4ed8;
        }

        /* =============== SERVICES =============== */

        .services { background: #ffffff; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .service-card {
            border-radius: 0.9rem;
            border: 1px solid #e5e7eb;
            padding: 1rem;
            text-align: left;
            background: #f9fafb;
            transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
        }

        .service-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #6b7280;
            margin-bottom: 0.2rem;
        }

        .service-pill span {
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: #22c55e;
        }

        .service-card h3 { font-size: 0.98rem; margin-bottom: 0.15rem; }

        .service-card p { font-size: 0.85rem; }

        .service-tagline {
            font-size: 0.78rem;
            color: #6b7280;
            margin-top: 0.4rem;
        }

        .service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 13px 30px rgba(148,163,184,0.4);
            border-color: #f97316;
            background: #fff7ed;
        }

        /* =============== OFFERS =============== */

        .offers {
            background: #0f172a;
            color: #e5e7eb;
        }

        .offers .section-kicker { color: #9ca3af; }
        .offers .section-title { color: #f9fafb; }
        .offers .section-subtitle { color: #9ca3af; }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .offer-card {
            border-radius: 0.9rem;
            border: 1px dashed rgba(248,250,252,0.4);
            padding: 1rem;
            background: radial-gradient(circle at top left, rgba(251,146,60,0.18), rgba(15,23,42,0.95));
            text-align: left;
        }

        .offer-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #fed7aa;
            margin-bottom: 0.2rem;
        }

        .offer-card h3 {
            font-size: 1.05rem;
            color: #fed7aa;
            margin-bottom: 0.2rem;
        }

        .offer-card p { font-size: 0.85rem; color: #e5e7eb; }

        /* =============== REVIEWS =============== */

        .reviews { background: #f9fafb; }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .review-card {
            background: #ffffff;
            border-radius: 0.9rem;
            border: 1px solid #e5e7eb;
            padding: 1rem;
            text-align: left;
            box-shadow: 0 8px 22px rgba(148,163,184,0.35);
            position: relative;
        }

        .review-quote {
            position: absolute;
            right: 0.9rem;
            top: 0.7rem;
            font-size: 1.3rem;
            color: #e5e7eb;
        }

        .review-text { font-size: 0.88rem; margin-bottom: 0.5rem; }

        .review-name {
            font-size: 0.82rem;
            font-weight: 600;
            color: #1d4ed8;
        }

        .review-stars {
            letter-spacing: 0.16em;
            color: #f59e0b;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .reviews-callout {
            margin-top: 1.5rem;
            padding: 1rem 1.1rem;
            border-radius: 1rem;
            background: linear-gradient(135deg, #dbeafe, #eff6ff);
            border: 1px solid #bfdbfe;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .reviews-callout p {
            margin: 0;
            color: #1e3a8a;
            font-size: 0.95rem;
        }

        .reviews-callout strong {
            color: #0f172a;
        }

        .section-cta {
            padding: 1.75rem 0;
        }

        .cta-band {
            background: linear-gradient(135deg, #0f172a, #1d4ed8);
            color: #f8fafc;
            border-radius: 1.25rem;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            box-shadow: 0 22px 50px rgba(15, 23, 42, 0.2);
        }

        .cta-band h2,
        .cta-band h3 {
            color: #ffffff;
            margin-bottom: 0.35rem;
        }

        .cta-band p {
            color: #dbeafe;
            margin: 0;
            max-width: 42rem;
        }

        .cta-band-actions {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .home-cta-section {
            padding: 1.75rem 0 2.25rem;
            background: #f3f6fb;
        }

        .home-cta-panel {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            flex-wrap: wrap;
            border-radius: 1rem;
            padding: 1.25rem 1.35rem;
            background:
                radial-gradient(circle at 8% 10%, rgba(37, 99, 235, 0.45), transparent 30%),
                linear-gradient(135deg, #07111f 0%, #0f172a 54%, #111827 100%);
            border: 1px solid rgba(148, 163, 184, 0.35);
            box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
        }

        .home-cta-copy {
            max-width: 42rem;
        }

        .home-cta-copy h2 {
            color: #ffffff;
            font-size: clamp(1.35rem, 2vw, 1.8rem);
            line-height: 1.16;
            margin-bottom: 0.35rem;
        }

        .home-cta-copy p {
            color: #dbeafe;
            margin: 0;
            font-size: 0.95rem;
        }

        .home-cta-actions {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .home-cta-actions .btn-primary,
        .home-cta-actions .btn-ghost {
            min-width: 150px;
            justify-content: center;
        }

        .section-reassurance {
            margin-top: 1.25rem;
            padding: 1rem 1.1rem;
            border-radius: 1rem;
            background: #ffffff;
            border: 1px solid #dbeafe;
            box-shadow: 0 10px 24px rgba(148, 163, 184, 0.14);
            text-align: left;
        }

        .section-reassurance strong {
            display: block;
            margin-bottom: 0.25rem;
            color: #0f172a;
            font-size: 1rem;
        }

        .section-reassurance p {
            margin: 0;
            color: #475569;
            font-size: 0.92rem;
        }

        .service-card-cta {
            margin-top: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            color: #1d4ed8;
            font-weight: 700;
            font-size: 0.84rem;
        }

        .service-card-cta::after {
            content: ">";
            font-size: 0.8rem;
        }

        .proof {
            background: #ffffff;
        }

        .proof-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .proof-card {
            border-radius: 1rem;
            border: 1px solid #dbe3ee;
            background: linear-gradient(180deg, #ffffff, #f8fbff);
            box-shadow: 0 12px 30px rgba(148, 163, 184, 0.18);
            overflow: hidden;
            text-align: left;
        }

        .proof-card-top {
            padding: 1rem;
            min-height: 150px;
            background:
                linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(249, 115, 22, 0.12)),
                repeating-linear-gradient(135deg, rgba(148, 163, 184, 0.12), rgba(148, 163, 184, 0.12) 10px, transparent 10px, transparent 20px);
            display: flex;
            align-items: flex-end;
        }

        .proof-label {
            display: inline-block;
            padding: 0.35rem 0.7rem;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.9);
            color: #f8fafc;
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .proof-card-body {
            padding: 1rem;
        }

        .proof-card-body h3 {
            margin-bottom: 0.45rem;
            font-size: 1.02rem;
        }

        .proof-card-body p {
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .proof-result {
            font-size: 0.84rem;
            color: #0f766e;
            font-weight: 700;
        }

        .proof-note {
            margin-top: 1.25rem;
            text-align: center;
            font-size: 0.9rem;
            color: #475569;
        }

        .proof-note strong {
            color: #0f172a;
        }

        /* =============== ABOUT =============== */

        .about { background: #ffffff; }

        .about-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(260px, 1fr);
            gap: 1.5rem;
            align-items: center;
        }

        .about-text { text-align: left; }

        .about-text p {
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
        }

        .about-points {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.85rem;
            margin-top: 1rem;
        }

        .about-point {
            padding: 0.9rem;
            border-radius: 0.95rem;
            border: 1px solid #dbe3ee;
            background: linear-gradient(180deg, #ffffff, #f8fbff);
            box-shadow: 0 10px 24px rgba(148, 163, 184, 0.12);
        }

        .about-point strong {
            display: block;
            margin-bottom: 0.25rem;
            color: #0f172a;
            font-size: 0.92rem;
        }

        .about-point span {
            font-size: 0.84rem;
            color: #475569;
        }

        .about-cta {
            margin-top: 1.1rem;
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        /* ===== HERO VIDEO ===== */
.hero-video-wrap{
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 18px 45px rgba(15,23,42,0.9);
  max-width: 420px;
  margin-left: auto;
  background: #0b1120;
}

.hero-video{
  display:block;
  width:100%;
  height:320px;
  object-fit:cover;
}

.hero-video-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:10px;
  background: linear-gradient(to top, rgba(2,6,23,0.55), rgba(2,6,23,0.05) 60%);
}

.hero-video-badge{
  align-self:flex-start;
  font-size:0.65rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(15,23,42,0.85);
  border:1px solid rgba(59,130,246,0.45);
  color:#bfdbfe;
}

.hero-video-cta a{
  align-self:flex-end;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color:#111827;
  font-weight:800;
  font-size:0.82rem;
  box-shadow: 0 10px 26px rgba(15,23,42,0.65);
}


.about-photo-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(148,163,184,0.5);
    max-width: 420px;          /* pak më e madhe dhe më e pastër */
    margin-left: auto;         /* e shtyn pak nga e djathta, duket më premium */
}

.about-photo-img {
    width: 100%;
    height: auto;              /* MOS e shtrij me lartësi fikse */
    display: block;
    object-fit: contain;       /* ruan formën origjinale të fotos */
    object-position: center;   /* qendra e fotos (logo + fytyra) në mes */
}


        /* =============== FAQ =============== */

        .faq { background: #f9fafb; }

        .faq-inner {
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border-radius: 0.9rem;
            border: 1px solid #e5e7eb;
            margin-bottom: 0.7rem;
            overflow: hidden;
            transition: box-shadow 0.15s ease, border-color 0.15s ease;
        }

        .faq-item.active {
            box-shadow: 0 14px 35px rgba(148,163,184,0.45);
            border-color: #1d4ed8;
        }

        .faq-question {
            width: 100%;
            padding: 0.9rem 1rem;
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.6rem;
            cursor: pointer;
        }

        .faq-question .q-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #111827;
            text-align: left;
        }

        .faq-icon {
            font-size: 1.3rem;
            color: #1d4ed8;
            transition: transform 0.2s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 1rem;
            transition: max-height 0.25s ease, padding-bottom 0.25s ease;
        }

        .faq-answer p {
            font-size: 0.85rem;
            margin: 0.2rem 0 0.9rem;
        }

        .faq-item.active .faq-icon { transform: rotate(45deg); }

        .faq-item.active .faq-answer {
            max-height: 160px;
            padding-bottom: 0.8rem;
        }

        /* =============== CONTACT =============== */

        .contact {
            background: radial-gradient(circle at top, #1d4ed8 0, #020617 55%, #020617 100%);
            color: #e5e7eb;
        }

        .contact-inner {
            max-width: 1120px;
            margin: 0 auto;
            text-align: center;
        }

        .contact .section-title { color: #f9fafb; }
        .contact .section-subtitle { color: #cbd5f5; }

        .contact-phone-main {
            font-size: 1.7rem;
            font-weight: 700;
            margin: 0.7rem 0 0.2rem;
        }

        .contact-phone-main a { color: #f97316; }

        .contact-note {
            font-size: 0.86rem;
            color: #cbd5f5;
            margin-bottom: 1.1rem;
        }

        .contact-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-bottom: 1rem;
        }

        .contact-highlight {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.7rem;
            border-radius: 999px;
            background: rgba(30, 41, 59, 0.75);
            border: 1px solid rgba(148, 163, 184, 0.35);
            color: #e2e8f0;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .contact-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.3rem;
        }

        .contact-btn-main {
            background: #ffffff;
            color: #111827;
            padding: 0.9rem 1.6rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 18px 45px rgba(15,23,42,0.8);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .contact-btn-main:hover {
            transform: translateY(-1px);
            box-shadow: 0 22px 60px rgba(15,23,42,0.9);
        }

        .contact-social-row {
            display: flex;
            justify-content: center;
            gap: 0.7rem;
            flex-wrap: wrap;
            margin-bottom: 0.8rem;
        }

        .social-btn {
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            font-size: 0.83rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            border: 1px solid rgba(148,163,184,0.8);
            cursor: pointer;
            background: rgba(15,23,42,0.7);
            transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
        }

        .social-btn svg { width: 17px; height: 17px; }

        .social-btn.insta { border-color: #f97316; }
        .social-btn.fb { border-color: #3b82f6; }

        .social-btn:hover {
            background: #020617;
            transform: translateY(-1px);
            box-shadow: 0 10px 26px rgba(15,23,42,0.9);
        }

        .contact-meta {
            font-size: 0.86rem;
            color: #9ca3af;
        }

        .contact-form {
            margin-top: 1.4rem;
            padding: 1rem;
            border-radius: 1rem;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(15, 23, 42, 0.58);
            box-shadow: 0 18px 40px rgba(2, 6, 23, 0.25);
        }

        .contact-form h3 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 0.35rem;
        }

        .contact-form p {
            color: #cbd5f5;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .contact-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.9rem;
        }

        .contact-field {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .contact-field.full {
            grid-column: 1 / -1;
        }

        .contact-field label {
            font-size: 0.83rem;
            color: #e2e8f0;
            font-weight: 600;
        }

        .contact-field input,
        .contact-field select,
        .contact-field textarea {
            width: 100%;
            border-radius: 0.85rem;
            border: 1px solid rgba(148, 163, 184, 0.45);
            background: rgba(255, 255, 255, 0.98);
            color: #0f172a;
            padding: 0.85rem 0.95rem;
            font: inherit;
        }

        .contact-field textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-form .contact-btn-main {
            width: 100%;
            justify-content: center;
            margin-top: 0.35rem;
        }

        .contact-form-note {
            margin-top: 0.8rem;
            font-size: 0.8rem;
            color: #93c5fd;
        }

        .contact-form-status {
            display: none;
            margin-top: 0.9rem;
            padding: 0.85rem 1rem;
            border-radius: 0.9rem;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .contact-form-status.is-visible {
            display: block;
        }

        .contact-form-status.is-success {
            background: rgba(22, 163, 74, 0.18);
            border: 1px solid rgba(74, 222, 128, 0.4);
            color: #dcfce7;
        }

        .contact-form-status.is-error {
            background: rgba(240, 68, 68, 0.16);
            border: 1px solid rgba(248, 113, 113, 0.4);
            color: #fee2e2;
        }


        /* Layout: map majtas, kontakt djathtas */
        .contact-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 1.5rem;
            align-items: flex-start;
            margin-top: 1.5rem;
        }

        .contact-map-card {
            background: #020617;
            border-radius: 0.9rem;
            border: 1px solid #1f2937;
            overflow: hidden;
        }

        .contact-map-header {
            padding: 0.7rem 0.9rem;
            border-bottom: 1px solid #1f2937;
        }

        .contact-map-header h3 {
            font-size: 0.9rem;
            color: #e5e7eb;
        }

        .contact-map-header p {
            font-size: 0.8rem;
            color: #9ca3af;
        }

        .contact-map-frame {
            width: 100%;
            height: 220px;   /* harta më e vogël */
            border: none;
            display: block;
        }

        .contact-content {
            text-align: left;
        }

        .contact-content .contact-phone-main {
            text-align: left;
        }

        .contact-content .contact-note,
        .contact-content .contact-meta {
            text-align: left;
        }


        .contact-email {
            font-size: 0.9rem;
            color: #e5e7eb;
            margin: 0.3rem 0 0.6rem;
        }

        .contact-email a {
            color: #f97316;
        }

        /* Butoni sekondar "Email Us" */
        .contact-btn-secondary {
            background: transparent;
            color: #e5e7eb;
            padding: 0.9rem 1.4rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(148,163,184,0.9);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
        }

        .contact-btn-secondary:hover {
            background: rgba(15,23,42,0.95);
            border-color: #93c5fd;
            transform: translateY(-1px);
        }

        .contact-actions {
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.3rem;
        }

        .area-icon {
            width: 28px;
            height: 28px;
            margin-bottom: 8px;
        }

        .area-icon svg {
            width: 28px;
            height: 28px;
            display: block;
        }

        /* Në mobile, butonat poshtë njëri-tjetrit (opsionale) */
        @media (max-width: 600px) {
            .contact-actions {
                flex-direction: column;
            }
        }

        /* Mobile: i vendos një mbi tjetrin */
        @media (max-width: 900px) {
            .contact-layout {
                grid-template-columns: minmax(0, 1fr);
            }

            .contact-content {
                text-align: center;
            }

            .contact-content .contact-phone-main,
            .contact-content .contact-note,
            .contact-content .contact-meta {
                text-align: center;
            }
        }


        /* =============== FOOTER =============== */

        .site-footer {
            background: #020617;
            border-top: 1px solid #111827;
            padding: 2.2rem 0 1.2rem;
        }

        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 1fr));
            gap: 1.5rem;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        .footer-bottom {
            max-width: 1120px;
            margin: 0.9rem auto 0;
            padding: 0 1.5rem;
            font-size: 0.8rem;
            color: #6b7280;
            display: flex;
            justify-content: space-between;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .footer-brand h3,
        .footer-links h4,
        .footer-areas h4 {
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .footer-brand p,
        .footer-links p,
        .footer-areas p {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
        }

        .footer-phone {
            color: #fb923c;
            font-weight: 700;
            font-size: 1rem;
            display: inline-block;
            margin-bottom: 0.7rem;
        }

        .footer-links a,
        .footer-areas a {
            display: block;
            margin-bottom: 0.45rem;
            color: #cbd5e1;
        }

        .footer-final-cta {
            margin-top: 0.8rem;
            color: #cbd5e1;
        }

        /* =============== SERVICE AREAS SECTION =============== */

        .service-areas-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 16px 35px;
            text-align: center;
        }

        .areas-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .areas-subtitle {
            font-size: 1rem;
            color: #555;
            margin-bottom: 25px;
        }

        .areas-grid {
            display: grid;
            gap: 18px;
        }

        .area-card {
            background-color: #ffffff;
            border: 1px solid #dde3ee;
            border-radius: 12px;
            padding: 18px 16px;
            text-align: left;
            transition: 0.25s ease;
            box-shadow: 0 4px 10px rgba(15, 35, 70, 0.06);
        }

        .area-card:hover {
            transform: translateY(-4px);
            border-color: #1f6fba;
            box-shadow: 0 12px 24px rgba(15, 35, 70, 0.15);
            background-color: #f8fbff;
        }

        .area-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #1f2937;
        }

        .area-card p {
            font-size: 0.94rem;
            color: #555;
        }

        /* Desktop grid */
        @media (min-width: 768px) {
            .areas-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ===== ACTION ROW (CALL + EMAIL + SOCIAL) ===== */
        .contact-actions-row {
            display: flex;
            gap: 0.9rem;
            flex-wrap: wrap;
            margin: 1.2rem 0;
        }

        .contact-action {
            background: #0f172a;
            border: 1px solid #334155;
            padding: 0.55rem 1rem;
            border-radius: 999px;
            color: #e2e8f0;
            font-size: 0.88rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: 0.2s ease;
        }

        .contact-action:hover {
            background: #1e293b;
            border-color: #f97316;
            color: #f97316;
            transform: translateY(-2px);
        }

        /* Mobile - bëhen në 2 rreshta automatikisht */
        @media (max-width: 600px) {
            .contact-actions-row {
                justify-content: center;
            }
        }

        /* =============== FLOATING CALL BUTTON =============== */

        .floating-call-btn {
            position: fixed;
            left: 1rem;
            right: 1rem;
            bottom: 0.9rem;
            min-height: 60px;
            border-radius: 999px;
            background: linear-gradient(135deg, #f97316, #fb923c);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            padding: 0 1.1rem;
            box-shadow: 0 18px 45px rgba(15,23,42,0.9);
            cursor: pointer;
            z-index: 1000;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            animation: pulse 2s infinite;
        }

        .floating-call-btn svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .floating-call-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 60px rgba(15,23,42,1);
        }

        .floating-call-btn span {
            font-size: 1rem;
            font-weight: 800;
            color: #111827;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.07); }
            100% { transform: scale(1); }
        }

        /* =============== RESPONSIVE =============== */

        @media (max-width: 900px) {
            .hero-inner {
                grid-template-columns: minmax(0, 1fr);
            }
            .hero-right { order: 0; }

            .benefit-grid,
            .why-grid,
            .services-grid,
            .offers-grid,
            .reviews-grid,
            .proof-grid,
            .footer-inner {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .about-inner { grid-template-columns: minmax(0, 1fr); }
            .about-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .footer-inner { flex-direction: column; align-items: flex-start; }
            .home-cta-panel {
                align-items: flex-start;
            }
        }

        @media (max-width: 760px) {
            body { padding-bottom: 5.8rem; }
            .hero {
                padding: 2rem 0 3.25rem;
            }
            .hero-inner { padding-top: 1rem; }
            .hero-title {
                font-size: clamp(2rem, 10vw, 2.5rem);
            }
            .hero-subtitle,
            .hero-phone-note {
                max-width: none;
            }
            .hero-cta-row a {
                width: 100%;
                justify-content: center;
            }
            .hero-card-main {
                grid-template-columns: minmax(0, 1fr);
            }
            .hero-video {
                height: 260px;
            }
            .hero-video-wrap {
                max-width: none;
                margin-left: 0;
            }
            .hero-service-strip {
                justify-content: flex-start;
            }
            .home-cta-panel {
                padding: 1.1rem;
            }
            .home-cta-actions {
                width: 100%;
            }
            .home-cta-actions a {
                width: 100%;
                justify-content: center;
            }
            .benefit-item {
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
            }
            .benefit-item:last-child {
                border-bottom: none;
            }

            .benefit-grid,
            .why-grid,
            .services-grid,
            .offers-grid,
            .reviews-grid,
            .proof-grid,
            .contact-form-grid,
            .about-points,
            .footer-inner {
                grid-template-columns: minmax(0, 1fr);
            }

            .cta-band,
            .reviews-callout {
                padding: 1.2rem;
            }

            .cta-band-actions,
            .about-cta {
                width: 100%;
            }

            .cta-band-actions a,
            .about-cta a {
                width: 100%;
                justify-content: center;
            }

            .floating-call-btn {
                bottom: 1rem;
            }
        }

        @media (max-width: 560px) {
            .brand-subtitle {
                display: none;
            }

            .header-call-btn {
                padding: 0.45rem 0.8rem;
                font-size: 0.76rem;
            }

            .hero-badges span,
            .contact-highlight,
            .hero-service-strip span {
                width: 100%;
                justify-content: center;
            }

            .review-card,
            .service-card,
            .why-card,
            .area-card,
            .proof-card,
            .offer-card {
                padding: 1rem;
            }
        }

        @media (min-width: 761px) {
            .floating-call-btn {
                display: none;
            }
        }
.header-nav a.is-active,
.mobile-nav a.is-active {
    color: #ffffff;
}

.header-nav a.is-active::after {
    width: 100%;
}

.page-hero {
    padding: 3rem 0 3.25rem;
}

.page-hero .hero-inner {
    grid-template-columns: minmax(0, 1fr);
}

.page-hero .hero-subtitle {
    max-width: 44rem;
}
