/* ── MODERN SITE NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(72, 58, 42, .08);
  background: rgba(253, 251, 247, 0.97);
}
.site-nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 32px;
  box-shadow: none;
  min-height: 72px;
  transition: none;
}
.site-nav.scrolled .site-nav-inner {
  box-shadow: none;
}

.site-nav-logo {
  display: flex; align-items: center; flex-shrink: 0;
  padding: 2px 4px 2px 0;
}
.site-nav-logo img,
.site-nav-logo-img {
  height: 68px; width: auto; display: block;
  transition: transform .25s;
  background: transparent !important;
}
.site-nav-logo:hover img { transform: scale(1.04); }

.site-nav-pill { flex: 1; display: flex; justify-content: center; }
.site-nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), var(--shadow-sm);
}
.site-nav-links a {
  display: block; padding: 8px 16px;
  border-radius: 999px;
  font-size: .84rem; font-weight: 500;
  color: var(--text-mid); text-decoration: none;
  transition: background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.site-nav-links a:hover { color: var(--brand); background: rgba(60,150,143,.08); }
.site-nav-links a.active {
  background: var(--brand); color: #fff;
  box-shadow: 0 2px 12px rgba(60,150,143,.35);
  font-weight: 600;
}

.site-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-nav-wa {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.site-nav-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.site-nav-cta {
  padding: 10px 22px;
  background: var(--brand); color: #fff !important;
  border-radius: 999px; font-weight: 600; font-size: .84rem;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.site-nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(60,150,143,.35);
}

.site-nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 12px; cursor: pointer; padding: 0;
  transition: background .2s, border-color .2s;
  position: relative; z-index: 1002;
}
.site-nav-toggle:hover { background: var(--brand-light); border-color: var(--brand); }
.site-nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.site-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — slide drawer */
.site-mobile-overlay {
  position: fixed; inset: 0; z-index: 1100;
  pointer-events: none; visibility: hidden;
  transition: visibility .3s;
}
.site-mobile-overlay.open {
  pointer-events: auto; visibility: visible;
}
.site-mobile-backdrop {
  position: absolute; inset: 0;
  background: rgba(13, 31, 30, .45);
  backdrop-filter: blur(4px);
  border: none; padding: 0; margin: 0; cursor: pointer;
  opacity: 0; transition: opacity .3s ease;
}
.site-mobile-overlay.open .site-mobile-backdrop { opacity: 1; }

.site-mobile-menu {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: rgba(253, 251, 247, 0.95);
  box-shadow: -8px 0 40px rgba(13, 31, 30, .15);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}
.site-mobile-overlay.open .site-mobile-menu { transform: translateX(0); }

.site-mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.site-mobile-menu-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  color: var(--text-dark); letter-spacing: -.3px;
}
.site-mobile-close {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text-mid); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.site-mobile-close:hover { background: var(--brand-light); color: var(--brand); }

