/* ==========================================================================
   ANAGİD - Anadolu-Gürcistan İş İnsanları Derneği
   ========================================================================== */

:root {
  --red: #be2a32;
  --red-dark: #9e2129;
  --red-light: #fbeeee;
  --navy: #1c2733;
  --navy-2: #27343f;
  --text: #29313b;
  --muted: #69727d;
  --line: #e2e5e9;
  --bg: #ffffff;
  --bg-alt: #f4f5f7;
  --sea: #dde7ee;

  --font-head: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;

  --radius: 4px;
  --container: 1180px;
  --gutter: 20px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

.skip-link { position: absolute; left: 12px; top: -50px; z-index: 300; background: var(--navy); color: #fff; padding: 8px 14px; }
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 7vw, 84px); }
.section--alt { background: var(--bg-alt); }
.section--line { border-top: 1px solid var(--line); }

.section-title { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 24px; margin-bottom: 32px; }
.section-title h2 { margin: 0; position: relative; padding-bottom: 12px; }
.section-title h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; background: var(--red); }
.section-title a { font-weight: 600; font-size: .95rem; }
.section-title p { flex: 0 0 100%; margin: 4px 0 0; color: var(--muted); }

.muted { color: var(--muted); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border: 2px solid transparent; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; letter-spacing: .01em; line-height: 1.1;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); color: #fff; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); color: #fff; }
.btn--line { border-color: var(--line); color: var(--navy); background: #fff; }
.btn--line:hover { border-color: var(--navy); color: var(--navy); }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { background: var(--bg-alt); color: var(--red-dark); }
.btn--ghost-white { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ---------- Bayraklar ---------- */
.flag { display: inline-block; height: 1em; width: auto; aspect-ratio: 3 / 2; vertical-align: -.12em; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.flags { display: inline-flex; gap: 6px; align-items: center; }

/* ---------- Üst çubuk ---------- */
.topbar { background: var(--navy); color: #c7ced6; font-size: .88rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.topbar ul { display: flex; flex-wrap: wrap; gap: 6px 22px; margin: 0; padding: 0; list-style: none; }
.topbar li { display: flex; align-items: center; gap: 7px; }
.topbar a { color: #c7ced6; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; }
.topbar .flag { height: 13px; }
@media (max-width: 720px) { .topbar__contact { display: none !important; } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.header.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__list { display: flex; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block; padding: 8px 13px; color: var(--navy);
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .02em;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--red); }
.nav__link[aria-current="page"] { color: var(--red); border-bottom-color: var(--red); }
.nav .btn { margin-left: 12px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy); }
.nav-toggle .i-close { display: none; }
.nav-open .nav-toggle .i-open { display: none; }
.nav-open .nav-toggle .i-close { display: block; }

@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.08);
    padding: 8px var(--gutter) 20px; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-open .nav { display: flex; }
  .nav__list { flex-direction: column; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav__link[aria-current="page"] { border-bottom-color: var(--line); }
  .nav .btn { margin: 16px 0 0; }
}

/* ---------- Slider ---------- */
.slider { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.slider__track { position: relative; height: clamp(440px, 68vh, 620px); }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s; }
.slide.is-active { opacity: 1; visibility: visible; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,28,36,.86) 0%, rgba(20,28,36,.6) 45%, rgba(20,28,36,.15) 100%); }
.slide__content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-bottom: 40px; }
.slide__content > * { max-width: 620px; }
.slide__tag { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; color: #e9ecef; margin-bottom: 14px; }
.slide__tag .flag { height: 15px; }
.slide h1, .slide h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 16px; }
.slide p { color: #dde2e7; font-size: 1.1rem; margin-bottom: 26px; }
.slide__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.slider__controls { position: absolute; z-index: 2; left: 0; right: 0; bottom: 24px; }
.slider__controls .container { display: flex; align-items: center; gap: 16px; }
.slider__dots { display: flex; gap: 8px; }
.slider__dot { width: 34px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.4); }
.slider__dot[aria-current="true"] { background: #fff; }
.slider__arrows { margin-left: auto; display: flex; gap: 6px; }
.slider__arrow { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); background: rgba(0,0,0,.2); color: #fff; border-radius: var(--radius); }
.slider__arrow:hover { background: rgba(0,0,0,.45); }
.slider__arrow svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .slide::after { background: linear-gradient(0deg, rgba(20,28,36,.92) 0%, rgba(20,28,36,.55) 60%, rgba(20,28,36,.3) 100%); }
  .slide__content { justify-content: flex-end; padding-bottom: 84px; }
  .slide p { font-size: 1rem; }
}

