:root {
  --blue: #003166;
  --blue-mid: #1a4a8a;
  --blue-light: #e6edf7;
  --blue-pale: #f0f4fa;
  --gold: #C9A84C;
  --white: #ffffff;
  --off-white: #fafafa;
  --text: #111827;
  --text-mid: #374151;
  --text-light: #6B7280;
  --border: #e5e9f0;
  --red: #d32f2f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

body.ka,
body.ka button,
body.ka input,
body.ka select,
body.ka textarea {
  font-family: 'Noto Sans Georgian', sans-serif;
}

body.ka .hero h1,
body.ka .section-title,
body.ka .news-card-title,
body.ka .members-hero h1,
body.ka .member-name,
body.ka .manifesto-num,
body.ka .manifesto-block-title,
body.ka .quote-block p,
body.ka .board-hero-text h1,
body.ka .form-card h2,
body.ka .form-success h3,
body.ka .news-page-hero h1,
body.ka .news-detail-title,
body.ka .featured-title,
body.ka .side-title,
body.ka .logo-text-ka {
  font-family: 'Noto Sans Georgian', sans-serif;
}

/* ─── LANGUAGE TOGGLE ─── */
.lang-bar {
  background: var(--blue);
  padding: 6px 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 3px 12px;
  font-size: 11px;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  border-radius: 2px;
}
.lang-btn.active {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  font-weight: 600;
}

/* ─── NAVBAR ─── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--blue);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,49,102,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
}

.logo-emblem { width: 44px; height: 44px; position: relative; flex-shrink: 0; }
.logo-emblem svg { width: 100%; height: 100%; }

.logo-text-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.logo-text-ka {
  font-family: 'Noto Sans Georgian', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
}

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links li a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--blue); background: var(--blue-pale); }

.nav-cta {
  background: #bf002b !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
}
.nav-cta:hover { background: #a30025 !important; }

/* ─── SUBMENU ─── */
.nav-submenu-parent {
  position: relative;
}

.nav-submenu-toggle {
  background: none;
  border: none;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-arrow {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-submenu-toggle.active .nav-arrow {
  transform: rotate(180deg);
}

.nav-submenu-toggle:hover,
.nav-submenu-toggle.active {
  color: var(--blue);
  background: var(--blue-pale);
}

.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--blue-pale);
  border-radius: 4px;
  margin-top: 4px;
  list-style: none;
  padding: 4px 0;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,49,102,0.15);
  z-index: 1000;
}

.nav-submenu.open {
  display: block;
}

.nav-submenu li a {
  display: block;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 16px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-submenu li a:hover {
  color: var(--blue);
  background: var(--blue-pale);
}


/* ─── PAGES ─── */
.page { display: none; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ─── HOME: HERO ─── */
.hero {
  height: 92vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #00204f;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #003166 0%, #002255 40%, #001a3d 70%, #001530 100%);
  overflow: hidden;
}

.hero-video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3CradialGradient id='rg' cx='60%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' stop-color='%231a4a8a' stop-opacity='0.3'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23rg)'/%3E%3C/svg%3E");
  animation: pulse 8s ease-in-out infinite alternate;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
}

@keyframes pulse { from { opacity: 0.6; transform: scale(1); } to { opacity: 1; transform: scale(1.05); } }

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.07); animation: float linear infinite; }
@keyframes float {
  0% { transform: translateY(110vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4,34,79,0.85) 0%, rgba(4,34,79,0.5) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border-radius: 2px;
  font-weight: 500;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--gold); }

.hero-ka {
  font-family: 'Noto Sans Georgian', sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 24px;
}

.hero-line { width: 60px; height: 3px; background: var(--gold); margin-bottom: 28px; }

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: #bf002b;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #d4143a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(191,0,43,0.3); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--blue);
  padding: 36px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; }

