@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/poppins/poppins-300.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/poppins/poppins-400.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/poppins/poppins-500.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/poppins/poppins-600.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/poppins/poppins-700.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/poppins/poppins-800.ttf") format("truetype");
}

:root {
  --ink: #202522;
  --muted: #65716a;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --line: #e2e8f0;
  --brand-red: #b41f35;
  --brand-green: #1f6a55;
  --brand-blue: #1A3A5C;
  --nav-ink: #1e234c;
  --nav-hover: #EFF4F9;
  --brand-gold: #C8A84B;
  --shadow: 0 18px 45px rgba(32, 37, 34, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: 80px;
  min-height: 100%;
  overflow-x: clip;
  background: var(--soft);
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

img {
  height: auto;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.main-content:focus-visible {
  outline: 3px solid var(--brand-gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1100;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: none;
  box-shadow: none;
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(190px, 16vw, 210px);
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--brand-blue);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 3px;
  margin: 4px auto;
  border-radius: 3px;
  background: var(--brand-blue);
}

.primary-nav {
  flex: 1;
  min-width: 0;
  max-width: 960px;
  margin-left: auto;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3ch;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav li {
  position: relative;
  flex: 0 0 auto;
}

.has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  display: none;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 6px;
  border-radius: 4px;
  color: var(--nav-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav li:focus-within > a,
.primary-nav .nav-active {
  color: var(--brand-gold);
  background: var(--nav-hover);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(26, 58, 92, 0.18);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.has-children:hover .sub-menu,
.has-children:focus-within .sub-menu,
.has-children.is-submenu-open .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.has-children:hover::after,
.has-children:focus-within::after,
.has-children.is-submenu-open::after {
  display: block;
}

.sub-menu a {
  width: 100%;
  min-height: 0;
  padding: 10px 12px;
  color: var(--nav-ink);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(30, 35, 76, 0.06);
}

.sub-menu a:hover {
  background: var(--nav-hover);
  color: var(--brand-gold);
}

.sub-menu li:last-child a {
  border-bottom: 0;
}

.contact-nav-item .sub-menu {
  right: 0;
  left: auto;
  min-width: 300px;
  max-width: min(340px, calc(100vw - 32px));
}

.nav-contact-detail {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid rgba(30, 35, 76, 0.06);
}

.contact-sub-menu .nav-contact-detail {
  border-bottom: 0;
}

.nav-contact-detail span {
  color: var(--brand-red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-contact-detail p {
  margin: 0;
  color: var(--nav-ink);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.main-content {
  min-height: 60vh;
}

.hero {
  position: relative;
  min-height: clamp(380px, 58vw, 620px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 106, 85, 0.88), rgba(32, 37, 34, 0.46)),
    linear-gradient(0deg, rgba(32, 37, 34, 0.46), transparent 55%);
}

.hero-overlay {
  position: absolute;
  left: max(16px, calc((100vw - var(--max)) / 2));
  bottom: clamp(28px, 6vw, 64px);
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  color: #fff;
}

.hero-logo {
  width: min(460px, 80vw);
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.hero-slogan {
  position: relative;
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, calc(6.4vw - 2px), 76px);
  font-weight: 800;
  line-height: 0.98;
}

.hero-slogan-measure {
  visibility: hidden;
}

.hero-slogan-live {
  position: absolute;
  inset: 0;
}

.typewriter-cursor {
  display: inline-block;
  width: 0.055em;
  height: 0.82em;
  margin-left: 0.07em;
  background: #fff;
  transform: translateY(0.08em);
  animation: typewriter-cursor-blink 900ms steps(2, start) infinite;
}

@keyframes typewriter-cursor-blink {
  50% {
    opacity: 0;
  }
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 72px auto;
}

.intro-band,
.contact-band {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(32, 37, 34, 0.08);
}

.intro-band > *,
.contact-band > *,
.split-section > *,
.footer-grid > *,
.contact-page-panel > * {
  min-width: 0;
}

.intro-copy span,
.section-heading span,
.popular-panel > span,
.policy-panel > span,
.contact-band span,
.page-hero > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro-copy h1,
.section-heading h2,
.popular-panel h2,
.policy-panel h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row div {
  min-height: 118px;
  padding: 20px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.metric-row strong {
  display: block;
  color: var(--brand-green);
  font-size: 42px;
  line-height: 1;
}

.metric-row span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 14px;
}

.media-grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #e6ebe3;
  border: 1px solid var(--line);
}

.media-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.media-grid figure:hover img {
  transform: scale(1.03);
}

.featured-gallery figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(min(280px, 100%), 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
}

.popular-panel,
.policy-panel {
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(32, 37, 34, 0.08);
}

.popular-panel {
  background: var(--brand-green);
  color: #fff;
}

.popular-panel > span {
  color: #f0d98d;
}

.popular-panel p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.86);
}

.button-link,
.popular-panel .button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.popular-panel .button-link {
  background: #fff;
  color: var(--brand-green);
}

.policy-panel img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
}

.policy-panel p {
  color: var(--muted);
}

.policy-panel footer {
  display: grid;
  gap: 2px;
  margin-top: 24px;
}

.policy-panel footer span {
  color: var(--muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(32, 37, 34, 0.08);
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  background: #111;
}

.video-card a {
  display: inline-flex;
  padding: 14px 16px;
  color: var(--brand-red);
  font-weight: 800;
  text-decoration: none;
}

.contact-band {
  grid-template-columns: 1.4fr 1fr;
}

.contact-band p,
.contact-band a {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.contact-band .contact-page-link {
  display: inline-flex;
  color: #fff;
  font-size: 16px;
  justify-self: start;
}

.contact-page-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.7fr;
  gap: 18px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(32, 37, 34, 0.08);
}

.contact-page-panel div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.contact-page-panel span {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page-panel p,
.contact-page-panel a {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.page-hero {
  padding: 92px max(16px, calc((100vw - var(--max)) / 2)) 54px;
  background:
    linear-gradient(120deg, rgba(31, 106, 85, 0.96), rgba(180, 31, 53, 0.82)),
    var(--brand-green);
  color: #fff;
}

.page-hero.compact {
  padding-top: 70px;
  padding-bottom: 70px;
}

.page-hero > span {
  color: #f5db82;
}

.page-hero h1 {
  max-width: 980px;
  color: #fff;
}

.page-hero p,
.page-hero strong {
  color: rgba(255, 255, 255, 0.88);
}

.lead-copy {
  max-width: 860px;
  margin-top: 22px;
  display: grid;
  gap: 8px;
}

.lead-copy p {
  margin: 0;
}

.link-grid,
.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 12px;
}

.link-grid a,
.document-grid a {
  display: grid;
  gap: 8px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(32, 37, 34, 0.06);
}

.link-grid span,
.document-grid span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.link-grid small,
.document-grid small {
  overflow-wrap: anywhere;
  color: var(--muted);
}

.copy-section {
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
}

.copy-section h2 {
  margin: 34px 0 8px;
  color: var(--ink);
}

.empty-state {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.search-page-form {
  display: grid;
  gap: 10px;
}

.search-page-form label {
  font-weight: 800;
}

.search-page-form div {
  display: flex;
  gap: 8px;
}

input[type="search"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

button[type="submit"] {
  min-width: 72px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  margin-top: 84px;
  background: #202522;
  color: #fff;
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  display: block;
  width: 190px;
  height: auto;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-grid strong {
  color: #fff;
}

.footer-actions {
  display: grid;
  align-content: start;
  gap: 16px;
}

.kvkk-link {
  font-weight: 800;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1220px) {
  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    inset: 80px 0 auto 0;
    display: none;
    max-height: calc(100vh - 80px);
    overflow: auto;
    overscroll-behavior: contain;
    max-width: none;
    margin: 0;
    padding: 10px 16px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav > ul {
    display: grid;
    gap: 0;
    justify-content: stretch;
  }

  .primary-nav li {
    min-width: 0;
  }

  .primary-nav a {
    width: 100%;
    display: block;
    min-height: 0;
    padding: 12px 4px;
    color: var(--brand-blue);
    font-size: 17px;
    border-bottom: 1px solid #edf2f7;
    background: transparent;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .sub-menu {
    position: static;
    display: grid;
    gap: 0;
    width: 100%;
    margin: 0;
    padding-left: 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    overflow: visible;
    pointer-events: auto;
  }

  .has-children::after {
    display: none;
  }

  .sub-menu a {
    padding: 9px 4px;
    color: #406985;
    font-size: 16px;
    border-bottom: 1px solid #f1f4f7;
  }

  .contact-nav-item .sub-menu {
    min-width: 0;
    max-width: none;
  }

  .nav-contact-detail {
    padding: 9px 4px;
  }

  .nav-contact-detail p {
    color: #406985;
    font-size: 14px;
  }

  .primary-nav a:hover,
  .primary-nav li:focus-within > a,
  .primary-nav .nav-active,
  .sub-menu a:hover {
    color: #A98418;
    background: transparent;
  }
}

@media (max-width: 820px) {
  .intro-band,
  .split-section,
  .contact-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .contact-page-panel {
    grid-template-columns: 1fr;
  }

  .featured-gallery figure:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .section {
    margin: 52px auto;
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 64px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: min(240px, calc(100vw - 108px));
  }

  .primary-nav {
    inset-block-start: 64px;
    max-height: calc(100vh - 64px);
  }

  .hero {
    min-height: 430px;
  }

  .intro-band,
  .popular-panel,
  .policy-panel {
    padding: 22px;
  }

  .search-page-form div {
    display: grid;
  }
}