/* ---------- Hızlı bağlantılar ---------- */
.quick { position: relative; z-index: 3; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--line); }
.quick__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick a { display: flex; align-items: center; gap: 14px; padding: 22px 18px; color: var(--navy); border-right: 1px solid var(--line); }
.quick a:first-child { border-left: 1px solid var(--line); }
.quick a:hover { background: var(--bg-alt); color: var(--red); }
.quick svg { flex: none; width: 30px; height: 30px; color: var(--red); }
.quick strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; line-height: 1.2; }
.quick span { font-size: .88rem; color: var(--muted); }
@media (max-width: 900px) {
  .quick__grid { grid-template-columns: 1fr 1fr; }
  .quick a { border-bottom: 1px solid var(--line); }
  .quick a:nth-child(odd) { border-left: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .quick a { flex-direction: column; align-items: flex-start; gap: 6px; padding: 14px 12px; }
  .quick svg { width: 24px; height: 24px; }
  .quick strong { font-size: 1.05rem; }
  .quick span { display: none; }
  .slide img { object-position: center 15% !important; }
}

/* ---------- Genel ızgaralar ---------- */
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.cols--7-5 { grid-template-columns: 7fr 5fr; }
.cols--5-7 { grid-template-columns: 5fr 7fr; }
.cols--center { align-items: center; }
@media (max-width: 860px) { .cols, .cols--7-5, .cols--5-7 { grid-template-columns: 1fr; } }

.text p { color: var(--text); }
.text h2 { margin-top: 1.4em; }
.text h2:first-child { margin-top: 0; }
.text ul { padding-left: 1.2em; }

.photo { border-radius: var(--radius); overflow: hidden; max-width: 100%; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption { font-size: .88rem; color: var(--muted); padding-top: 8px; }

/* ---------- Başkan kutusu ---------- */
.president { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 26px; background: var(--bg-alt); border-left: 4px solid var(--red); }
.president img { width: 150px; height: 190px; object-fit: cover; object-position: top; border-radius: var(--radius); }
.president blockquote { margin: 0 0 14px; font-size: 1.05rem; font-style: italic; color: var(--text); }
.president strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); }
.president span { font-size: .92rem; color: var(--muted); }
@media (max-width: 520px) { .president { grid-template-columns: 1fr; } .president img { width: 120px; height: 150px; } }