.site-mobile-nav {
  flex: 1; overflow-y: auto; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.site-mobile-link {
  display: flex; align-items: center;
  padding: 14px 16px; border-radius: var(--radius-md);
  font-size: .95rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: background .15s, color .15s;
}
.site-mobile-link:hover { background: var(--surface-2); color: var(--brand); }
.site-mobile-link.active {
  background: var(--brand-light); color: var(--brand); font-weight: 700;
  box-shadow: inset 3px 0 0 var(--brand);
}

.site-mobile-actions {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.site-mobile-wa {
  display: flex !important; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 16px !important; border-radius: 999px !important;
  background: #e8faf0 !important; color: #128c7e !important;
  font-weight: 600 !important; font-size: .9rem !important;
  text-decoration: none;
}
.site-mobile-wa svg { flex-shrink: 0; }
.site-mobile-cta {
  display: block !important; text-align: center;
  padding: 14px 16px !important;
  background: var(--brand) !important; color: #fff !important;
  border-radius: 999px !important; font-weight: 700 !important;
  font-size: .92rem !important; text-decoration: none;
}

/* ── MODERN FOOTER ── */
.site-footer {
  background: linear-gradient(160deg, #1a3d3a 0%, #2d7a73 45%, #3c968f 100%);
  color: rgba(255,255,255,.85);
  padding: 40px 32px 0;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.site-footer-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 24px 28px;
  padding-bottom: 20px;
  align-items: start;
}

.site-footer-logo {
  display: inline-block;
  background: rgba(253, 251, 247, 0.95);
  border-radius: 12px;
  padding: 8px 14px;
  margin-bottom: 12px;
  transition: transform .25s;
}
.site-footer-logo:hover { transform: translateY(-2px); }
.site-footer-logo img { height: 40px; width: auto; display: block; }

.site-footer-brand p {
  font-size: .84rem; line-height: 1.65;
  color: rgba(255,255,255,.7); max-width: 260px; margin-bottom: 0;
}

.site-footer-contacts {
  display: flex; flex-direction: row; flex-wrap: wrap;
  align-items: center; gap: 10px 28px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer-contacts a, .site-footer-loc {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.75);
  text-decoration: none; transition: color .2s;
  white-space: nowrap;
}
.site-footer-contacts a:hover { color: #fff; }
.fc-icon {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0;
}

.site-footer-col h4 {
  font-size: .7rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px; opacity: .9;
}
.site-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.site-footer-col a {
  font-size: .84rem; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .2s, padding-left .2s;
}
.site-footer-col a:hover { color: #fff; padding-left: 4px; }

.site-footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 14px 0;
}

@media (max-width: 768px) {
  .site-footer-contacts {
    flex-direction: column; align-items: flex-start; gap: 10px;
    padding: 14px 0;
  }
  .site-footer-contacts a, .site-footer-loc { white-space: normal; }
}
.site-footer-bar p { font-size: .8rem; color: rgba(255,255,255,.45); }

.site-footer-socials { display: flex; gap: 8px; }
.sf-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.8);
  text-decoration: none; text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.sf-social:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.sf-social.sf-wa { background: #25d366; color: #fff; }
.sf-social.sf-wa:hover { background: #1fb855; }
.sf-social.sf-wa svg { width: 18px; height: 18px; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.12); }
}

/* Back to top — above whatsapp */
#backTop { bottom: 96px; }

/* Page offset for fixed nav */
body { padding-top: 84px; }
.page-hero { padding-top: 32px !important; }
.home-page .home-hero { margin-top: -84px; padding-top: 100px; }
.blog-hero { padding-top: 28px; }

@media (max-width: 1100px) {
  .site-nav-pill { display: none; }
  .site-nav-toggle { display: flex; }
  .site-nav-cta { display: none; }
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer-brand { grid-column: span 2; }
  body.menu-open .site-nav { z-index: 1101; }

  /* Mobile header — menu majtas, logo qendër */
  .site-nav {
    padding: 0;
    background: rgba(253, 251, 247, 0.97);
  }
  .site-nav-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 0;
    max-width: none;
    min-height: 56px;
    padding: 8px 16px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-nav.scrolled .site-nav-inner { box-shadow: none; }
  .site-nav-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    padding: 0;
  }
  .site-nav-logo img,
  .site-nav-logo-img { height: 38px; }
  .site-nav-actions {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    gap: 0;
  }
  .site-nav-wa { display: none; }
  .site-nav-toggle {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: var(--surface-2);
  }

  body { padding-top: 56px; }
  .home-page .home-hero { margin-top: -56px; }
  .page-hero { padding-top: 16px !important; }
}

@media (max-width: 640px) {
  .site-nav-inner { padding: 8px 14px; min-height: 52px; }
  .site-nav-logo img,
  .site-nav-logo-img { height: 36px; }
  .site-footer { padding: 32px 20px 0; }
  .site-footer-grid { grid-template-columns: 1fr; }
  .site-footer-brand { grid-column: span 1; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 16px; }
  #backTop { bottom: 80px; right: 16px; }
}
