/* Kristeg Inox — stili kryesor */
:root {
  --red: #E31E24;
  --red-dark: #B8141A;
  --red-soft: #FDECEC;
  --ink: #16181B;
  --steel: #262B31;
  --steel-2: #353B43;
  --muted: #5C646E;
  --line: #E2E5E9;
  --bg: #FFFFFF;
  --bg-soft: #F3F4F6;
  --wa: #25D366;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(16,24,40,.06), 0 6px 18px rgba(16,24,40,.07);
  --shadow-lg: 0 18px 40px rgba(16,24,40,.16);
  --f-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --f-head: 'Barlow Condensed', 'Arial Narrow', 'Barlow', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; font-family: var(--f-body); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--bg); }
img, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
h1, h2, h3, .h2, .h3 { font-family: var(--f-head); line-height: 1.08; margin: 0 0 .5em; letter-spacing: .005em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
.h2, h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; }
h3, .h3 { font-size: 1.3rem; font-weight: 700; }
p { margin: 0 0 1em; }
svg { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }
.mt { margin-top: 24px; }
.small { font-size: .85rem; color: var(--muted); }
.center { text-align: center; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; border-radius: 6px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* Butonat */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .78em 1.3em; border-radius: 8px; font-weight: 700; font-size: 1rem; line-height: 1.1; border: 2px solid transparent; cursor: pointer; transition: transform .15s, background .15s, color .15s, border-color .15s; font-family: var(--f-body); white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: .95em 1.6em; font-size: 1.06rem; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--steel-2); color: #fff; }
.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { color: var(--red-dark); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1eb656; color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-glass:hover { background: #fff; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.link-more { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; white-space: nowrap; }

/* Topbar & header */
.topbar { background: var(--ink); color: #c9cdd2; font-size: .85rem; }
.topbar .wrap { display: flex; gap: 22px; align-items: center; min-height: 36px; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar a { color: #c9cdd2; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar .tb-right { margin-left: auto; gap: 16px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); }
.hdr { display: flex; align-items: center; gap: 20px; min-height: 76px; }
.logo img { width: 170px; height: auto; }
.nav { margin-left: auto; }
.nav > ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav > ul > li { position: relative; }
.nav > ul > li > a { display: block; padding: 10px 12px; color: var(--ink); font-weight: 600; font-size: .98rem; border-radius: 6px; }
.nav > ul > li > a:hover, .nav > ul > li.active > a { color: var(--red); }
.nav > ul > li.active > a { box-shadow: inset 0 -3px 0 var(--red); border-radius: 0; }
.sub-toggle { display: none; }
.mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); width: 640px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 14px; opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s, visibility .18s; }
.mega-sm { width: 320px; }
.has-sub:hover .mega, .has-sub:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega-grid.one { grid-template-columns: 1fr; }
.mega a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; color: var(--ink); font-weight: 500; font-size: .95rem; }
.mega a:hover { background: var(--bg-soft); color: var(--red); }
.mi { width: 30px; height: 30px; display: grid; place-items: center; background: var(--bg-soft); border-radius: 8px; font-size: 1rem; }
.mega-all { margin-top: 6px; border-top: 1px solid var(--line); border-radius: 0 !important; justify-content: center; font-weight: 700 !important; color: var(--red) !important; }
.hdr-phone { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; font-size: 1.1rem; white-space: nowrap; font-family: var(--f-head); letter-spacing: .02em; }
.hdr-phone svg { width: 38px; height: 38px; padding: 9px; border-radius: 50%; background: var(--red); fill: #fff; }
.hdr-phone small { display: block; font-family: var(--f-body); font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.burger { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; padding: 11px; }
.burger span { display: block; height: 3px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-cta { display: none; }

.crumbs { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: .88rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 10px 0; }
.crumbs li { color: var(--muted); }
.crumbs li + li::before { content: '›'; margin: 0 6px; color: #9aa1a9; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--red); }

/* Hero */
.hero { position: relative; color: #fff; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--steel); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,16,19,.94) 0%, rgba(14,16,19,.78) 45%, rgba(14,16,19,.35) 100%); }
.hero-inner { position: relative; z-index: 1; padding-top: 70px; padding-bottom: 70px; max-width: 1240px; }
.hero h1 { color: #fff; max-width: 820px; font-size: clamp(2.3rem, 5.6vw, 4rem); }
.hero h1 em { font-style: normal; color: #ff5a5f; }
.hero .lead { font-size: 1.2rem; color: #dfe2e6; max-width: 680px; }
.hero-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px 26px; color: #e6e8eb; font-weight: 600; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points svg { fill: #ff5a5f; }
.eyebrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.eyebrow.light { color: #ff8589; }
.lead { font-size: 1.14rem; color: var(--muted); }

.trust { background: var(--red); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-grid > div { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; padding: 22px 18px; align-items: center; border-right: 1px solid rgba(255,255,255,.22); }
.trust-grid > div:last-child { border-right: 0; }
.trust svg { grid-row: span 2; width: 34px; height: 34px; padding: 7px; background: rgba(255,255,255,.18); border-radius: 50%; }
.trust strong { font-family: var(--f-head); font-size: 1.3rem; line-height: 1.1; }
.trust span { font-size: .9rem; opacity: .9; }

/* Seksionet */
.section { padding: 76px 0; }
.section.alt { background: var(--bg-soft); }
.sec-head { max-width: 760px; margin-bottom: 34px; }
.sec-head p { color: var(--muted); font-size: 1.08rem; }
.sec-head.row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; max-width: none; }

.page-head { padding: 56px 0 50px; background: linear-gradient(180deg, var(--bg-soft), #fff); border-bottom: 1px solid var(--line); }
.page-head.center { text-align: center; padding: 100px 0; }
.page-head .lead { max-width: 760px; }
.page-head.with-img { padding: 50px 0; }
.ph-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.ph-grid p { color: #3d444c; }
.ph-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-lg); }

/* Kartat e kategorive */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-grid.three { grid-template-columns: repeat(3, 1fr); }
.cat-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; color: var(--ink); display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s, border-color .2s; }
.cat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); color: var(--ink); border-color: transparent; }
.cat-img { aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card:hover .cat-img img { transform: scale(1.05); }
.cat-body { padding: 14px 16px 16px; position: relative; }
.cat-icon { position: absolute; top: -22px; right: 14px; width: 44px; height: 44px; display: grid; place-items: center; background: #fff; border-radius: 50%; box-shadow: var(--shadow); font-size: 1.25rem; }
.cat-body h3 { font-size: 1.22rem; margin: 0 0 4px; padding-right: 40px; }
.cat-count { font-size: .85rem; color: var(--muted); }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sector { display: grid; grid-template-columns: 52px 1fr; column-gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.sector:hover { border-color: var(--red); box-shadow: var(--shadow); color: var(--ink); }
.sector span { grid-row: span 2; width: 52px; height: 52px; display: grid; place-items: center; background: var(--red-soft); border-radius: 12px; font-size: 1.5rem; }
.sector strong { font-family: var(--f-head); font-size: 1.25rem; line-height: 1.1; }
.sector small { color: var(--muted); font-size: .88rem; line-height: 1.35; }
.sector-grid.big .sector { align-items: start; }

/* Kartat e postimeve */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-link { color: var(--ink); display: flex; flex-direction: column; height: 100%; }
.card-link:hover { color: var(--ink); }
.card-img { position: relative; aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-noimg { height: 100%; display: grid; place-items: center; font-family: var(--f-head); font-size: 1.6rem; color: #b5bac1; }
.badge-count, .badge-video { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.72); color: #fff; font-size: .78rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.badge-video { right: auto; left: 10px; background: var(--red); }
.card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { font-family: var(--f-body); font-size: 1.04rem; font-weight: 700; line-height: 1.35; margin: 0; flex: 1; }
.card-body time { font-size: .83rem; color: var(--muted); }
.tag { display: inline-flex; align-items: center; gap: 4px; align-self: flex-start; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--red); background: var(--red-soft); padding: 3px 9px; border-radius: 20px; }
.tag svg { width: .95em; height: .95em; }

.chips, .city-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips.center { justify-content: center; margin: 20px 0; }
.chips a, .city-chips a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 30px; color: var(--ink); font-weight: 600; font-size: .92rem; transition: .15s; }
.chips a:hover, .city-chips a:hover { border-color: var(--red); color: var(--red); }

.types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.type { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 10px; padding: 20px 20px 10px; scroll-margin-top: 110px; }
.type h3, .type .h3 { margin-bottom: 6px; }
.type p { color: var(--muted); font-size: .98rem; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.g-item { aspect-ratio: 1; overflow: hidden; border-radius: 10px; background: #ddd; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.g-item:hover img { transform: scale(1.06); }

.cat-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 34px; }
.cl-item h2 { font-size: 1.35rem; }
.cl-item h2 a { color: var(--ink); }
.cl-item ul { margin: 0; padding-left: 18px; color: var(--muted); }
.cl-item li a { color: var(--muted); }
.cl-item li a:hover { color: var(--red); }

/* Procesi */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.steps li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px 20px 12px; }
.steps span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--f-head); font-weight: 800; font-size: 1.3rem; margin-bottom: 14px; }
.steps li:first-child span { background: var(--red); }
.steps p { color: var(--muted); font-size: .96rem; }

/* Rreth */
.ah-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stats > div { background: var(--ink); color: #fff; border-radius: 12px; padding: 24px 20px; }
.stats > div:nth-child(1) { background: var(--red); }
.stats strong { display: block; font-family: var(--f-head); font-size: 2.4rem; line-height: 1; margin-bottom: 6px; }
.stats span { font-size: .92rem; color: #d4d8dc; }
.stats > div:nth-child(1) span { color: #ffe1e2; }
.prose p { font-size: 1.07rem; color: #2f353c; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 700; font-size: 1.08rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 6px; top: 12px; font-size: 1.6rem; color: var(--red); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 8px; }

/* CTA */
.cta-band { background: linear-gradient(120deg, var(--red) 0%, #c3161c 100%); color: #fff; padding: 48px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { margin: 0; color: #ffe3e4; max-width: 640px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Kontakt */
.cb-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 42px; height: 42px; padding: 10px; background: var(--red-soft); fill: var(--red); border-radius: 10px; }
.contact-list strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--red); }
.map { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); min-height: 380px; background: var(--bg-soft); }
.map iframe { width: 100%; height: 420px; border: 0; }
.form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: .93rem; }
.form input, .form select, .form textarea { font: inherit; font-weight: 400; padding: 12px 14px; border: 1px solid #cdd2d8; border-radius: 8px; background: #fff; width: 100%; color: var(--ink); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; }

/* Qytetet */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.facts > div { background: var(--bg-soft); border-radius: 12px; padding: 20px; border-top: 4px solid var(--red); }
.facts strong { display: block; font-family: var(--f-head); font-size: 1.8rem; line-height: 1.1; }
.facts span { color: var(--muted); font-size: .92rem; }
.city-facts { padding: 34px 0 0; }
.qark-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.qark h2 { font-size: 1.3rem; border-bottom: 2px solid var(--red); padding-bottom: 6px; }
.qark ul { list-style: none; padding: 0; margin: 0; }
.qark li { display: flex; justify-content: space-between; gap: 8px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.qark li a { color: var(--ink); font-weight: 600; }
.qark li a:hover { color: var(--red); }
.qark li span { font-size: .8rem; color: var(--red); font-weight: 700; white-space: nowrap; }

.filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.filter button { font: inherit; font-weight: 600; font-size: .92rem; padding: 7px 14px; border-radius: 30px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.filter button.on, .filter button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Postimi */
.post { padding: 44px 0 60px; }
.post-head h1 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; }
.post-meta time { color: var(--muted); font-size: .9rem; margin-left: 4px; }
.post-gallery { display: grid; gap: 8px; margin: 24px 0; grid-template-columns: repeat(4, 1fr); }
.post-gallery .pg-item { overflow: hidden; border-radius: 10px; background: var(--bg-soft); aspect-ratio: 1; }
.post-gallery .pg-item:first-child { grid-column: 1 / -1; aspect-ratio: auto; max-height: 620px; }
.post-gallery .pg-item:first-child img { width: 100%; height: 100%; max-height: 620px; object-fit: contain; background: #111; }
.post-gallery .pg-item img { width: 100%; height: 100%; object-fit: cover; }
.post-gallery.n2 { grid-template-columns: 1fr; }
.post-video { width: 100%; max-height: 640px; border-radius: 10px; background: #000; margin: 20px 0; }
.post-body { font-size: 1.1rem; line-height: 1.75; color: #22272d; overflow-wrap: anywhere; }
.post-cta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; background: var(--ink); color: #fff; border-radius: 14px; padding: 22px 24px; margin: 34px 0 20px; }
.post-cta strong { display: block; font-family: var(--f-head); font-size: 1.45rem; }
.post-cta span { color: #c6cbd1; }
.post-cta .btn-row { margin: 0; }
.post-src a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }

.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 40px; }
.pager a, .pager span { min-width: 42px; padding: 9px 13px; text-align: center; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); font-weight: 600; }
.pager a:hover { border-color: var(--red); color: var(--red); }
.pager span[aria-current] { background: var(--red); color: #fff; border-color: var(--red); }

/* Lightbox */
.lb { position: fixed; inset: 0; background: rgba(8,9,11,.94); z-index: 200; display: flex; align-items: center; justify-content: center; }
.lb img { max-width: 94vw; max-height: 88vh; object-fit: contain; border-radius: 6px; }
.lb button { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.lb button:hover { background: rgba(255,255,255,.25); }
.lb .lb-close { top: 16px; right: 16px; }
.lb .lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Footer */
.site-footer { background: var(--ink); color: #aeb4bb; padding: 64px 0 24px; font-size: .95rem; }
.site-footer h3 { color: #fff; font-size: 1.2rem; margin-bottom: 14px; }
.site-footer h3.mt { margin-top: 26px; }
.site-footer a { color: #cfd3d8; }
.site-footer a:hover { color: #fff; }
.f-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 36px; }
.f-brand img { width: 150px; margin-bottom: 16px; }
.f-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.f-contact svg { margin-top: 4px; fill: var(--red); }
.f-social a { display: inline-flex; align-items: center; gap: 8px; }
.f-cities { border-top: 1px solid #2d3238; margin-top: 40px; padding-top: 26px; }
.f-cities p { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.f-bottom { border-top: 1px solid #2d3238; margin-top: 10px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .86rem; }
.f-bottom p { margin: 0; }

.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.mobile-bar { display: none; }

/* Responsive */
@media (max-width: 1180px) {
  .hdr-phone span { display: none; }
  .nav > ul > li > a { padding: 10px 9px; font-size: .95rem; }
}
@media (max-width: 1000px) {
  .topbar span:nth-child(2) { display: none; }
  .burger { display: block; }
  /* backdrop-filter do e bënte header-in bllok përmbajtës për menunë fixed */
  .site-header { backdrop-filter: none; background: #fff; }
  .nav:not(.open) { visibility: hidden; }
  .hdr-phone { margin-left: auto; }
  .hdr-phone + .burger { margin-left: 4px; }
  .nav { position: fixed; inset: 0 0 0 auto; top: 0; width: min(380px, 88vw); background: #fff; z-index: 70; padding: 84px 20px 30px; overflow-y: auto; transform: translateX(100%); transition: transform .25s, visibility .25s; box-shadow: var(--shadow-lg); margin: 0; }
  .nav.open { transform: none; }
  body.nav-open::after { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 65; }
  .burger { position: relative; z-index: 80; }
  .nav > ul { flex-direction: column; gap: 0; }
  .nav > ul > li { border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; }
  .nav > ul > li > a { flex: 1; padding: 14px 4px; font-size: 1.08rem; }
  .nav > ul > li.active > a { box-shadow: none; }
  .sub-toggle { display: block; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
  .sub-toggle::after { content: ''; position: absolute; left: 50%; top: 45%; width: 9px; height: 9px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: translate(-50%, -50%) rotate(45deg); transition: .2s; }
  .sub-toggle[aria-expanded="true"]::after { transform: translate(-50%, -20%) rotate(-135deg); }
  .mega, .mega-sm { position: static; transform: none !important; width: 100%; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 10px; display: none; }
  .has-sub.sub-open .mega { display: block; }
  .has-sub:hover .mega { transform: none; }
  .mega-grid { grid-template-columns: 1fr; }
  .nav-mobile-cta { display: grid; gap: 10px; margin-top: 22px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .sector-grid, .types, .cat-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .ph-grid, .ah-grid, .cb-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .qark-grid, .facts { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 64px; }
  .wrap { padding: 0 16px; }
  .topbar { display: none; }
  .hdr { min-height: 64px; gap: 10px; }
  .logo img { width: 132px; }
  .hdr-phone svg { width: 40px; height: 40px; }
  .hero { min-height: 0; }
  .hero::after { background: linear-gradient(180deg, rgba(14,16,19,.62) 0%, rgba(14,16,19,.82) 55%, rgba(14,16,19,.92) 100%); }
  .hero-inner { padding-top: 48px; padding-bottom: 48px; }
  .hero .lead { font-size: 1.05rem; }
  .hero .btn-row .btn { width: 100%; }
  .section { padding: 52px 0; }
  .sec-head.row { flex-direction: column; align-items: flex-start; }
  .cat-grid, .cat-grid.three { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-body { padding: 12px; }
  .cat-body h3 { font-size: 1.05rem; padding-right: 0; }
  .cat-icon { width: 36px; height: 36px; top: -18px; font-size: 1rem; }
  .cards, .sector-grid, .types, .cat-list, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { padding: 16px 10px; }
  .trust strong { font-size: 1.08rem; }
  .trust span { font-size: .8rem; }
  .f-grid, .qark-grid, .f-row { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts strong { font-size: 1.4rem; }
  .stats strong { font-size: 2rem; }
  .post-gallery { grid-template-columns: repeat(3, 1fr); }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .post-cta .btn-row, .post-cta .btn { width: 100%; }
  .wa-float { display: none; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(0,0,0,.08); padding-bottom: env(safe-area-inset-bottom); }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; font-size: .78rem; font-weight: 700; color: var(--ink); }
  .mobile-bar a:first-child { background: var(--red); color: #fff; }
  .mobile-bar a.wa { color: #128C4A; }
  .mobile-bar svg { width: 22px; height: 22px; }
  .map iframe { height: 320px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }
