/* ============ Egalitus OJF — Stilizimi kryesor ============ */
:root {
  --navy: #011228;
  --navy-2: #0a1f3d;
  --navy-3: #14315c;
  --gold: #d4a437;
  --gold-2: #e8b94a;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --border: #e5e7eb;
  --shadow: 0 6px 18px rgba(10, 31, 61, 0.08);
  --radius: 10px;
  --container: 1024px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body, h1, h2, h3, h4, h5, p, a, li, span { overflow-wrap: break-word; word-wrap: break-word; }
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: #f7f7f7;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
/* prevent grid/flex items from expanding container past viewport */
.home-hero-grid > *,
.home-field-grid > *,
.home-program-grid > *,
.home-footer-grid > *,
.about-grid > *,
.values-grid > *,
.contact-grid > *,
.fushat-grid > *,
.programet-grid > *,
.pub-grid > *,
.donors-grid > *,
.footer-grid > * { min-width: 0; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- NAVBAR (sub-pages) ---------- */
.navbar {
  background: var(--navy);
  width: 100%;
}
.nav-inner {
  max-width: var(--hp-max, 1180px);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--hp-pad, 30px);
  position: relative;
  min-height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; letter-spacing: 1px; }
.brand .logo-mark { width: 38px; height: 38px; }
.brand img.brand-img { height: 46px; width: auto; display: block; }
.brand .brand-name { font-size: 18px; }
.brand .brand-name span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; padding: 8px 0; position: relative; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold);
}
/* Butoni "Na Kontakto": në Pamje → Menu vendosni klasën `btn-contact` vetëm te elementi i menusë (<li>).
   Nëse `btn-contact` është edhe te <a>, shfaqen dy kufij. Stili aplikohet vetëm te lidhja. */