/* ---------- Harita ---------- */
.map-figure { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.map-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.region-map { display: block; width: 100%; height: auto; min-width: 640px; }
.region-map .sea { fill: var(--sea); }
.region-map .land { fill: #ecebe6; stroke: #fff; stroke-width: 1; }
.region-map .land-tr { fill: #d44850; stroke: #fff; stroke-width: 1; }
.region-map .land-ge { fill: #2b3947; stroke: #fff; stroke-width: 1; }
.region-map .lake { fill: var(--sea); }
.region-map .route { fill: none; stroke: #f2b233; stroke-width: 3; stroke-dasharray: 8 6; stroke-linecap: round; stroke-linejoin: round; }
.region-map .city circle { fill: #fff; stroke: var(--navy); stroke-width: 2; }
.region-map .city--main circle { fill: #f2b233; stroke: #fff; stroke-width: 3; }
.region-map .city text { font-family: var(--font-body); font-size: 15px; font-weight: 600; fill: #fff; paint-order: stroke; stroke: rgba(0,0,0,.35); stroke-width: 3px; }
.region-map .city--main text { font-size: 17px; font-weight: 700; }
.region-map .country { font-family: var(--font-head); font-weight: 700; font-size: 26px; letter-spacing: .18em; fill: #fff; opacity: .92; }
.region-map .sea-label { font-family: var(--font-body); font-style: italic; font-size: 19px; fill: #6f8797; letter-spacing: .12em; }
.region-map .neighbor { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; fill: #a3a29b; }
.map-legend { display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 14px 18px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend i { display: inline-block; width: 14px; height: 14px; border-radius: 2px; }
.map-legend .l-route { width: 22px; height: 0; border-top: 3px dashed #f2b233; border-radius: 0; }
.map-legend .l-main { border-radius: 50%; background: #f2b233; }
.map-hint { display: none; font-size: .85rem; color: var(--muted); margin: 8px 0 0; }
@media (max-width: 700px) { .map-hint { display: block; } }

/* ---------- Ülke kartları ---------- */
.countries { display: grid; gap: 16px; }
.country-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: grid; grid-template-columns: 1fr 150px; gap: 16px; align-items: center; }
.country-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.country-card__head .flag { height: 30px; }
.country-card h3 { margin: 0; font-size: 1.45rem; }
.country-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 3px 12px; font-size: .95rem; }
.country-card dt { color: var(--muted); }
.country-card dd { margin: 0; font-weight: 600; color: var(--navy); }
.country-card svg.silhouette { width: 150px; max-height: 110px; height: auto; }
.silhouette path { fill: #e3e8ed; stroke: var(--navy); stroke-width: 4; stroke-linejoin: round; }
@media (max-width: 400px) { .country-card { grid-template-columns: 1fr 96px; } .country-card svg.silhouette { width: 96px; } }
.silhouette--tr path { fill: #f6dcdd; stroke: var(--red); }
.silhouette circle { fill: var(--red); }
.silhouette--ge circle { fill: var(--navy); }

/* ---------- Komisyonlar ---------- */
.commissions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.commissions li { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--navy); }
.commissions svg { flex: none; width: 28px; height: 28px; color: var(--red); }
@media (max-width: 860px) { .commissions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .commissions { grid-template-columns: 1fr; } }

/* ---------- Hedefler ---------- */
.goal-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px; }
.goal-list li { position: relative; padding-left: 34px; }
.goal-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.goal-list strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin-bottom: 2px; }
.goal-list p { margin: 0; color: var(--muted); font-size: .98rem; }
@media (max-width: 700px) { .goal-list { grid-template-columns: 1fr; } }

/* ---------- Haber kartları ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .news-grid { grid-template-columns: 1fr; } }
.news-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.news-card__img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-alt); max-width: 100%; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card__img img { transform: scale(1.04); }
.news-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.news-card__tag { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--red); margin-bottom: 6px; }
.news-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.news-card h3 a { color: var(--navy); }
.news-card h3 a:hover { color: var(--red); }
.news-card p { font-size: .95rem; color: var(--muted); }
.news-card__more { margin-top: auto; font-weight: 600; font-size: .95rem; }

/* ---------- Kişiler ---------- */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px 20px; }
.people--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .people--5 { grid-template-columns: repeat(3, 1fr); } .people--5 > :nth-child(n+4) { display: none; } }
@media (max-width: 560px) { .people--5 { grid-template-columns: 1fr 1fr; gap: 16px; } .people--5 > :nth-child(n+3) { display: none; } }
.person__photo { aspect-ratio: 3 / 4; background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; display: grid; place-items: center; max-width: 100%; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.person__photo svg { width: 44%; height: auto; color: #c5cad0; }
.person h3 { font-size: 1.15rem; margin: 0; }
.person__role { display: block; font-size: .9rem; font-weight: 600; color: var(--red); }
.person__info { display: block; font-size: .88rem; color: var(--muted); line-height: 1.4; margin-top: 2px; }

.leader { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.leader img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; border-radius: var(--radius); }
.leader blockquote { margin: 0 0 18px; font-size: 1.15rem; line-height: 1.7; }
.leader__name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin: 0; }
@media (max-width: 760px) { .leader { grid-template-columns: 1fr; } .leader img { max-width: 280px; } }

.table-list { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); font-size: .98rem; }
.table-list th, .table-list td { text-align: left; padding: 11px 16px; border-bottom: 1px solid var(--line); }
.table-list th { background: var(--bg-alt); font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy); }
.table-list td:first-child { width: 48px; color: var(--muted); }
.table-list tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; }

.member-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .member-cols { grid-template-columns: 1fr; } }

.search { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 12px; height: 44px; background: #fff; width: 100%; max-width: 320px; }
.search svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.search input { border: 0; outline: 0; font: inherit; width: 100%; background: transparent; }
.search:focus-within { border-color: var(--navy); }

/* ---------- Sayfa başlığı ---------- */
.page-head { position: relative; background: var(--navy); color: #fff; padding-block: 44px 40px; overflow: hidden; }
.page-head::after { content: ""; position: absolute; right: 0; bottom: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--red) 0 50%, #fff 50% 100%); opacity: .9; }
.page-head h1 { color: #fff; margin: 0; position: relative; }
.page-head .lead { color: #c9d0d7; margin: 10px 0 0; max-width: 64ch; position: relative; }
.page-head__map { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: min(640px, 70%); opacity: .12; pointer-events: none; }
.page-head__map path { fill: #fff; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 12px; padding: 0; font-size: .9rem; position: relative; }
.breadcrumb li { color: #aab4be; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; }
.breadcrumb a { color: #dfe4e9; }
.breadcrumb a:hover { color: #fff; }

.subnav { background: #fff; border-bottom: 1px solid var(--line); }
.subnav ul { display: flex; gap: 4px; overflow-x: auto; list-style: none; margin: 0; padding: 0; }
.subnav a { display: block; padding: 14px 16px; white-space: nowrap; color: var(--navy); font-weight: 600; border-bottom: 2px solid transparent; }
.subnav a:hover { color: var(--red); border-bottom-color: var(--red); }

/* ---------- Haber detay ---------- */
.article { display: grid; grid-template-columns: 1fr 300px; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 940px) { .article { grid-template-columns: 1fr; } }
.article h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.article__meta { font-size: .92rem; color: var(--muted); margin-bottom: 22px; }
.article__meta b { color: var(--red); font-weight: 600; }
.article__cover { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; max-width: 100%; }
.article__cover img { width: 100%; }
.article__body { font-size: 1.07rem; line-height: 1.75; }
.article__body h2 { font-size: 1.6rem; margin-top: 1.5em; }
.article__body blockquote { margin: 1.5em 0; padding: 14px 20px; background: var(--bg-alt); border-left: 4px solid var(--red); font-style: italic; }
.article__intro { font-size: 1.18rem; font-weight: 600; color: var(--navy); }
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 18px; }
@media (max-width: 940px) { .sidebar { position: static; } }
.box { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; }
.box h3 { font-size: 1.2rem; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.box ul { list-style: none; margin: 0; padding: 0; }
.box li + li { border-top: 1px solid var(--line); }
.box li a { display: grid; grid-template-columns: 70px 1fr; gap: 12px; padding: 12px 0; color: var(--navy); font-weight: 600; font-size: .95rem; line-height: 1.35; }
.box li a:hover { color: var(--red); }
.box li img { width: 70px; height: 52px; object-fit: cover; border-radius: 2px; }
.box--red { background: var(--red); color: #fff; }
.box--red h3 { color: #fff; border-color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery button { padding: 0; border: 0; background: var(--bg-alt); aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2px; max-width: 100%; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery button:hover img { opacity: .85; }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr 1fr; } }

.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(0,0,0,.92); display: grid; place-items: center; padding: 60px 12px; }
.lightbox img { max-width: min(1200px, 100%); max-height: 100%; width: auto; }
.lightbox__btn { position: absolute; width: 46px; height: 46px; display: grid; place-items: center; border: 0; background: rgba(255,255,255,.12); color: #fff; border-radius: var(--radius); }
.lightbox__btn:hover { background: rgba(255,255,255,.25); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: #bbb; font-size: .9rem; }

/* ---------- Faaliyetler ---------- */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding: 0 0 28px 24px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.timeline h3 { font-size: 1.2rem; margin-bottom: 4px; }
.timeline h3 a { color: var(--navy); }
.timeline h3 a:hover { color: var(--red); }
.timeline p { margin: 0; color: var(--muted); font-size: .95rem; }
.notice-box { padding: 28px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--radius); }

/* ---------- Üyelik ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: s; }
.steps li { counter-increment: s; padding: 22px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.steps li::before { content: counter(s); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: 14px; }
.steps strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.steps p { margin: 0; font-size: .95rem; color: var(--muted); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.tabs__list { display: flex; flex-wrap: wrap; border-bottom: 2px solid var(--line); margin-bottom: 20px; }
.tabs__tab { border: 0; background: none; padding: 12px 18px; margin-bottom: -2px; border-bottom: 2px solid transparent; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.tabs__tab .flag { height: 14px; }
.tabs__tab[aria-selected="true"] { color: var(--navy); border-bottom-color: var(--red); }
.doc-list { margin: 0; padding-left: 1.3em; }
.doc-list li { margin-bottom: 8px; }
.doc-list small { display: block; color: var(--muted); font-size: .88rem; }

.fees { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.fees th, .fees td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.fees th { font-weight: 600; color: var(--text); }
.fees td { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--red); text-align: right; white-space: nowrap; }
.fees caption { caption-side: bottom; text-align: left; font-size: .88rem; color: var(--muted); padding-top: 8px; }

.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.faq details + details { margin-top: 8px; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 48px 16px 20px; position: relative; font-weight: 600; color: var(--navy); font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--red); line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq__body { padding: 14px 20px 16px; }
.faq__body p:last-child { margin: 0; }

/* ---------- Üyelik bandı ---------- */
.band { background: var(--red); color: #fff; padding-block: 38px; }
.band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.band h2 { color: #fff; margin: 0 0 4px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.band p { margin: 0; color: #f7dada; }
.band__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- İletişim ---------- */
.contact-list { list-style: none; margin: 0 0 24px; padding: 0; }
.contact-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { padding-top: 0; }
.contact-list svg { width: 26px; height: 26px; color: var(--red); margin-top: 2px; }
.contact-list b { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1.1rem; }
.contact-list address { font-style: normal; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; color: var(--navy); }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field textarea { width: 100%; font: inherit; padding: 11px 13px; border: 1px solid #cfd4da; border-radius: var(--radius); background: #fff; color: var(--text); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,39,51,.1); }
.field.has-error input, .field.has-error textarea { border-color: var(--red); }
.field__error { display: block; color: var(--red); font-size: .85rem; margin-top: 4px; }
.form__status { grid-column: 1 / -1; margin: 0; font-weight: 600; }
.form__status.is-success { color: #1e7a46; }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }

.gmap { border: 1px solid var(--line); aspect-ratio: 21 / 8; max-width: 100%; background: var(--bg-alt); }
.gmap iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 700px) { .gmap { aspect-ratio: 4 / 3; } }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b9c1c9; font-size: .95rem; }
.footer a { color: #b9c1c9; }
.footer a:hover { color: #fff; }
.footer__main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-block: 56px 40px; }
.footer__logo { display: inline-block; background: #fff; padding: 10px 14px; border-radius: var(--radius); margin-bottom: 16px; }
.footer__logo img { height: 42px; width: auto; }
.footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.footer address { font-style: normal; margin-bottom: 8px; }
.footer__flags { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: .9rem; }
.footer__flags .flag { height: 22px; box-shadow: none; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 18px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; font-size: .88rem; }
.social { display: flex; gap: 8px; margin-top: 16px; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); }
.social a:hover { background: var(--red); border-color: var(--red); }
.social svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__main { grid-template-columns: 1fr; } }

.to-top { position: fixed; right: 16px; bottom: 16px; z-index: 90; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: var(--radius); background: var(--red); color: #fff; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--red-dark); }
.to-top svg { width: 20px; height: 20px; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