/* ─── SECTION DEFAULTS ─── */
section { padding: 80px; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub { font-size: 16px; color: var(--text-light); line-height: 1.7; max-width: 600px; font-weight: 300; }

/* ─── PILLARS ─── */
.pillars { background: var(--off-white); }
.pillars-header { margin-bottom: 56px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #bf002b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,49,102,0.1); }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 700; color: var(--blue-light); line-height: 1; margin-bottom: 16px; }
.pillar-title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.pillar-text { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ─── HOME NEWS ─── */
.home-news { background: var(--white); }
.home-news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.news-card {
  cursor: pointer;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 2px;
}
.news-card:hover { box-shadow: 0 16px 48px rgba(0,49,102,0.1); transform: translateY(-4px); }

.news-card-img {
  height: 200px;
  background: var(--blue-light);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.news-card-img-1 { background: linear-gradient(135deg, #c8d8f5, #e8f0fb); }
.news-card-img-2 { background: linear-gradient(135deg, #d5e3f8, #c0d4f0); }
.news-card-img-3 { background: linear-gradient(135deg, #b8cef2, #d0e2f8); }

.news-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: #bf002b;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.news-card-body { padding: 24px; }
.news-card-date { font-size: 11px; color: var(--text-light); letter-spacing: 0.06em; margin-bottom: 10px; }
.news-card-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--text); margin-bottom: 10px; }
.news-card-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  background: none;
  font-family: inherit;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 14px; }

/* ─── MEMBERS PAGE ─── */
.members-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #002255 100%);
  padding: 80px 80px 72px;
  position: relative;
  overflow: hidden;
}
.members-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.members-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.members-hero p { color: rgba(255,255,255,0.7); font-size: 17px; font-weight: 300; max-width: 480px; line-height: 1.65; }

.members-section { background: var(--off-white); padding: 80px; }
.leadership-title { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 56px; }

.member-card-lg {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  gap: 28px;
  padding: 32px;
  transition: all 0.3s;
}
.member-card-lg:hover { box-shadow: 0 12px 40px rgba(0,49,102,0.1); transform: translateY(-2px); }

.member-avatar { width: 168px; height: 280px; aspect-ratio: 3 / 5; flex-shrink: 0; border-radius: 6px; position: relative; overflow: hidden; display: flex; justify-content: center; align-items: center; }
.member-avatar-1 { background: linear-gradient(160deg, #a8c0e8, #7a9fd4); }
.member-avatar-2 { background: linear-gradient(160deg, #b8c8e8, #8aafda); }
.member-avatar-3 { background: linear-gradient(160deg, #9ab5e0, #6a8fd0); }
.member-avatar-4 { background: linear-gradient(160deg, #adc3eb, #82a7d8); }

.avatar-placeholder {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 75%;
  background: rgba(0,49,102,0.3);
  border-radius: 50% 50% 0 0;
  margin: 0 10px;
}
.member-avatar img { object-position: center; }

.member-info { flex: 1; }
.member-role { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.member-name { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.member-name-ka { font-family: 'Noto Sans Georgian', sans-serif; font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.member-bio { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

.members-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 40px; }

.member-card-sm { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: all 0.3s; }
.member-card-sm:hover { box-shadow: 0 8px 28px rgba(0,49,102,0.1); transform: translateY(-3px); }

.member-photo { height: auto; aspect-ratio: 4 / 5; position: relative; overflow: hidden; width: 100%; }
.member-photo-1 { background: linear-gradient(160deg, #c5d8f5, #a0bee8); }
.member-photo-2 { background: linear-gradient(160deg, #b0caf0, #8aafe5); }
.member-photo-3 { background: linear-gradient(160deg, #c0d5f8, #9bbdeb); }
.member-photo-4 { background: linear-gradient(160deg, #aac4ef, #82aadf); }
.member-photo-5 { background: linear-gradient(160deg, #b5cdf2, #90b5e7); }
.member-photo-6 { background: linear-gradient(160deg, #c8daf8, #a5c3ec); }
.member-photo-7 { background: linear-gradient(160deg, #b8cefc, #94b8e8); }
.member-photo-8 { background: linear-gradient(160deg, #aac8f5, #88b2e4); }
.member-photo .avatar-placeholder { height: 80%; margin: 0 15px; }
.member-photo img { object-position: center; }

.member-card-info { padding: 20px 18px; }
.member-card-info .member-role { font-size: 10px; }
.member-card-info .member-name { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; margin-top: 0; }
.member-card-info .member-name-ka { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.member-card-info .member-bio { font-size: 11px; font-weight: 300; color: var(--text-light); }

/* ─── OUR VIEW PAGE ─── */
.view-hero { background: var(--blue-pale); padding: 80px 80px 64px; border-bottom: 1px solid var(--border); }
.view-hero .section-title { font-size: clamp(36px, 4vw, 56px); }

.manifesto { padding: 80px; background: var(--white); }
.manifesto-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }

.manifesto-toc { position: sticky; top: 100px; }
.toc-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 20px; }
.toc-item { display: block; font-size: 13px; padding: 9px 0 9px 16px; color: var(--text-light); border-left: 2px solid var(--border); margin-bottom: 4px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.toc-item:hover, .toc-item.active { color: #bf002b; border-left-color: #bf002b; }

.manifesto-content { max-width: 680px; }
.manifesto-block { margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.manifesto-block:last-child { border-bottom: none; margin-bottom: 0; }
.manifesto-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 700; color: var(--blue-light); line-height: 1; margin-bottom: -8px; }
.manifesto-block-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.manifesto-block-body { font-size: 15.5px; line-height: 1.8; color: var(--text-mid); font-weight: 300; }
.manifesto-block-body p { margin-bottom: 14px; }

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--blue-pale);
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
.quote-block p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--text); line-height: 1.5; margin: 0; }

/* ─── GET ON BOARD PAGE ─── */
.board-hero {
  background: linear-gradient(135deg, #001f4d 0%, var(--blue) 100%);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 65vh;
}

.board-hero-text h1 { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.board-hero-text p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; margin-bottom: 28px; }

.board-reasons { list-style: disc; margin-left: 20px; }
.board-reason { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 12px; }
.board-reason-icon { display: none; }
.board-reason-icon svg { display: none; }
.board-reason-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }

.form-card { background: var(--white); padding: 44px 40px; border-radius: 4px; box-shadow: 0 24px 80px rgba(0,0,0,0.3); }
.form-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-mid); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: all 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,49,102,0.08); }
.form-textarea { height: 100px; resize: vertical; }

.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-check input { margin-top: 3px; accent-color: var(--blue); }
.form-check label { font-size: 12.5px; color: var(--text-light); line-height: 1.5; }

.btn-form {
  width: 100%;
  background: #bf002b;
  color: var(--white);
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
}
.btn-form:hover { background: #a30025; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,49,102,0.25); }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success-icon { width: 64px; height: 64px; background: #e8f5e9; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.form-success-icon svg { width: 30px; height: 30px; fill: #2e7d32; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-light); }

/* ─── NEWS PAGE ─── */
.news-page-hero { background: var(--blue); padding: 64px 80px 56px; }
.news-page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.news-page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; font-weight: 300; }

.news-filters {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0 80px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.filter-btn {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  font-family: inherit;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.filter-btn:hover, .filter-btn.active { color: #bf002b; border-bottom-color: #bf002b; }

.news-main { padding: 60px 80px; background: var(--white); }
.news-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; margin-bottom: 56px; }

.news-featured-main {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.news-featured-main:hover { box-shadow: 0 16px 48px rgba(0,49,102,0.12); }

.featured-img {
  height: 280px;
  background: linear-gradient(135deg, #aac4f0, #7aa4dc);
  position: relative;
  background-size: cover;
  background-position: center;
}
.featured-body { padding: 28px 28px 32px; }
.featured-date { font-size: 11px; color: var(--text-light); letter-spacing: 0.06em; margin-bottom: 10px; }
.featured-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--text); line-height: 1.25; margin-bottom: 12px; }
.featured-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

.news-featured-side { display: flex; flex-direction: column; gap: 16px; }

.news-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-side-card:hover { box-shadow: 0 8px 28px rgba(0,49,102,0.1); }

.side-img {
  width: 80px; height: 80px;
  flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(135deg, #c0d4f5, #a0bae8);
  background-size: cover;
  background-position: center;
}

.side-info { flex: 1; }
.side-cat { font-size: 10px; font-weight: 600; color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.side-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.side-date { font-size: 11px; color: var(--text-light); }

.all-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ─── NEWS DETAIL PAGE ─── */
#page-news-detail {
  background: #f8f7f4;
  min-height: 100vh;
  padding-bottom: 80px;
}

.news-detail-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 40px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.news-detail-back:hover { opacity: 1; }

#news-detail-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#news-detail-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
}

.news-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gold);
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.news-detail-date {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero image — full bleed */
#news-detail-image {
  margin: 0 -40px 44px;
  max-width: calc(100% + 80px);
  overflow: hidden;
}
#news-detail-image img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.news-detail-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: #2a2a2a;
  white-space: pre-line;
}
.news-detail-body p { margin-bottom: 1.4em; }

/* ─── FOOTER ─── */
footer { background: #001f4d; color: rgba(255,255,255,0.75); padding: 60px 80px 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text-en { color: var(--white); font-size: 17px; }
.footer-brand .logo-text-ka { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 16px; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 10px; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); }

.divider { width: 40px; height: 2px; background: var(--gold); margin: 16px 0 0; }

/* ─── HERO SLIDER ─── */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-slide-media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide-img { background-size: cover; background-position: center; }

.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,49,102,0.82) 0%, rgba(5,20,60,0.70) 100%);
  z-index: 1;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 900px;
}

.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.35); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow-prev { left: 32px; }
.hero-arrow-next { right: 32px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .hero-content, nav, .lang-bar { padding-left: 40px; padding-right: 40px; }
  section, .members-hero, .members-section, .view-hero, .manifesto,
  .board-hero, .news-page-hero, .news-main, footer, .stats-strip, .news-filters { padding-left: 40px; padding-right: 40px; }
  .pillars-grid, .news-grid, .all-news-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 992px) {
  .lang-bar { padding: 6px 20px; }
  nav { height: auto; min-height: 72px; padding: 12px 20px; flex-wrap: wrap; gap: 10px; }
  .logo-text-ka { display: none; }
  .nav-links { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 6px; }

  .hero { min-height: 520px; height: auto; padding: 80px 0; }
  .hero-content { padding: 0 20px; }
  .hero p { font-size: 15px; margin-bottom: 28px; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); row-gap: 24px; padding: 30px 20px; }
  .stat-item:nth-child(2n) { border-right: none; }

  section, .members-hero, .members-section, .view-hero, .manifesto,
  .board-hero, .news-page-hero, .news-main, footer, .news-filters { padding-left: 20px; padding-right: 20px; }

  .pillars-grid, .leadership-grid, .news-grid, .all-news-grid,
  .news-featured, .manifesto-layout, .board-hero, .footer-top { grid-template-columns: 1fr; gap: 20px; }

  .manifesto-toc { position: static; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .member-card-lg { padding: 24px; gap: 18px; }

  .news-filters { overflow-x: auto; white-space: nowrap; }
  .news-filters::-webkit-scrollbar { height: 6px; }
  .news-filters::-webkit-scrollbar-thumb { background: #cfd8e8; border-radius: 20px; }

  .news-detail-wrap { padding: 40px 20px 60px; }
  #news-detail-image { margin: 0 -20px 32px; max-width: calc(100% + 40px); }

  .hero-arrow { display: none; }
  .hero-dots { bottom: 60px; }
  .hero-slide .hero-content { padding: 0 24px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 640px) {
  .hero-tag { font-size: 10px; letter-spacing: 0.08em; margin-bottom: 20px; }
  .hero-ka { font-size: 16px; margin-bottom: 18px; }
  .hero-line { margin-bottom: 18px; }
  .hero-btns { width: 100%; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; padding: 12px 16px; font-size: 12px; text-align: center; }
  .hero-scroll { display: none; }

  .contact-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-bottom: 16px;
  }

  .contact-section {
    padding: 16px 14px;
    border-radius: 6px;
  }

  .contact-section-title {
    font-size: 13px;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }

  .contact-section-title-ka {
    font-size: 12px;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }

  .contact-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .contact-regional-city {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .stat-num { font-size: 36px; }

  .pillar-card, .news-card-body, .featured-body { padding: 20px; }
  .form-card { padding: 24px 20px; }
  .members-hero h1, .board-hero-text h1, .news-page-hero h1 { font-size: 36px; }

  .member-card-lg { flex-direction: column; align-items: flex-start; }
  .member-avatar { width: 72px; height: 90px; }
  .members-grid { grid-template-columns: 1fr; }

  .manifesto-block { margin-bottom: 42px; padding-bottom: 42px; }
  .manifesto-num { font-size: 56px; }
  .manifesto-block-title { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .news-side-card { padding: 14px; gap: 12px; }
  .side-img { width: 70px; height: 70px; }

  .news-detail-title { font-size: 28px; }
  .news-detail-body { font-size: 15px; line-height: 1.75; }
  #news-detail-image { margin: 0 -20px 28px; max-width: calc(100% + 40px); }
}

/* ─── MEMBERS TABS ───────────────────────────────────────── */
.members-tab-bar {
  display: flex;
  gap: 4px;
  background: var(--off-white);
  border-radius: 4px;
  padding: 4px;
  border-bottom: none;
}

.members-tab {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.members-tab:hover { color: var(--blue); }
.members-tab.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.members-tabs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.members-tabs-header .leadership-title {
  border: none;
  padding: 0;
  margin: 0;
}

/* Slider panels */
.members-slider {
  position: relative;
  overflow: hidden;
}

.members-panel {
  display: none;
  animation: panelSlideIn 0.35s ease;
}
.members-panel.active {
  display: block;
}

@keyframes panelSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── MEMBER DETAIL PAGE ─────────────────────────────────── */
#page-member-detail {
  background: #f8f7f4;
  min-height: 100vh;
  padding-bottom: 80px;
}

.member-detail-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

.member-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 48px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.member-detail-back:hover { opacity: 1; }

.member-detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.member-detail-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--blue-light);
  border-radius: 2px;
  overflow: hidden;
}
.member-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-detail-social {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.member-social-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 2px;
  transition: all 0.2s;
  text-align: center;
}
.member-social-link:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.member-detail-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.member-detail-role::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
}

.member-detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 6px;
}

.member-detail-name-ka {
  font-family: 'Noto Sans Georgian', sans-serif;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.member-detail-divider {
  width: 48px;
  height: 3px;
  background: #bf002b;
  margin-bottom: 32px;
}

.member-detail-bio {
  font-size: 17px;
  line-height: 1.85;
  color: #2a2a2a;
  white-space: pre-line;
}

/* member card hover state */
.member-card-lg .member-read-more {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}
.member-card-lg:hover .member-read-more {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .member-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .member-detail-photo {
    aspect-ratio: 1/1;
    max-width: 240px;
  }
  .member-detail-wrap { padding: 40px 20px 60px; }
  .member-detail-name { font-size: 30px; }
  .member-detail-bio { font-size: 15px; }
}

/* ─── HAMBURGER / MOBILE NAV ─────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--blue-pale); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger open state → X */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}
.mobile-overlay.show { display: block; }

@media (max-width: 768px) {
  nav {
    height: 64px;
    padding: 0 20px;
    flex-wrap: nowrap;
  }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 0 40px;
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    border-left: 3px solid var(--blue);
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; }

  .nav-links li a {
    display: block;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .nav-links li a:hover { background: var(--blue-pale); color: var(--blue); }

  .nav-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    background: none;
    border: none;
    gap: 8px;
  }

  .nav-submenu-toggle:hover {
    background: var(--blue-pale);
    color: var(--blue);
  }

  .nav-submenu {
    position: static;
    display: none;
    background: var(--blue-pale);
    border: none;
    border-left: 4px solid var(--blue);
    margin: 0;
    padding: 0;
    box-shadow: none;
    min-width: unset;
  }

  .nav-submenu.open {
    display: block;
  }

  .nav-submenu li a {
    padding: 12px 28px 12px 48px;
    font-size: 14px;
    color: var(--blue);
    border-bottom: 1px solid rgba(0,49,102,0.1);
  }

  .nav-submenu li a:hover {
    background: rgba(0,49,102,0.05);
    color: var(--blue);
  }


  /* Keep CTA button visible outside menu */
  .nav-cta {
    font-size: 12px !important;
    padding: 8px 14px !important;
    white-space: nowrap;
  }

  .logo-text-ka { display: block; font-size: 10px; }
}

@media (max-width: 400px) {
  .logo-text-en { font-size: 13px; }
  .nav-cta { font-size: 11px !important; padding: 7px 10px !important; }
}
@media (max-width: 768px) {
  .nav-right {
    gap: 8px;
    margin-right: -18px;
  }
}
@media (max-width: 768px) {
  .nav-links-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .nav-links-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 0 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
  }
  .nav-links-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-top: -80px;
  }
}

.nav-links-logo,
.nav-links-close {
  display: none;
}

@media (max-width: 768px) {
  .member-card-lg {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .member-card-lg .member-avatar {
    width: 160px;
    height: 190px;
    margin: 0 auto 16px;
  }

  .member-card-lg .member-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-links-logo {
    display: flex;
  }
  .nav-links-close {
    display: flex;
  }
}
/* ─── MANIFESTO LIST STYLES ─────────────────────────────── */
.manifesto-block-body ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}
.manifesto-block-body ul li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 6px;
  list-style: disc;
}
.member-detail-desc {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.6;
}
.manifesto-block-body strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── CONTACT PAGE STYLES ───────────────────────────────── */
.contact-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}

.contact-hero .section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 20px;
}

.contact-hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
}

.contact-hero p {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-row {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-row:first-of-type {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}

.contact-row:last-of-type {
  grid-template-columns: repeat(3, 1fr);
}

.contact-section {
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0, 49, 102, 0.06);
  transition: all 0.3s ease;
}

.contact-section:hover {
  box-shadow: 0 8px 24px rgba(0, 49, 102, 0.12);
  transform: translateY(-2px);
}

.contact-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.contact-section-title-ka {
  display: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans Georgian', sans-serif;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

body.ka .contact-section-title-ka {
  display: block;
}

body.ka .contact-section-title {
  display: none;
}

.contact-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.contact-text a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}

.contact-text a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.contact-regional {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-regional-item {
  padding: 16px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.contact-regional-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.1);
}

.contact-regional-city {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--blue-mid);
  color: white;
  border: 2px solid var(--blue-mid);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

@media (max-width: 1024px) {
  .contact-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 20px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-content {
    padding: 40px 20px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-section {
    padding: 24px 20px;
  }

  .contact-info {
    gap: 40px;
  }
}

/* ─── TERMS MODAL ─── */
.terms-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

.terms-modal-overlay.show {
  display: block;
}

.terms-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  max-width: 600px;
  width: 90%;
  animation: slideIn 0.3s ease-out;
}

.terms-modal.show {
  display: block;
}

.terms-modal-content {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.terms-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.terms-modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--blue);
}

.terms-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.terms-modal-close:hover {
  color: var(--text);
}

.terms-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  white-space: pre-wrap;
  word-wrap: break-word;
}

.terms-modal-body p {
  margin: 0;
}

.terms-modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  justify-content: flex-end;
}

.terms-modal-footer .btn-primary,
.terms-modal-footer .btn-secondary {
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-weight: 600;
}

.terms-modal-footer .btn-primary {
  background: var(--blue);
  color: var(--white);
}

.terms-modal-footer .btn-primary:hover {
  background: var(--blue-mid);
}

.terms-modal-footer .btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}

.terms-modal-footer .btn-secondary:hover {
  background: var(--blue-pale);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .contact-row {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 20px;
  }

  .contact-section {
    padding: 20px 18px;
  }

  .contact-section-title {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .contact-section-title-ka {
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .contact-text {
    font-size: 13px;
  }

  .contact-regional-city {
    font-size: 13px;
  }

  .terms-modal {
    width: 95%;
    max-width: none;
  }

  .terms-modal-header h2 {
    font-size: 20px;
  }

  .terms-modal-body {
    font-size: 13px;
    padding: 16px;
  }

  .terms-modal-footer {
    flex-direction: column;
    gap: 8px;
  }

  .terms-modal-footer button {
    flex: 1;
  }
}