.navbar .nav-links > li.btn-contact,
.navbar .nav-links li.menu-item.btn-contact {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}
.navbar .nav-links > li.btn-contact > a,
.navbar .nav-links li.menu-item.btn-contact > a,
.navbar .nav-links a.btn-contact {
  display: inline-block;
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 9px 16px !important;
  border-radius: 3px;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.navbar .nav-links > li.btn-contact > a:hover,
.navbar .nav-links li.menu-item.btn-contact > a:hover,
.navbar .nav-links a.btn-contact:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.navbar .nav-links > li.btn-contact > a::after,
.navbar .nav-links li.menu-item.btn-contact > a::after,
.navbar .nav-links a.btn-contact::after {
  display: none !important;
  content: none !important;
}
.menu-toggle { display: none; background: none; border: 0; color: #fff; font-size: 24px; cursor: pointer; }

/* ---------- HERO ---------- */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 70px 0 90px;
  position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-logo {
  width: 220px; height: 220px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.hero-logo svg { width: 100%; height: 100%; }
.hero-title-brand { font-size: 56px; font-weight: 800; color: var(--gold); letter-spacing: 4px; }
.hero-title-sub { font-size: 13px; letter-spacing: 4px; color: #fff; margin-top: 4px; opacity: 0.95; }
.hero-line { width: 40px; height: 3px; background: var(--gold); margin: 14px auto 0; }

.hero-right h1 {
  font-size: 48px; line-height: 1.15; font-weight: 800;
  color: var(--gold); letter-spacing: 1px; margin-bottom: 22px;
}
.hero-right p { color: #d6dfee; max-width: 520px; margin-bottom: 26px; font-size: 15px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 6px;
  font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s; cursor: pointer; border: 0;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }

/* Hero image area (columns + flags) */
.hero-image {
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, #0d2649 0%, #0a1f3d 100%);
  height: 380px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.hero-image .col {
  position: relative;
  border-left: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.25) 100%);
}
.hero-image .col::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 35px;
  background: linear-gradient(180deg, #1a3768, transparent);
}
.hero-image .col::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 30px;
  background: linear-gradient(0deg, #1a3768, transparent);
}
.flag { width: 60%; aspect-ratio: 2/3; box-shadow: 0 4px 20px rgba(0,0,0,0.4); border-radius: 2px; overflow: hidden; }
.flag svg { width: 100%; height: 100%; display: block; }

/* ---------- SECTION HEADERS ---------- */
.section { padding: 36px 30px; background: #ffffff; width: 100%; }
.section-alt { background: var(--bg-alt); }
.section .container {
  max-width: var(--hp-max, 1180px);
  margin: 0 auto;
  padding: 0;
}
.section-title {
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px; font-weight: 700; letter-spacing: 2px;
  color: var(--navy); margin-bottom: 6px; text-transform: uppercase;
}
.section-line { width: 50px; height: 3px; background: var(--gold); margin: 0 auto 24px; }

/* ---------- FUSHAT (cards) ---------- */
.fushat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.fushat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.fushat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.fushat-icon {
  width: 48px; height: 48px; flex: 0 0 48px;
  display: grid; place-items: center;
  color: var(--gold);
}
.fushat-icon i { font-size: 32px; }
.fushat-card h3 {
  font-size: 14px; font-weight: 700; color: var(--navy);
  letter-spacing: 1px; margin-bottom: 8px; text-transform: uppercase;
}
.fushat-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ---------- PROGRAMET ---------- */
.programet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.program-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; display: flex; gap: 18px; align-items: flex-start;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.program-icon {
  width: 50px; height: 50px; flex: 0 0 50px; display: grid; place-items: center;
  color: var(--gold);
}
.program-icon i { font-size: 32px; }
.program-card h3 {
  font-size: 13px; font-weight: 700; color: var(--navy);
  letter-spacing: 1px; margin-bottom: 8px; text-transform: uppercase;
}
.program-card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.program-link {
  color: var(--gold); font-weight: 700; font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase;
}
.program-link i { margin-left: 6px; transition: margin-left .2s; }
.program-link:hover i { margin-left: 12px; }

/* ---------- FOOTER (sub pages) ---------- */
.footer {
  background: var(--navy); color: #fff; padding: 18px 30px 8px;
  width: 100%;
}
.footer .container {
  max-width: var(--hp-max, 1180px);
  margin: 0 auto;
  padding: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 26px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.11);
  align-items: start;
}
.footer-brand .brand { color: #fff; margin-bottom: 10px; }
.footer-brand img.brand-img { height: 46px; width: auto; margin-bottom: 8px; }
.footer-brand p { font-size: 11px; color: #cfd7e6; max-width: 260px; }
.footer h4 {
  color: #fff; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 8px; font-weight: 700;
}
.footer-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; list-style: none; }
.footer-menu a { font-size: 11px; color: #cfd7e6; transition: color .2s; }
.footer-menu a:hover { color: var(--gold); }
.footer-contact p { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; margin-bottom: 6px; color: #cfd7e6; }
.footer-contact i { color: var(--gold); margin-top: 3px; width: 14px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  background: transparent;
  display: grid; place-items: center; transition: background .2s, color .2s;
  font-size: 14px;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  text-align: center;
  padding: 8px 0 4px; color: #cfd7e6; font-size: 11px;
}

/* ---------- PAGE BANNER (sub pages) ---------- */
.page-banner {
  background: var(--navy); color: #fff; padding: 50px 30px 44px; text-align: center;
  width: 100%;
}
.page-banner .container {
  max-width: var(--hp-max, 1180px);
  margin: 0 auto;
  padding: 0;
}
.page-banner h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px; color: var(--gold); font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 8px;
}
.page-banner p { color: #c8d3e6; max-width: 640px; margin: 0 auto; font-size: 13px; }
.page-banner .line { width: 50px; height: 3px; background: var(--gold); margin: 12px auto 14px; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}
.about-grid h2 {
  font-size: 24px; color: var(--navy); font-weight: 800;
  letter-spacing: 1px; margin-bottom: 16px; text-transform: uppercase;
}
.about-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.about-grid p:last-child { margin-bottom: 0; }
.about-grid h2.about-grid-h2-follow { margin-top: 28px; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px;
}
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; text-align: center;
}
.value-card i { color: var(--gold); font-size: 36px; margin-bottom: 12px; }
.value-card h3 {
  color: var(--navy); font-size: 14px; letter-spacing: 1px; margin-bottom: 8px;
  text-transform: uppercase;
}
.value-card p { color: var(--muted); font-size: 14px; }

/* ---------- PUBLIKIME ---------- */
.pub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pub-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.pub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pub-thumb {
  height: 170px; background: var(--navy);
  display: grid; place-items: center; color: var(--gold);
  position: relative;
}
.pub-thumb i { font-size: 56px; }
.pub-thumb .tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy); font-weight: 700;
  font-size: 11px; letter-spacing: 1px; padding: 4px 10px; border-radius: 4px;
}
.pub-body { padding: 22px; }
.pub-body .date { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 1px; }
.pub-body h3 { color: var(--navy); font-size: 16px; margin: 8px 0 10px; line-height: 1.4; }
.pub-body p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }

.publikim-gallery-section {
  margin-top: 34px;
}
.publikim-gallery-title {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.publikim-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.publikim-gallery-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  cursor: zoom-in;
}
.publikim-gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.publikim-gallery-item:hover .publikim-gallery-img {
  transform: scale(1.03);
}
.publikim-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(1, 18, 40, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.publikim-lightbox.is-open {
  display: flex;
}
.publikim-lightbox-content {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.publikim-lightbox-image {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}
.publikim-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 13px;
  letter-spacing: .4px;
}
.publikim-lightbox-nav,
.publikim-lightbox-close {
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
}
.publikim-lightbox-nav:hover,
.publikim-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.publikim-lightbox-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.publikim-lightbox-prev { margin-right: 14px; }
.publikim-lightbox-next { margin-left: 14px; }
.publikim-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

/* ---------- DONORS ---------- */
.donors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px;
}
.donor-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.donor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.donor-link {
  display: grid;
  gap: 14px;
  justify-items: center;
  align-content: start;
}
.donor-logo {
  width: min(240px, 100%);
  height: auto;
  border-radius: 12px;
}
.donor-link h3 { margin-bottom: 0; }
.donor-link:hover h3 { color: var(--gold); }
.donor-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  display: grid; place-items: center;
  color: var(--gold); font-size: 32px;
}
.donor-card h3 {
  color: var(--navy); font-size: 14px; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 10px; text-transform: uppercase;
}
.donor-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.donors-cta {
  text-align: center;
}
.donors-cta p {
  color: var(--muted); font-size: 14px; line-height: 1.6;
  max-width: 640px; margin: 0 auto 22px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px;
}
.contact-info-card {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 34px; height: 100%;
}
.contact-info-card h2 { color: var(--gold); margin-bottom: 18px; font-size: 22px; letter-spacing: 1px; }
.contact-info-card .info-item {
  display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start;
}
.contact-info-card .info-item i {
  color: var(--gold); font-size: 18px; margin-top: 4px;
  width: 36px; height: 36px; background: rgba(212,164,55,0.15);
  display: grid; place-items: center; border-radius: 50%; flex: 0 0 36px;
}
.contact-info-card .info-item h4 {
  color: #fff; font-size: 13px; letter-spacing: 1px; margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-info-card .info-item p { color: #c8d3e6; font-size: 14px; }
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 13px; color: var(--navy); font-weight: 600;
  margin-bottom: 6px; letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 14px; font-family: inherit;
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 0; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,164,55,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-map-section {
  grid-column: 1 / -1;
  margin-top: 12px;
}
.contact-map-heading {
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-map-frame {
  position: relative;
  width: 100%;
  padding-bottom: 52%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.contact-map-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map-footer {
  margin-top: 14px;
  font-size: 14px;
}
.contact-map-footer a {
  color: var(--navy-3);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-map-footer a:hover {
  color: var(--gold);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { text-align: center; }
  .hero-right p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .fushat-grid { grid-template-columns: repeat(2, 1fr); }
  .programet-grid { grid-template-columns: 1fr; }
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .donors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .donors-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .navbar { position: relative; }
  .nav-inner { padding: 12px var(--hp-pad); }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 10;
    background: var(--navy); flex-direction: column; gap: 0;
    padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s;
  }
  .nav-links.open { max-height: 500px; padding: 10px 0; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-links a.active::after { display: none; }
}
@media (max-width: 768px) {
  .hero-right h1 { font-size: 34px; }
  .hero-title-brand { font-size: 42px; }
  .fushat-grid { grid-template-columns: 1fr; }
  .pub-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 26px; letter-spacing: 1px; }
  .page-banner { padding: 36px 20px 30px; }
  .section { padding: 30px 16px; }
  .nav-inner { padding: 12px var(--hp-pad); }
  .contact-info-card,
  .contact-form { padding: 22px; }
  .footer { padding: 18px 16px 8px; }
  .brand .brand-name { font-size: 15px; }
  .brand img.brand-img { height: 38px; }
  .publikim-lightbox {
    padding: 12px;
  }
  .publikim-lightbox-nav {
    position: absolute;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
  .publikim-lightbox-prev {
    left: 16px;
    margin-right: 0;
  }
  .publikim-lightbox-next {
    right: 16px;
    margin-left: 0;
  }
  .publikim-lightbox-close {
    top: 12px;
    right: 12px;
  }
  .publikim-lightbox-counter {
    bottom: 14px;
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .page-banner h1 { font-size: 22px; }
  .nav-inner { padding: 10px var(--hp-pad); }
  .contact-info-card,
  .contact-form { padding: 18px; }
  .pub-body { padding: 18px; }
  .publikim-gallery-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }
  .publikim-gallery-item {
    scroll-snap-align: start;
  }
  .publikim-gallery-img {
    height: 190px;
  }
}

/* ---------- HOME PAGE — RESPONSIVE LAYOUT ---------- */
:root {
  --hp-max: 1180px;     /* max content width */
  --hp-pad: 30px;       /* horizontal padding */
}

.home-page {
  background: #f7f7f7;
  color: #111827;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
}

/* Full-width section backgrounds */
.home-hero,
.home-fields,
.home-programs,
.home-footer {
  width: 100%;
  margin: 0;
}

/* Centered inner wrappers */
.home-hero-inner,
.home-fields-inner,
.home-programs-inner,
.home-footer-inner {
  max-width: var(--hp-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--hp-pad);
  position: relative;
}

/* HERO ------------------------------------------------ */
.home-hero {
  background: #011228;
  color: #fff;
  position: relative;
  overflow: hidden;
  --hero-align-pad-top: clamp(8px, 1.5vw, 20px);
}

.home-hero-inner {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  min-height: 340px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(200px, 26%)
    minmax(0, 1fr)
    minmax(280px, 44%);
  align-items: start;
  min-height: 320px;
  column-gap: 30px;
}

.home-logo {
  display: block;
  align-self: start;
  width: 100%;
  padding-left: var(--hp-pad);
  padding-top: var(--hero-align-pad-top);
}

.home-logo img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 300 / 285;
  object-fit: contain;
  display: block;
}

.home-copy {
  padding: var(--hero-align-pad-top) 0 24px 0;
  z-index: 2;
}

.home-copy h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 12px;
}

.home-copy p {
  max-width: 360px;
  color: #f1f5f9;
  font-size: clamp(13px, 1.05vw, 14px);
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 42px;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.home-btn-gold { background: #f0b72d; color: #011228; }
.home-btn-outline { border: 1px solid #d4a437; color: #fff; }

.home-flags {
  align-self: start;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: var(--hp-pad);
  padding-top: var(--hero-align-pad-top);
}

.home-flags img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  object-position: right top;
  display: block;
}

/* FIELDS / PROGRAMS HEADERS --------------------------- */
.home-fields,
.home-programs {
  background: #f7f7f7;
}

.home-fields-inner { padding-top: 22px; padding-bottom: 18px; }
.home-programs-inner { padding-top: 8px; padding-bottom: 22px; }

.home-fields h2,
.home-programs h2 {
  font-family: Georgia, 'Times New Roman', serif;
  text-align: center;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-rule {
  width: 50px;
  height: 2px;
  background: #d4a437;
  margin: 8px auto 18px;
}

/* FIELDS GRID ----------------------------------------- */
.home-field-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #e6e6e6;
}

.home-field-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 16px;
  border-right: 1px solid #d7d7d7;
  align-items: flex-start;
}

.home-field-card:last-child { border-right: 0; }

.home-field-card i {
  color: #d4a437;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1;
}

.home-field-card h3,
.home-program-card h3 {
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.home-field-card p,
.home-program-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* PROGRAMS GRID --------------------------------------- */
.home-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-program-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 18px 16px;
  align-items: flex-start;
}

.home-program-card i {
  color: #0b1730;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
}

.home-program-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b2d68;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
  text-transform: uppercase;
}

/* FOOTER ---------------------------------------------- */
.home-footer {
  background: #011228;
  color: #fff;
}

.home-footer-inner { padding-top: 24px; padding-bottom: 10px; }

.home-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.6fr)
    minmax(0, 1fr)
    minmax(0, 1.2fr)
    minmax(120px, .8fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.home-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.home-footer-brand img {
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.home-footer-brand p,
.home-footer p,
.home-footer a {
  color: #cfd7e6;
  font-size: 12px;
  line-height: 1.6;
}

.home-footer h4 {
  font-size: 12px;
  line-height: 1;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.home-footer ul { list-style: none; }
.home-footer li { margin-bottom: 4px; }
.home-footer i { color: #d4a437; width: 16px; }

.home-social { display: flex; gap: 14px; flex-wrap: wrap; }
.home-social a {
  width: 34px; height: 34px;
  border: 1px solid #d4a437;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d4a437;
  transition: background .2s, color .2s;
}
.home-social a:hover { background: #d4a437; color: #011228; }
.home-social i { width: auto; font-size: 14px; }

.home-copyline {
  text-align: center;
  color: #cfd7e6 !important;
  font-size: 11px !important;
  padding: 10px 0 4px;
}

/* RESPONSIVE BREAKPOINTS ------------------------------ */

/* Tablet landscape */
@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns:
      minmax(200px, 26%)
      minmax(0, 1fr)
      minmax(220px, 36%);
    column-gap: 28px;
  }
  .home-footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
  }
  .home-footer-grid > div:nth-child(4) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.11);
    padding-top: 12px;
    margin-top: 4px;
  }
}

/* Tablet portrait */
@media (max-width: 860px) {
  :root { --hp-pad: 22px; }

  .home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-logo {
    padding: 6px var(--hp-pad) 0;
    text-align: center;
  }
  .home-logo img {
    margin: 0 auto;
    max-width: 280px;
  }

  .home-copy {
    padding: 6px var(--hp-pad) 26px;
    text-align: center;
  }
  .home-copy h1 { font-size: clamp(22px, 5vw, 32px); }
  .home-copy p {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
  }
  .home-actions { justify-content: center; }

  .home-flags {
    padding: 0 var(--hp-pad) 0;
    align-items: stretch;
  }
  .home-flags img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-position: center;
  }

  .home-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-field-card {
    border-right: 0;
    border-bottom: 1px solid #d7d7d7;
  }
  .home-field-card:nth-child(odd) { border-right: 1px solid #d7d7d7; }

  .home-program-grid {
    grid-template-columns: 1fr;
  }

  .home-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-footer-brand {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    padding: 0 0 14px;
  }
  .home-footer-grid > div:nth-child(4) {
    grid-column: auto;
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
}

/* Mobile */
@media (max-width: 540px) {
  :root { --hp-pad: 16px; }
  .home-field-grid { grid-template-columns: 1fr; }
  .home-field-card,
  .home-field-card:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid #d7d7d7;
  }
  .home-footer-grid { grid-template-columns: 1fr; }
  .home-footer-grid > div { border-right: 0 !important; }
  .home-copy h1 { font-size: 24px; }
  .home-btn { width: 100%; min-width: 0; }
  .home-actions { flex-direction: column; align-items: stretch; }
}
