:root {
  --r: #043e8c;
  --r2: #071c38;
  --rlight: #071c380a;
  --blk: #0c0c0c;
  --ink: #1a1a1a;
  --mid: #222;
  --mute: #aaa;
  --bdr: #e5e5e5;
  --off: #f6f6f6;
  --wh: #fff;
  --bg: #f4f6fb;
  --bg2: #ebeff8;
  --surface: #ffffff;
  --border: rgba(4, 62, 140, .1);
  --border2: rgba(4, 62, 140, .18);
  --green-light: #5DCAA5;
  --green-dim: rgba(29, 158, 117, 0.12);
  --green-border: rgba(29, 158, 117, 0.3);
  --navy: #1a2744;
  --text: #1a1a1a;
  --text-sec: #555;
  --text-ter: #888;
  --bg: #f7f6f2;
  --card-bg: #fff;
  --card-border: rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  /* primary brand */
  --blue: #043e8c;
  --blue-dim: rgba(4, 62, 140, .07);
  --blue-mid: rgba(4, 62, 140, .18);
  --blue-glow: rgba(4, 62, 140, .22);

  /* dark shade */
  --dark: #071c38;
  --dark-dim: rgba(7, 28, 56, .06);

  /* accent for past era — muted steel blue */
  --steel: #2a5fa8;
  --steel-dim: rgba(42, 95, 168, .1);

  /* accent for future era — deep navy */
  --navy: #071c38;
  --navy-dim: rgba(7, 28, 56, .08);

  /* text */
  --text: #071c38;
  --text2: #043e8c;
  --muted: rgba(7, 28, 56, .5);
  --muted2: rgba(7, 28, 56, .28);
  --muted3: rgba(7, 28, 56, .14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

hr:not([size]) {
  display: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--wh);
  color: var(--ink);
  font-family: Urbanist;
  font-weight: 400;
  overflow-x: clip;
}

strong {
  font-weight: bold;
}

/* ── CURSOR ── */
#cur {
  width: 7px;
  height: 7px;
  background: var(--r);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s;
}

/* Nav list */
.mob-nav-list {
  margin: 0;
}

.mob-nav-item {
  border-bottom: 1px solid var(--rlight);
}

.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  color: var(--blk);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .2s, background .2s, padding-left .2s;
  border-left: 3px solid transparent;
}

.mob-nav-link:hover {
  padding-left: 28px;
}

.mob-nav-link.active {
  color: var(--r);
  border-left-color: var(--r);
  background: rgba(4, 3, 82, 0.08);
}

/* Button reset for collapse toggle */
button.mob-nav-link {
  width: 100%;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
}


button.mob-nav-link.active {
  color: var(--r);
  border-left-color: var(--r);
}

/* Arrow chevron */
.mob-arrow {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s;
}

.mob-arrow::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-top: 2px;
  transition: transform .25s;
}

button.mob-sub-toggle[aria-expanded="true"] .mob-arrow::after {
  transform: rotate(45deg);
  margin-top: -3px;
}

/* Sub list */
.mob-sub-list {
  background: rgba(0, 0, 0, .25);
  display: none;
}

.mob-sub-list.show {
  display: block !important;
}


.mob-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px 11px 34px;
  font-weight: 400;
  color: var(--blk);
	width:100%;
	border:none;
  background-color: var(--wh);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}

.mob-sub-link::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--r);
  opacity: .5;
  flex-shrink: 0;
  transition: opacity .2s;
}

.mob-sub-link:hover {
  color: #fff;
  padding-left: 40px;
}

.mob-sub-link:hover::before {
  opacity: 1;
}

/* Lang switcher */
.mob-nav-lang {
  margin-top: 20px;
  padding: 6px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mob-lang-label {
  color: var(--blk);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mob-lang-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mob-lang-link {
  color: var(--blk);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 3px;
  transition: color .2s, border-color .2s, background .2s;
}

.mob-lang-link:hover {
  color: #fff;
  border-color: var(--r);
  background: rgba(200, 16, 46, .15);
}

/* İletişim bilgileri */
.mob-nav-contact {
  padding: 18px 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mob-contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mob-contact-icon {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(200, 16, 46, .22);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mob-contact-item a {
  color: #222;
  font-weight: 400;
}

.mob-contact-text {
  font-size: .775rem;
  font-weight: 400;
  line-height: 1.55;
}

a.mob-contact-link {
  text-decoration: none;
  transition: color .2s;
}

a.mob-contact-link:hover {
  color: var(--r);
}
#cur2 {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(56, 16, 200, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left .12s ease, top .12s ease;
}

body:has(a:hover) #cur {
  transform: translate(-50%, -50%) scale(2.5);
  background: transparent;
  border: 1px solid var(--r);
}

/* ── NAVBAR ── */
#nav {
  height: 100px;
  backdrop-filter: blur(10px);
  transition: background .4s, box-shadow .4s, border-bottom .4s;
}

#nav.solid {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 28px rgba(0, 0, 0, .07);
}

/* Nav links */
#nav .nav-link {
  color: #fff;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
  padding: 0;
  position: relative;
}

.fixed-top #nav .nav-link {
	color:#222;
}

#nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--r);
  transform: scaleX(0);
  transition: transform .25s;
}

#nav .nav-link:hover::after,
#nav .nav-link.active::after {
  transform: scaleX(1);
}

/* dropdown-toggle Bootstrap'in kendi ::after'ını kullanır — bizimkini iptal et */
#nav .nav-link.dropdown-toggle::after {
  display: none;
}

/* Alt menüsü olan üst öğe tıklanamaz, sadece hover ile açılır */
#nav .nav-item.dropdown>.nav-link.dropdown-toggle {
  cursor: default;
}

#nav .nav-link:hover,
#nav .nav-link.active {
  color: #222;
}



#nav.solid .nav-link {
  color: var(--mid);
}

#nav.solid .nav-link:hover,
#nav.solid .nav-link.active {
  color: var(--blk);
}

/* Dropdown menu — hover ile açılır (masaüstü) */
@media (min-width: 992px) {

  /* Nav-item'ı aşağı uzat → dropdown'a geçişte hover kopmuyor */
  #nav .nav-item.dropdown {
    padding-bottom: 20px;
    margin-bottom: -20px;
  }

  #nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    animation: ddFadeIn .18s ease;
  }

  @keyframes ddFadeIn {
    from {
      opacity: 0;
      transform: translateY(4px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

#nav .dropdown-menu {
  border: none;
  border-top: 2px solid var(--r);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  padding: 8px 0;
  margin-top: 4px;
}

#nav .dropdown-item.active {
  color: var(--wh) !important;
}

#nav .dropdown-item {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  padding: 10px 20px;
  transition: color .2s, background .2s;
}

#nav .dropdown-item:hover,
#nav .dropdown-item:focus {
  background: var(--r);
  color: var(--wh);
}

/* Dil değişkeni */
.nav-lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 2px;
  padding: 5px 12px !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
}

.nav-lang-globe {
  font-size: 12px;
  opacity: .7;
}

.nav-lang-item {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid);
  padding: 9px 20px;
}

/* Hamburger butonu */
.nav-hbg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-hbg span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.85);
  transition: transform .32s ease, opacity .32s ease, width .32s ease;
  transform-origin: center;
}

.nav-hbg span:nth-child(1) {
  width: 22px;
}

.nav-hbg span:nth-child(2) {
  width: 15px;
}

.nav-hbg span:nth-child(3) {
  width: 22px;
}

.nav-hbg.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hbg.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hbg.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#nav.solid .nav-hbg span {
  background: var(--ink);
}
/* ── 2. Seviye (grandchildren) toggle button ── */
button.mob-sub2-toggle {
  display: block;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  padding: 11px 22px 11px 34px;
  font-weight: 400;
  color: var(--blk);
  font-size: .85rem;
  transition: color .2s, padding-left .2s;
}
button.mob-sub2-toggle::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--r);
  opacity: .5;
  flex-shrink: 0;
  transition: opacity .2s;
  margin-right: 8px;
}
button.mob-sub2-toggle:hover {
  color: var(--r);
  padding-left: 40px;
}
button.mob-sub2-toggle:hover::before {
  opacity: 1;
}
button.mob-sub2-toggle.active {
  color: var(--r);
  font-weight: 500;
}
button.mob-sub2-toggle[aria-expanded="true"] .mob-arrow::after {
  transform: rotate(45deg);
  margin-top: -3px;
}

/* ── 2. Seviye sub list ── */
.mob-sub2-list {
  background: rgba(0, 0, 0, .12);
  display: none;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.mob-sub2-list.show {
  display: block !important;
}

/* ── 2. Seviye linkler ── */
.mob-sub2-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px 9px 50px;
  font-weight: 400;
  color: var(--blk);
  background-color: var(--wh);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  border-left: 2px solid transparent;
  opacity: .85;
}
.mob-sub2-link::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--r);
  opacity: .4;
  flex-shrink: 0;
  transition: opacity .2s;
}
.mob-sub2-link:hover {
  color: var(--r);
  padding-left: 56px;
  opacity: 1;
}
.mob-sub2-link:hover::before {
  opacity: 1;
}
.mob-sub2-link.active {
  color: var(--r);
  border-left-color: var(--r);
  opacity: 1;
}

/* ── has-sub2 item ayırıcı ── */
.mob-has-sub2:last-child {
  border-bottom: none;
}
/* Mobile nav collapse */
@media (max-width: 991.98px) {
	.av-certs{
		left:0!important;
	}
	#nav{
	background:#fff!important;
	}
	.ic-hero h1{
	font-size:4rem!important;
	}
	.hero-title{
	font-size:4rem!important;
	}
  .f-widgets .widget-title {
    margin: 0 !important;
    padding: 0 !important;
  }

  #nav {
    height: auto;
    min-height: 64px;
  }

  #mainNav {
    background: rgba(12, 12, 12, .97);
    padding: 16px 0;
    margin-top: 8px;
  }

  #nav.solid #mainNav {
    background: rgba(255, 255, 255, .97);
  }

  #nav #mainNav .nav-link {
    color: rgba(255, 255, 255, .75);
    padding: 10px 0;
  }

  #nav.solid #mainNav .nav-link {
    color: var(--mid);
  }

  #nav .nav-link::after {
    display: none;
  }
}

/* ── LOGO ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}

.nav-logo-img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.f-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.f-logo-img {
  display: block;
  object-fit: contain;
  opacity: .85;
  transition: opacity .2s;
}

.dropdown-submenu { position: relative; }
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}
.dropdown-submenu:hover > .dropdown-menu { display: block; margin:0!important; padding:4px 0!important}
.dropdown-submenu > .dropdown-toggle::after {
    display: inline-block;
    margin-left: auto;
    float: right;
    margin-top: 3px;
    content: "";
    border-top: .4em solid transparent;
    border-bottom: .4em solid transparent;
    border-left: .4em solid;
    border-right: 0;
	position:absolute;
	right:8px;
    vertical-align: middle;
}
.f-logo:hover .f-logo-img {
  opacity: 1;
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, .65) 0%,
      rgba(0, 0, 0, .45) 50%,
      rgba(0, 0, 0, .2) 100%);
}

.slide::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--r);
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  left: 5%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  max-width: 1000px;
}

.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--r);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .2s, transform .7s .2s;
}



.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--r);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  line-height: 1.1;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s .35s, transform .8s .35s;
}

.hero-title .red {
  color: var(--r);
}

.hero-title .outline {
  -webkit-text-stroke: 1.5px rgb(255 255 255 / 62%);
	color: transparent;
}

.hero-sub {
  font-size: 16px;
	display:none;
  color: rgba(255, 255, 255, 1);
  line-height: 1.75;
  max-width: 500px;
  margin-top: 20px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .5s, transform .7s .5s;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .65s, transform .7s .65s;
}

.hero-content.loaded .hero-tag,
.hero-content.loaded .hero-title,
.hero-content.loaded .hero-sub,
.hero-content.loaded .hero-btns {
  opacity: 1;
  transform: none;
}

.hero-meta {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.slide-counter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: rgba(255, 255, 255, .12);
  line-height: 1;
  letter-spacing: 2px;
}

.slide-counter span {
  font-size: 22px;
  color: var(--r);
}

.slide-labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.slide-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: color .2s;
}

.slide-label.active {
  color: #fff;
}

.slide-label:hover {
  color: rgba(255, 255, 255, .7);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  height: 3px;
  background: var(--r2);
  width: 0%;
  transition: width linear;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  transform: translateY(-50%);
  transition: all .22s;
}

.hero-prev {
  left: 32px;
}

.hero-next {
  right: 32px;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--r);
  border-color: var(--r);
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .25s;
}

.dot.active {
  background: var(--r);
  transform: scale(1.5);
}

.scroll-cue {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--r));
  animation: scrl 1.8s ease infinite;
}

@keyframes scrl {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── TICKER ── */
.ticker {
  background: var(--r2);
  padding: 11px 0;
  overflow: hidden;
}

.t-track {
  display: flex;
  animation: tick 22s linear infinite;
  white-space: nowrap;
}

.t-item {
  flex-shrink: 0;
  padding: 0 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  gap: 16px;
}

.t-sep {
  color: rgba(255, 255, 255, .25);
  font-size: 7px;
}

@keyframes tick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION TYPOGRAPHY ── */
section {
  padding: 100px 0;
}

.s-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--r);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--r);
}

.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 74px);
  line-height: .92;
  color: var(--blk);
  margin-bottom: 16px;
}

.s-title .r {
  color: var(--r);
}

.s-title .ghost {
  -webkit-text-stroke: 1px rgba(0, 0, 0, .12);
  color: transparent;
}

.red-bar {
  width: 40px;
  height: 3px;
  background: var(--r);
  margin: 20px 0 28px;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-block;
  background: var(--r);
  color: #fff;
  padding: 15px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s;
}

.btn-red:hover {
  background: var(--r2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  padding: 15px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s;
}

.btn-outline:hover {
  border-color: var(--r);
  color: var(--r);
  transform: translateY(-2px);
}

.btn-wh {
  background: #fff;
  color: var(--r);
  padding: 17px 44px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: all .22s;
}

.btn-wh:hover {
  background: var(--blk);
  color: #fff;
}

/* ── ABOUT ── */
.about {
  background: var(--wh);
}

.about p {
  font-size: 15.5px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-vis {
  position: relative;
  height: 500px;
}

.av-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 72px;
  bottom: 170px;
  border-radius: 4px;
  overflow: hidden;
}

.av-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.av-main:hover img {
  transform: scale(1.04);
}

.av-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 55%);
}

.av-main-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.av-main-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: #fff;
  line-height: 1;
}

.av-main-n span {
  color: var(--r);
}

.av-main-l {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.av-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--r);
  z-index: 2;
}

.av-certs {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 96px;
  top: 310px;
  background: var(--wh);
  border: 1px solid var(--bdr);
  border-top: 3px solid var(--r);
  border-radius: 0 0 4px 4px;
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.av-certs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--r);
  display: flex;
  align-items: center;
  gap: 8px;
}

.av-certs-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--r);
  flex-shrink: 0;
}

.av-cert-imgs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.av-cert-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.av-cert-item a {
  display: block;
  width: 75%;
  border: 1.5px solid var(--bdr);
  border-radius: 3px;
  padding: 8px 6px;
  background: var(--wh);
  cursor: zoom-in;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  text-decoration: none;
}

.av-cert-item a:hover {
  border-color: var(--r);
  box-shadow: 0 4px 16px rgba(15, 4, 78, 0.15);
  transform: translateY(-2px);
}

.av-cert-item img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter .3s;
}

.av-cert-item a:hover img {
  filter: grayscale(0%);
}

.av-cert-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  color: var(--mute);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  transition: color .25s;
}

.av-cert-item a:hover+span {
  color: var(--r);
}

.av-sm {
  position: absolute;
  right: 0;
  top: 80px;
  width: 114px;
  height: 114px;
  background: var(--wh);
  border: 1px solid var(--bdr);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 10px;
  gap: 8px;
}

.av-sm-logo {
  max-height: 45px;
  display: block;
  border-radius: 5px;
}

.av-sm-l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  color: var(--blk);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── SERVICES ── */
.services {
  background: var(--off);
}

.svc-lead {
  font-size: 1rem;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.7;
}

.svc {
  background: var(--wh);
  padding: 44px 36px 56px;
  position: relative;
  overflow: hidden;
  transition: transform .28s;
  cursor: pointer;
}

.svc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--r);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .32s;
}

.svc:hover {
  transform: translateY(-4px);
}

.svc:hover::before {
  transform: scaleY(1);
}

.svc-no {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: var(--r);
  letter-spacing: 2px;
  margin-bottom: 22px;
  opacity: .65;
}

.svc-ic {
  width: 50px;
  height: 50px;
  background: var(--rlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .25s;
}

.svc-ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--r);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s;
}

.svc:hover .svc-ic {
  background: var(--r);
  color: #fff;
}

.svc:hover .svc-ic svg {
  stroke: #fff;
}

.svc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--blk);
  margin-bottom: 10px;
  letter-spacing: .3px;
}

.svc-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.7;
}

.svc-arr {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 13px;
  transition: all .25s;
}

.svc:hover .svc-arr {
  border-color: var(--r);
  color: var(--r);
  transform: rotate(45deg);
}

/* ── REFERENCES ── */
.refs {
  background: var(--wh);
}

.ref-c {
  padding: 34px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.ref-inner {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--mute);
  text-align: center;
  transition: color .2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ref-inner i {
  font-size: 1.5rem;
}

.ref-c:hover .ref-inner {
  color: var(--r);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--r);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .07);
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  color: #fff;
  line-height: .95;
}

.cta-band h2 em {
  color: rgba(255, 255, 255, .3);
  font-style: normal;
}

/* ── CONTACT ── */
.contact {
  background: var(--wh);
}

.ci {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.ci-ico {
  width: 44px;
  height: 44px;
  background: var(--r);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-ico svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ci-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

/* ── FORMS ── */
.fg label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: .5rem 0;
  display: block;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: var(--wh);
  border: 1px solid var(--bdr);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: 'Barlow', sans-serif;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--r);
  box-shadow: none;
}

.fg textarea {
  resize: vertical;
  min-height: 106px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--blk);
  border-bottom: 3px solid var(--r);
}

.sb-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, .06);
  transition: background .25s;
}

.sb-item:last-child {
  border-right: none;
}

.sb-item:hover {
  background: rgba(200, 16, 46, .08);
}

.sb-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  color: #fff;
  line-height: 1;
}

.sb-n sub {
  font-size: 22px;
  color: var(--r);
  vertical-align: bottom;
}

.sb-l {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ── CERTS ── */
.certs {
  background: var(--blk);
  position: relative;
  overflow: hidden;
}

.certs::before {
  content: 'ISO';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 300px;
  color: rgba(255, 255, 255, .025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.certs .s-title {
  color: #fff;
}

.cc {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.cc:hover {
  background: rgba(200, 16, 46, .1);
  border-color: rgba(200, 16, 46, .3);
  transform: translateY(-4px);
}

.cc-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--r);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
}

.cc-name {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 7px;
}

.cc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .28);
  line-height: 1.6;
}

.cc-tick {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 26px;
  height: 26px;
  background: rgba(200, 16, 46, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
  font-size: 12px;
}

/* ── PROCESS ── */
.ps {
  background: var(--off);
  padding: 36px 28px;
  position: relative;
  transition: background .28s, transform .28s;
}

.ps:hover {
  background: var(--blk);
  transform: translateY(-4px);
}

.ps-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  color: rgba(0, 0, 0, .07);
  line-height: 1;
  margin-bottom: 14px;
  transition: color .28s;
}

.ps:hover .ps-n {
  color: var(--r);
}

.ps-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--blk);
  letter-spacing: .5px;
  margin-bottom: 8px;
  transition: color .28s;
}

.ps:hover .ps-title {
  color: #fff;
}

.ps-txt {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.65;
  transition: color .28s;
}

.ps:hover .ps-txt {
  color: rgba(255, 255, 255, .5);
}

/* ── IMG BREAK ── */
.img-break {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.img-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.img-break-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.ibc-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--r);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ibc-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--r);
}

.ibc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  color: #fff;
  line-height: .92;
  margin-bottom: 20px;
}

.ibc-title span {
  color: var(--r);
}

.ibc-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--r2);
  position: relative;
  overflow: hidden;
}

/* Dekoratif ışık küreleri */
.f-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.f-glow-orb--1 {
  width: 340px;
  height: 340px;
  background: rgba(4, 62, 140, .55);
  top: -80px;
  left: -80px;
}

.f-glow-orb--2 {
  width: 260px;
  height: 260px;
  background: rgba(4, 62, 140, .35);
  bottom: 30px;
  right: -60px;
}

.f-body {
  position: relative;
  z-index: 1;
}

/* Logo */
.f-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.f-logo-img {
  opacity: .92;
  transition: opacity .25s;
}

.f-logo:hover .f-logo-img {
  opacity: 1;
}

/* Tagline */
.f-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin: 0;
  max-width: 300px;
}

/* İletişim listesi */
.f-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wh);
  font-size: 13px;
  margin-top: 1px;
  transition: background .25s, border-color .25s;
}

.f-contact-item:hover .f-contact-icon {
  background: rgba(4, 62, 140, .4);
  border-color: rgba(4, 62, 140, .5);
}

.f-contact-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

.f-contact-link {
  text-decoration: none;
  transition: color .2s;
}

.f-contact-link:hover {
  color: #fff;
}

/* Bölüm başlıkları */
.f-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 1.5rem;
  text-transform: uppercase;
  color: var(--wh);
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: .6rem;
}

.f-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--r);
  border-radius: 2px;
}

/* Social ikonlar */
.f-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.f-social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, .04);
  transition: border-color .25s, background .25s, color .25s, transform .25s;
}

.f-social-link:hover {
  border-color: var(--r);
  background: rgba(4, 62, 140, .4);
  color: #fff;
  transform: translateY(-4px);
}

/* Aktif üretim badge */
.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
}

.f-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .45);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.f-badge-text {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .6px;
  color: rgba(255, 255, 255, .55);
}

/* Footer widget menus */
.f-widgets {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.f-widget-group {
  display: flex;
  flex-direction: column;
  min-width: 130px;
}

.svc-ic i {
  font-size: 1.5rem;
}

.f-widgets .widget-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: .5rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .32);
  padding-bottom: .6rem;
}

.f-widgets .widget-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.f-widgets .widget-title a:hover {
  color: rgba(255, 255, 255, .65);
}

.f-widgets .list-dash {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.f-widgets .list-dash li a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  padding: 4px 0;
  transition: color .2s, padding-left .2s;
}

.f-widgets .list-dash li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: var(--r);
  border-radius: 2px;
  flex-shrink: 0;
  transition: width .22s ease, margin-right .22s ease;
  margin-right: 0;
}

.f-widgets .list-dash li a:hover {
  color: #fff;
  padding-left: 2px;
}

.f-widgets .list-dash li a:hover::before {
  width: 12px;
  margin-right: 7px;
}

/* Ayırıcı çizgi */
.f-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12) 30%, rgba(255, 255, 255, .12) 70%, transparent);
  margin: 0;
}

/* Footer alt bar */
.f-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.f-copy {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .28);
  letter-spacing: .4px;
}

.f-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, .28);
  font-size: 11.5px;
  letter-spacing: .4px;
  transition: color .2s;
}

.f-credit img {
  opacity: .45;
  transition: opacity .2s;
  filter: brightness(0) invert(1);
}

.f-credit:hover {
  color: rgba(255, 255, 255, .65);
}

.f-credit:hover img {
  opacity: .75;
}

/* eski uyumluluk */
.f-links a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  letter-spacing: .8px;
  transition: color .2s;
}

.f-links a:hover {
  color: rgba(255, 255, 255, .9);
}

/* ── BANNER / BREADCRUMB ── */
.banner-area {
  background-size: cover;
  background-position: top;
  padding: 10rem 0;
  position: relative;
}

.banner-heading {
  position: absolute;
  z-index: 1;
  bottom: 15%;
  left: 0;
  right: 0;
}

.banner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--r);
  line-height: 1;
  text-align: center;
  margin-bottom: 16px;
}

.breadcrumb-item.active {
  font-weight: bold;
  color: var(--r);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.breadcrumb li {
  font-size: 13px;
  letter-spacing: 1px;
}

.breadcrumb li a {
  color: #222;
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: var(--r);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #222;
  font-weight: bold;
}

/* ── REVEAL ── */
.rv {
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.rv.on {
  opacity: 1;
  transform: none;
}

.nav-lang-dropdown .dropdown-menu {
  max-width: fit-content;
  width: fit-content;
  min-width: fit-content;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.d5 {
  transition-delay: .5s;
}

/* ── SPOTLIGHT ── */
.svc[style] {
  transition: background .15s, transform .28s;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1070;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

#cookie-banner.hidden {
  display: none !important;
}

@media (min-width: 640px) {
  #cookie-banner {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  #cookie-banner {
    left: 50%;
    right: auto;
    width: calc(100% - 3rem);
    transform: translateX(-50%);
  }
}

.gcb-content {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(12, 12, 12, .96);
  padding: 1.25rem;
  color: #f5f0eb;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

@media (min-width: 640px) {
  .gcb-content {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gcb-content {
    padding: 1.75rem;
  }
}

/* Background blobs */
.gcb-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.gcb-blob--1 {
  width: 13rem;
  height: 13rem;
  bottom: -4rem;
  right: -3rem;
  background: rgb(16 47 200 / 18%);
}

.gcb-blob--2 {
  width: 10rem;
  height: 10rem;
  top: -4rem;
  right: 5rem;
  background: rgba(255, 255, 255, .07);
}

/* Header */
.gcb-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 1rem;
}

.gcb-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--r);
  margin: 0 0 .5rem;
}

.gcb-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #f5f0eb;
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .gcb-title {
    font-size: 1.75rem;
  }
}

/* Settings icon box */
.gcb-icon-box {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  color: var(--r);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .gcb-icon-box {
    display: flex;
  }
}

/* Description */
.gcb-text {
  margin: 1rem 0 0;
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(245, 240, 235, .8);
}

@media (min-width: 640px) {
  .gcb-text {
    font-size: .9375rem;
  }
}

.gcb-policy-link {
  margin-left: .25rem;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--r);
  text-decoration: none;
  transition: color .3s;
}

.gcb-policy-link:hover {
  color: var(--wh);
}

/* Categories */
.gcb-categories {
  margin-top: 1.25rem;
  gap: .75rem;
}

.gcb-categories.hidden {
  display: none !important;
}

.gcb-categories.grid {
  display: grid !important;
}

.gcb-category {
  display: grid;
  gap: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  padding: 1rem;
  backdrop-filter: blur(8px);
  transition: border-color .3s;
}

@media (min-width: 640px) {
  .gcb-category {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.gcb-category:not(.gcb-category--necessary):hover {
  border-color: rgba(200, 16, 46, .3);
}

.gcb-category-name {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: #f5f0eb;
  margin-bottom: .25rem;
}

.gcb-category-desc {
  display: block;
  font-size: .875rem;
  line-height: 1.5;
  color: rgba(245, 240, 235, .6);
}

/* Toggle switch */
.gcb-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.gcb-toggle--disabled {
  cursor: not-allowed;
  opacity: .7;
}

.gcb-toggle input {
  /* sr-only */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.gcb-slider {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .15);
  transition: background .3s;
  flex-shrink: 0;
}

.gcb-slider::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  transition: transform .3s;
}

/* Always-on toggle (necessary) */
.gcb-toggle--disabled .gcb-slider {
  background: rgba(200, 16, 46, .7);
}

.gcb-toggle--disabled .gcb-slider::after {
  background: var(--blk);
}

/* Checked state */
.gcb-toggle input:checked+.gcb-slider {
  background: var(--r);
}

.gcb-toggle input:checked+.gcb-slider::after {
  transform: translateX(1.25rem);
}

/* Action buttons */
.gcb-actions {
  position: relative;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

@media (min-width: 640px) {
  .gcb-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }
}

.gcb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}

.gcb-btn--secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #f5f0eb;
}

.gcb-btn--secondary:hover {
  border-color: var(--r);
  color: var(--r);
}

.gcb-btn--outline {
  background: rgba(255, 255, 255, .05);
  border: none;
  color: var(--wh);
}

.gcb-btn--outline:hover {
  background: var(--wh);
  color: var(--r);
}

.gcb-btn--primary {
  background: var(--r);
  border: 1px solid transparent;
  color: #fff;
}

.gcb-btn--primary:hover {
  background: var(--r2);
}

.gcb-btn--outline.hidden {
  display: none !important;
}

/* Save row */
.gcb-save-row {
  position: relative;
  margin-top: 1rem;
}

.gcb-save-row.hidden {
  display: none !important;
}

.gcb-save-row.block {
  display: block !important;
}

.gcb-btn--save {
  width: 100%;
  background: #f5f0eb;
  border: 1px solid transparent;
  color: var(--blk);
}

.gcb-btn--save:hover {
  background: #fff;
}

@media (min-width: 640px) {
  .gcb-btn--save {
    width: auto;
  }
}

/* ── MOBILE SLIDE-IN NAV ── */
#mobileNav {
  position: fixed;
  top: 0;
  left: -1px;
  height: 100%;
  width: 70%;
  max-width: 340px;
  background: var(--wh);
  border-right: 3px solid var(--r);
  z-index: 1055;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#mobileNav.show {
  transform: translateX(0);
}

.mob-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.mob-nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

body.mob-nav-open {
  overflow: hidden;
}

.mob-nav-header {
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.mob-nav-brand {
  display: flex;
  align-items: center;
}

.mob-nav-logo-img {
  height: 45px;
}

.mob-nav-close {
  background: none;
  border: none;
  color: #222;
  font-size: 15px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1;
  transition: color .2s, border-color .2s, background .2s;
}

.mob-nav-close:hover {
  color: #fff;
  border-color: var(--r);
  background: rgba(200, 16, 46, .12);
}

.mob-nav-body {
  padding: 8px 0 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* ── 2. Seviye (grandchildren) toggle button ── */
.mob-sub2-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  padding: 11px 22px 11px 34px;
  font-weight: 400;
  color: var(--blk);
  font-size: .85rem;
  transition: color .2s, padding-left .2s;
}
.mob-sub2-toggle::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--r);
  opacity: .5;
  flex-shrink: 0;
  transition: opacity .2s;
  margin-right: 8px;
}
.mob-sub2-toggle:hover {
  color: var(--r);
  padding-left: 40px;
}
.mob-sub2-toggle:hover::before {
  opacity: 1;
}
.mob-sub2-toggle.active {
  color: var(--r);
  font-weight: 500;
}
.mob-sub2-toggle[aria-expanded="true"] .mob-arrow::after {
  transform: rotate(45deg);
  margin-top: -3px;
}

/* ── 2. Seviye sub list ── */
.mob-sub2-list {
  background: rgba(0, 0, 0, .12);
  display: none;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.mob-sub2-list.show {
  display: block !important;
}

/* ── 2. Seviye linkler ── */
.mob-sub2-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px 9px 50px;
  font-weight: 400;
  color: var(--blk);
  background-color: var(--wh);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  border-left: 2px solid transparent;
  opacity: .85;
}
.mob-sub2-link::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--r);
  opacity: .4;
  flex-shrink: 0;
  transition: opacity .2s;
}
.mob-sub2-link:hover {
  color: var(--r);
  padding-left: 56px;
  opacity: 1;
}
.mob-sub2-link:hover::before {
  opacity: 1;
}
.mob-sub2-link.active {
  color: var(--r);
  border-left-color: var(--r);
  opacity: 1;
}

/* ── has-sub2 item ayırıcı ── */
/* ── MOBILE ── */
@media (max-width: 767.98px) {
  .hero-content {
    padding: 0 24px 56px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .hero-meta {
    display: none;
  }

  .about-vis {
    height: 320px;
  }

  .img-break {
    height: 320px;
  }

  section {
    padding: 72px 0;
  }
}

.ik-basvuru-section {
  background: #fff;
}

.ik-form-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.ik-form-main-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--r);
  ;
  margin: 10px auto 0;
  border-radius: 2px;
}

.ik-form-main-desc {
  color: #666;
  font-size: 0.97rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== ADIM GÖSTERGESİ ===== */
.ik-steps-wrapper {
  margin-bottom: 32px;
}

.ik-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.ik-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
  min-width: 64px;
}

.ik-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}

.ik-step.active .ik-step-circle {
  background: var(--r2);
  ;
  border-color: var(--r2);
  ;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(6, 1, 70, 0.15);
}

.ik-step.done .ik-step-circle {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.ik-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ik-step.active .ik-step-label {
  color: var(--r);
  ;
}

.ik-step.done .ik-step-label {
  color: #1a1a1a;
}

.ik-step-line {
  flex: 1;
  height: 2px;
  background: #e5e5e5;
  margin-bottom: 20px;
  max-width: 60px;
}

.ik-progress-bar-wrap {
  height: 4px;
  background: #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.ik-progress-bar {
  height: 100%;
  background: var(--r);
  ;
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* ===== PANEL (adım içerikleri) ===== */
.ik-step-panel {
  display: none;
}

.ik-step-panel.active {
  display: block;
  animation: ikFadeIn 0.3s ease;
}

@keyframes ikFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== KART ===== */
.ik-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.ik-card-header {
  background: var(--r);
  ;
  color: #fff;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.ik-card-header i {
  color: #fff;
}

.ik-step-badge {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgb(0 0 0 / 40%);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
}

.ik-card-body {
  padding: 24px;
}

.ik-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.ik-section-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--r);
  ;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ik-divider {
  height: 1px;
  background: #eee;
  margin: 16px 0;
}

/* ===== FORM ALANLARI ===== */
.ik-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ik-required {
  color: var(--r);
  ;
}

.ik-input {
  width: 100%;
  padding: 9px 13px;
  border: 1.5px solid #e5e5e5;
  border-radius: 6px;
  font-size: 0.93rem;
  color: #1a1a1a;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: auto;
  -webkit-appearance: auto;
  box-sizing: border-box;
}

.ik-input:focus {
  border-color: var(--r);
  ;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.10);
  background: #fff;
}

.ik-input::placeholder {
  color: #bbb;
  font-size: 0.88rem;
}

/* ===== FOTOĞRAF ALANI ===== */
.ik-photo-zone {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #06159717;
  border: 2px dashed var(--r);
  ;
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.ik-photo-zone:hover {
  background: #ffe0e5;
}

.ik-photo-preview {
  width: 90px;
  height: 110px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #0c0453;
}

.ik-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--r);
  ;
  text-align: center;
  padding: 8px;
}

.ik-photo-placeholder i {
  font-size: 1.6rem;
}

.ik-photo-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
}

.ik-photo-placeholder small {
  font-size: 0.65rem;
  color: #aaa;
}

.ik-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ik-photo-info strong {
  display: block;
  color: #1a1a1a;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ik-photo-info p {
  color: #777;
  font-size: 0.83rem;
  margin: 0 0 10px;
}

.ik-photo-browse {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--r);
  ;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 5px;
  pointer-events: none;
}

/* ===== ALT GRUP ===== */
.ik-sub-group {
  background: #f6f6f6;
  border-radius: 7px;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
}

.ik-sub-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.ik-sub-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--r);
  ;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ik-sub-group-title i {
  margin-right: 4px;
}

/* ===== REFERANS BUTONLARI ===== */
.ik-ref-remove-btn {
  background: none;
  border: 1.5px solid var(--r);
  ;
  color: var(--r);
  ;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.72rem;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.ik-ref-remove-btn:hover {
  background: var(--r);
  ;
  color: #fff;
}

.ik-ref-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 2px dashed var(--r);
  ;
  color: var(--r);
  ;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.ik-ref-add-btn:hover {
  background: var(--r);
  ;
  color: #fff;
}

.ik-ref-add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== NAVİGASYON BUTONLARI ===== */
.ik-btn-next {
  background: var(--r);
  ;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 28px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.1s;
}

.ik-btn-next:hover {
  background: var(--r2);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(17, 4, 75, 0.25);
}

.ik-btn-back {
  background: none;
  color: #666;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  padding: 10px 22px;
  font-size: 0.91rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.15s, color 0.15s;
}

.ik-btn-back:hover {
  border-color: var(--r);
  ;
  color: var(--r);
  ;
}

/* ===== KVKK & SUBMIT ===== */
.ik-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  cursor: pointer;
  line-height: 1.55;
}

.ik-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--r);
  ;
}

.ik-link {
  color: var(--r);
  ;
  font-weight: 600;
  text-decoration: underline;
}

.ik-submit-btn {
  background: var(--r);
  ;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.1s;
}

.ik-submit-btn:hover {
  background: #9e0c24;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.28);
}

/* ===== UYARI / BAŞARI ===== */
.ik-alert-danger {
  background: #fff0f2;
  border: 1.5px solid var(--r);
  ;
  color: #9e0c24;
  border-radius: 8px;
  padding: 13px 18px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.ik-success-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 60px 40px;
}

.ik-success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 14px;
}

.ik-success-box h3 {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 10px;
}

.ik-success-box p {
  color: #666;
}

/* ===== MOBİL ===== */
@media (max-width: 768px) {
  .banner-title {
    font-size: 3rem;
  }

  .banner-area {
    background-position: right;
  }

  .ik-card-body {
    padding: 14px;
  }

  .ik-card-footer {
    padding: 12px 14px;
  }

  .ik-form-main-title {
    font-size: 1.4rem;
  }

  .ik-step-label {
    display: none;
  }

  .ik-step-circle {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .ik-photo-zone {
    flex-direction: column;
    text-align: center;
  }

  .ik-submit-btn,
  .ik-btn-next {
    padding: 10px 18px;
  }
}

.ca-section {
  padding: 90px 0 110px;
  background: var(--wh);
}

.ca-header {
  margin-bottom: 60px;
}

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

@media (max-width: 991px) {
  .nav-logo-img {
    width: 80%;
  }

  .ca-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ca-grid {
    grid-template-columns: 1fr;
  }
}

.ca-card {
  background: var(--wh);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .28s, transform .28s;
}

.ca-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  transform: translateY(-5px);
}

.ca-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.ca-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.ca-card:hover .ca-card-img img {
  transform: scale(1.06);
}

.ca-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: rgba(255, 255, 255, .18);
  pointer-events: none;
  user-select: none;
}

.ca-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 3px solid var(--bdr);
  transition: border-color .28s;
}

.ca-card:hover .ca-card-body {
  border-color: var(--r);
}

.ca-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .5px;
  color: var(--blk);
  margin: 0;
  line-height: 1.15;
}

.ca-card-text {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.ca-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--r);
  text-decoration: none;
  transition: gap .22s;
}

.ca-card:hover .ca-card-link {
  gap: 12px;
}

.ca-card-body>a {
  text-decoration: none;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c2c2a;
  margin-bottom: 1rem;
}

.about-section p strong {
  color: #1a1a18;
  font-weight: 600;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0 2rem;
}

.badge {
  background-color: var(--r);
  color: var(--wh);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2.5rem;
}

@media (max-width: 600px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  background-color: var(--r2);
  border: 1px solid #d3d1c7;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  color: var(--wh);
  overflow: hidden;
}

.mv-card::before {
  content: ’’;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #1D9E75;
}

.mv-card h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wh);
  margin-bottom: 0.75rem;
}

.mv-card strong {
  color: var(--wh);
}

.mv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.stat-box {
  background: var(--off);
  border: 1px solid #d3d1c7;
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  text-align: center;
}

.stat-box .number {
  font-size: 22px;
  font-weight: 700;
  color: var(--r);
}

.stat-box .desc {
  font-size: 12px;
  color: #888780;
  margin-top: 3px;
}

.divider {
  border: none;
  border-top: 1px solid #d3d1c7;
  margin: 2rem 0;
}


.legal-hub {
  background: var(--wh);
  padding: 80px 0 100px;
}

.legal-hub-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.legal-sidebar {
  width: 275px;
  flex-shrink: 0;
  position: sticky;
  top: calc(5rem + 1.5rem);
  align-self: start;
  margin-bottom: 1.25rem;
  background: var(--wh);
  border: 1px solid var(--bdr);
  border-radius: 4px;
  padding: 1.25rem;
}

.legal-sidebar-head {
  border-bottom: 1px solid var(--bdr);
  padding-bottom: .75rem;
  margin-bottom: .75rem;
}

.legal-panel-copy h4 {
  margin-top: .5rem;
  font-size: 1.25rem;
}

.legal-sidebar-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--r);
  margin: 0;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.legal-nav-link {
  display: block;
  padding: .55rem .75rem;
  font-size: 13px;
  font-weight: 400;
  color: var(--mute);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 2px 2px 0;
  transition: color .2s, border-color .2s, background .2s;
  line-height: 1.4;
  cursor: pointer;
}

.legal-nav-link:hover {
  color: var(--ink);
  background: var(--off);
}

.legal-nav-link[aria-current="true"] {
  color: var(--r);
  border-left-color: var(--r);
  background: var(--rlight);
  font-weight: 500;
}

.legal-content-shell {
  flex: 1;
  min-width: 0;
}

.legal-panel {
  display: none;
  background: var(--wh);
  border: 1px solid var(--bdr);
  border-radius: 4px;
  padding: 2.5rem;
}

.legal-panel.is-active {
  display: block;
}

.legal-panel-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--r);
  margin: 0 0 .75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-panel-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--r);
  flex-shrink: 0;
}

.legal-panel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: var(--blk);
  margin: 0 0 .5rem;
}

.legal-panel-bar {
  width: 80px;
  height: 2px;
  background: var(--r);
  margin: 0 0 1.75rem;
}

.legal-panel-copy {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
}

.legal-panel-copy+.legal-panel-copy {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bdr);
}

.legal-panel-copy p {
  margin: 0 0 .8rem;
}

.legal-panel-copy a {
  text-decoration: none;
}

.legal-panel-copy a:hover {
  color: var(--r2);
}

@media (max-width: 991px) {
  .legal-hub-inner {
    flex-direction: column;
    gap: 24px;
  }

  .legal-sidebar {
    width: 100%;
    position: static;
  }

  .legal-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .f-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin: 0;
  }

  .f-widget-group {
    min-width: 110px;
  }

  .f-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .legal-nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 2px 2px 0 0;
    padding: .45rem .5rem;
    font-size: 12px;
  }

  .legal-nav-link[aria-current="true"] {
    border-left: none;
    border-bottom-color: var(--r);
  }

  .legal-panel {
    padding: 1.5rem;
  }

  .legal-panel-header {
    margin: -1.5rem -1.5rem 1.25rem;
    padding: 1.25rem 1.5rem 1rem;
  }
}

/* ── LEGAL INTRO ── */
.legal-intro {
  padding: 80px 0 70px;
  background: var(--wh);
}

.legal-intro-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
}

.legal-intro-text p {
  margin: 0 0 .85rem;
}

.legal-intro-img {
  position: relative;
}

.legal-intro-img img {
  border-radius: 4px;
  display: block;
  width: 100%;
  object-fit: cover;
}

.legal-intro-img::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--r);
  border-radius: 4px;
  z-index: 0;
  opacity: .18;
}

/* ── LEGAL PANEL HEADER / BODY ── */
.legal-panel-header {
  background: var(--wh);
  margin: -2.5rem -2.5rem 1.75rem;
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--bdr);
  border-radius: 4px 4px 0 0;
}

.legal-panel-bar {
  margin-bottom: 0;
}

.legal-panel-body {
  padding: 0;
}

/* ── LEGAL COPY HEADING ── */
.legal-copy-heading {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--blk) !important;
  padding: .45rem .75rem !important;
  margin: 1.25rem 0 .3rem !important;
  border-left: 2px solid var(--r) !important;
  background: var(--rlight) !important;
  border-radius: 0 2px 2px 0 !important;
}


.ct-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ct-breadcrumb li {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.ct-breadcrumb li a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.ct-breadcrumb li a:hover {
  color: #fff;
}

.ct-breadcrumb li.sep {
  opacity: .3;
}

.ct-breadcrumb li.active {
  color: rgba(255, 255, 255, .9);
}

/* ── MAIN CONTACT SECTION ── */
.ct-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 700px;
}

@media (max-width: 991px) {
  .ct-wrap {
    grid-template-columns: 1fr;
  }
}

/* Left panel — dark */
.ct-panel {
  background: var(--r2);
  position: relative;
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ct-panel::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .04);
  pointer-events: none;
}

.ct-panel::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .04);
  pointer-events: none;
}

.ct-panel-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 80px;
  background: var(--r);
}

.ct-panel-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--r);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ct-panel-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--r);
}

.ct-panel-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: .9;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ct-panel-heading .r {
  color: var(--r);
}

.ct-panel-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  max-width: 280px;
}

.ct-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Contact info items */
.ct-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.ct-info-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  background: var(--r);
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
}

.ct-info-item:hover .ct-info-icon {
  border-color: var(--r);
}

.ct-info-body {
  padding-top: 2px;
}

.ct-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 4px;
}

.ct-info-value {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.55;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.ct-info-value:hover {
  color: #fff;
}

/* Social row */
.ct-social {
  display: flex;
  gap: 10px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.ct-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: all .22s;
}

.ct-social-link:hover {
  background: var(--r);
  border-color: var(--r);
  color: #fff;
  transform: translateY(-2px);
}

/* Right panel — form */
.ct-form-panel {
  background: var(--wh);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1199px) {
  .ct-form-panel {
    padding: 56px 40px;
  }
}

@media (max-width: 767px) {
  .ct-form-panel {
    padding: 48px 24px;
  }
}

.ct-form-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--r);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ct-form-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--r);
}

.ct-form-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: .9;
  color: var(--blk);
  margin-bottom: 10px;
}

.ct-form-sub {
  font-size: 14.5px;
  color: var(--mute);
  margin-bottom: 44px;
  line-height: 1.7;
}

/* Field groups */
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .ct-field-row {
    grid-template-columns: 1fr;
  }
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.ct-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
}

.ct-field input,
.ct-field textarea {
  border: none;
  border-bottom: 1.5px solid var(--bdr);
  border-radius: 0;
  padding: 12px 0;
  font-family: Urbanist, sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color .22s;
  width: 100%;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: #ccc;
  font-size: 14px;
}

.ct-field input:focus,
.ct-field textarea:focus {
  border-color: var(--r);
}

.ct-field textarea {
  min-height: 110px;
  resize: vertical;
}

/* Send button */
.ct-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--r);
  color: #fff;
  border: none;
  padding: 16px 42px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background .22s, transform .22s, gap .22s;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.ct-send-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--r2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.ct-send-btn:hover::before {
  transform: scaleX(1);
  background: radial-gradient(#28282800, transparent);
}

.ct-send-btn:hover {
  gap: 18px;
}

.ct-send-btn span,
.ct-send-btn i {
  position: relative;
  z-index: 1;
}

.ct-send-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.ct-send-btn:disabled::before {
  display: none;
}

/* Result message */
#ctResult {
  display: none;
  margin-top: 20px;
  padding: 14px 20px;
  font-size: 13.5px;
  letter-spacing: .3px;
  border-left: 3px solid;
}

#ctResult.ok {
  background: #effffa;
  color: #0a7a55;
  border-color: #0a7a55;
}

#ctResult.err {
  background: #fff2f2;
  color: #b00;
  border-color: #b00;
}

/* reCaptcha row */
.ct-captcha-row {
  margin: 20px 0;
}

/* ── MAP ── */
.ct-map {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.ct-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%);
  transition: filter .4s;
}

.ct-map:hover iframe {
  filter: grayscale(0%);
}

.ct-map-badge {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--r2);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.ct-map-badge i {
  color: var(--r);
  font-size: 15px;
}

.ct-map-placeholder {
  height: 480px;
  background: var(--r2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-map-ph-inner {
  text-align: center;
  padding: 40px;
}

.ct-map-ph-inner>i {
  font-size: 52px;
  color: var(--r);
  margin-bottom: 20px;
  display: block;
}

.ct-map-ph-inner p {
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 380px;
}

.ct-map-ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--r);
  color: #fff;
  padding: 13px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background .22s;
}

.ct-map-ph-btn:hover {
  background: #1a73e8;
  color: #fff;
}

/* ── Fade-in animation ── */
.ct-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.ct-fade-up.visible {
  opacity: 1;
  transform: none;
}

.ct-fade-up:nth-child(2) {
  transition-delay: .1s;
}

.ct-fade-up:nth-child(3) {
  transition-delay: .18s;
}

.ct-fade-up:nth-child(4) {
  transition-delay: .26s;
}

.av-cert-item img {
  max-height: 100%;
}

.av-cert-item span {
  font-size: 1rem;
  color: var(--blck);
}

/* ── BENTO GALLERY ── */
.gg-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Bento pattern: every 7-item cycle, items 1 & 6 span 2 cols */
.gg-wrap .gi:nth-child(7n+1),
.gg-wrap .gi:nth-child(7n+6) {
  grid-column: span 2;
}

/* Entrance stagger */
.gi {
  opacity: 0;
  transform: translateY(22px) scale(.97);
  animation: giFade .55s cubic-bezier(.22, .61, .36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

@keyframes giFade {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Card */
.gc {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 100%;
  min-height: 230px;
  box-shadow: 0 2px 14px rgba(4, 62, 140, .09);
  transition: box-shadow .38s ease, transform .38s ease;
  background: #e8eef6;
  text-decoration: none;
}

.gc:hover {
  box-shadow: 0 16px 48px rgba(4, 62, 140, .20);
  transform: translateY(-5px) scale(1.01);
}

/* Spanned cards taller */
.gi:nth-child(7n+1) .gc,
.gi:nth-child(7n+6) .gc {
  min-height: 300px;
}

/* Image */
.gi-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.gc:hover .gi-img {
  transform: scale(1.07);
}

/* Overlay */
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(4, 62, 140, .0) 30%,
      rgba(7, 28, 56, .72) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc:hover .gi-overlay {
  opacity: 1;
}

/* Zoom icon */
.gi-icon {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  background: rgba(4, 62, 140, .30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: scale(.5) rotate(-15deg);
  transition: transform .42s cubic-bezier(.34, 1.56, .64, 1);
}

.gc:hover .gi-icon {
  transform: scale(1) rotate(0deg);
}

/* Corner accent line */
.gc::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #043e8c, #1a6ed8);
  border-radius: 0 0 14px 14px;
  transition: width .4s ease;
}

.gc:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .gg-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .gg-wrap .gi:nth-child(7n+1),
  .gg-wrap .gi:nth-child(7n+6) {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .gg-wrap {
    grid-template-columns: 1fr;
  }

  .gg-wrap .gi:nth-child(7n+1),
  .gg-wrap .gi:nth-child(7n+6) {
    grid-column: span 1;
  }

  .gc,
  .gi:nth-child(7n+1) .gc,
  .gi:nth-child(7n+6) .gc {
    min-height: 200px;
  }
}

.bd-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.bd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.65) 70%,
      rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.bd-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}

.bd-hero .breadcrumb {
  background: none;
  padding: 0;
}

.bd-hero .breadcrumb-item,
.bd-hero .breadcrumb-item a,
.bd-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  text-decoration: none;
}

.bd-hero .breadcrumb-item a:hover {
  color: #fff;
}

.bd-hero .breadcrumb-item+.bd-hero .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.bd-hero-tag {
  display: inline-block;
  background: var(--r2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 0.9rem;
}

.bd-hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  max-width: 920px;
}

/* ── İÇERİK ALANI ── */
.bd-body {
  padding: 3.5rem 0 4rem;
  background: #fff;
}

.bd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991px) {
  .bd-layout {
    grid-template-columns: 1fr;
  }

  .bd-sidebar {
    order: 1;
  }
}

/* Makale metni */
.bd-article {
  color: #2c2c2c;
  font-size: 1.05rem;
  line-height: 1.85;
}

.bd-article h1 {
  font-weight: bold;
}

.bd-article h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #ebebeb;
}

.bd-article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 1.5rem 0 0.5rem;
}

.bd-article p {
  margin-bottom: 1.2rem;
}

.bd-article ul,
.bd-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.bd-article li {
  margin-bottom: 0.4rem;
}

.bd-article img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
  object-fit: cover;
}

.bd-article blockquote {
  border-left: 4px solid var(--color-red, #c0392b);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: #fafafa;
  border-radius: 0 8px 8px 0;
  color: #555;
  font-style: italic;
}

/* Kırmızı çizgi ayraç */
.bd-redbar {
  width: 48px;
  height: 4px;
  background: var(--r2);
  border-radius: 2px;
  margin: 0 0 1.75rem;
}

/* Öne çıkan görsel */
.bd-featured-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.bd-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

/* ── SIDEBAR ── */
.bd-sidebar {}

.bd-sidebar-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ebebeb;
}

.bd-sidebar-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 1rem;
}

.bd-related-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.bd-related-item:last-child {
  border-bottom: none;
}

.bd-related-item:hover .bd-related-title {
  color: var(--color-red, #c0392b);
}

.bd-related-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #ddd;
}

.bd-related-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  line-height: 1.35;
  transition: color 0.2s;
}

.bd-related-cat {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

/* Paylaşım butonları */
.bd-share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}

.bd-share-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.bd-share-btn.twitter {
  background: #fff
}

.bd-share-btn.linkedin {
  background: #0077b5;
}

.bd-share-btn.whatsapp {
  background: #25d366;
}

.dt-card {
  display: inline-flex;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  font-family: inherit;
  margin-bottom: 1rem;
}

.dt-block {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dt-block:first-child {
  border-right: 1px solid #e0e0e0;
  padding-right: .5rem;
}

.dt-block:last-child {
  padding-left: .5rem;
}

.dt-block .ti {
  font-size: 16px;
  color: #222;
}

.dt-label {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dt-val {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  font-variant-numeric: tabular-nums;
}

.blog-section {
  padding: 5rem 0;
  background: #f9f9f9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .bd-sidebar {
    position: relative;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #f0f0f0;
  transition: transform .4s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card__img-wrap {
  overflow: hidden;
}

.blog-card__body {
  padding: 1.5rem 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--r2);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: .85rem;
  align-self: flex-start;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
  margin: 0 0 .6rem;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.blog-card__title a:hover {
  color: var(--clr-red, #c0392b);
}

.blog-card__bar {
  width: 36px;
  height: 3px;
  background: var(--r2);
  border-radius: 2px;
  margin: 0 0 1rem;
}

.blog-card__excerpt {
  font-size: .88rem;
  color: #777;
  line-height: 1.75;
  flex: 1;
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--r2);
  text-decoration: none;
  letter-spacing: .02em;
  transition: gap .2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.blog-card__btn:hover {
  gap: 10px;
  color: var(--r2);
}

.blog-card__btn svg {
  transition: transform .2s;
}

.blog-card__btn:hover svg {
  transform: translateX(3px);
}

.blog-card__num {
  font-size: .72rem;
  font-weight: 700;
  color: #e0e0e0;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

/* HEADER */
thead th {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  letter-spacing: .3px;
}

/* BODY */
tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
}

/* zebra */
tbody tr:nth-child(even) {
  background: #f9fafb;
}

/* hover */
tbody tr:hover {
  background: #eef2ff;
  transition: .2s;
}

/* rounded fix */
thead th:first-child {
  border-top-left-radius: 12px;
}

thead th:last-child {
  border-top-right-radius: 12px;
}

/* last row border remove */
tbody tr:last-child td {
  border-bottom: none;
}

/* responsive */
@media (max-width: 768px) {

  table {
    border-radius: 10px;
    font-size: 13px;
  }

  thead {
    display: none;
  }

  tbody tr {
    display: block;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    background: #fff;
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #f3f4f6;
  }

  tbody td:last-child {
    border-bottom: none;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #111827;
  }
}

.to-up a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: .4px;
  gap: .25rem;
  position: relative;
  width: fit-content;
  margin: auto;
  color: rgba(255, 255, 255, .66);
  text-decoration: none;
}

.to-up path {
  stroke: rgba(255, 255, 255, .66);
}

/* ERA DIVIDER */
.era-divider {
  position: relative;
  padding: 80px 48px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  background: var(--bg);
}

.era-divider::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2));
}

.era-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 110px);
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}

.era-label.past {
  color: var(--steel);
}

.era-label.present {
  color: var(--blue);
}

.era-label.future {
  color: var(--dark);
}

.era-sub {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--muted2);
  margin-left: 8px;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(29, 158, 117, 0.14);
  border: 1px solid rgba(29, 158, 117, 0.35);
  color: #5DCAA5;
  letter-spacing: 0.04em;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  text-align: center;
}

.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--r);
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-sec);
  margin-top: 5px;
  line-height: 1.4;
}

/* SECTION LABEL */
.sec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-ter);
  margin-bottom: 1.4rem;
  padding-left: 2px;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 34px;
  margin-bottom: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 16px;
  bottom: 16px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--r), rgba(29, 158, 117, 0.08));
}

.tl-item {
  position: relative;
}

.tl-dot {
  position: absolute;
  left: -29px;
  top: 22px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--r2);
  border: 2.5px solid var(--r);
  transition: transform 0.2s, background 0.2s;
  z-index: 1;
}

.tl-item:hover .tl-dot {
  transform: scale(1.45);
  background: var(--wh);
}

.tl-card {
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 14px;
  transition: border-color 0.2s, transform 0.15s;
}

.tl-item:hover .tl-card {
  border-color: var(--green-border);
  transform: translateX(3px);
}

.tl-year {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.tl-head {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  font-weight: 300;
}

.tl-now .tl-dot {
  background: var(--green-light);
  box-shadow: 0 0 0 4px rgba(29, 158, 117, 0.15);
}

.tl-now .tl-card {
  border-color: var(--green-border);
}

/* MİSYON VİZYON */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 0.5rem;
}

@media (max-width: 500px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
}

.mv-misyon {
  background: rgba(29, 158, 117, 0.07);
  border: 0.5px solid rgba(29, 158, 117, 0.2);
}

.mv-vizyon {
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
}

.mv-icon {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

.mv-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 7px;
}

.mv-text {
  font-size: 13.5px;
  color: var(--text-sec);
  line-height: 1.7;
  font-weight: 300;
}
.tf-wrap {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    margin: 0 auto;
    padding: 0 1rem 5rem;
    align-items: stretch;
}
@media (max-width: 980px) { .tf-wrap { grid-template-columns: 1fr; } }
 
/* ── Sol koyu panel ── */
.tf-panel {
    background: var(--r2);
    border-radius: 16px 0 0 16px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.tf-panel::before {
    content: "";
    position: absolute;
    top: -90px; right: -90px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.025);
    border-radius: 50%;
    pointer-events: none;
}
.tf-panel::after {
    content: "";
    position: absolute;
    bottom: -70px; left: -70px;
    width: 220px; height: 220px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
    pointer-events: none;
}
.tf-panel-accent {
    width: 40px; height: 3px;
    background: var(--r);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.tf-panel-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 1.8rem;
}
.tf-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.5rem 0 1.5rem;
}
 
/* ── Sol adım listesi ── */
.tf-info-list { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
.tf-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity .5s ease, transform .5s ease;
}
.tf-info-item:last-child { border-bottom: none; }
.tf-info-item.tf-visible { opacity: 1; transform: translateX(0); }
.tf-info-icon {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--r) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--r) 25%, transparent);
    display: flex; align-items: center; justify-content: center;
    color: var(--r);
    font-size: 14px;
    transition: background .3s, border-color .3s;
}
.tf-info-icon.tf-act {
    background: var(--r);
    border-color: var(--r);
    color: #fff;
}
.tf-info-body { padding-top: 2px; }
.tf-info-label {
    font-size: 12px;
    font-weight: 700;
    color: #6c6c6c;
    margin-bottom: 1px;
    letter-spacing: 0.02em;
    transition: color .3s;
}
.tf-info-label.tf-act { color: var(--wh, #fff); }
.tf-info-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    display: block;
}
 
/* ── Sağ form paneli ── */
.tf-form-panel {
    background: #fff;
    border-radius: 0 16px 16px 0;
    border: 1px solid #e8e8e8;
    border-left: none;
    padding: 3rem 2.75rem;
}
@media (max-width: 980px) {
    .tf-panel      { border-radius: 16px 16px 0 0; }
    .tf-form-panel { border-radius: 0 0 16px 16px; border-left: 1px solid #e8e8e8; border-top: none; padding: 2rem 1.5rem; }
}
.tf-form-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--r);
    margin-bottom: 0.4rem;
}
.tf-form-sub {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.65;
    margin-bottom: 2rem;
}
 
/* ── Hata banner — form panelinin üstüne sabitlendi ── */
.tf-alert {
    display: none;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid transparent;
    align-items: center;
    gap: 10px;
}
.tf-alert.tf-err { display: flex; background: #fff0ee; color: #c0321a; border-color: #f8c4ba; }
.tf-alert.tf-ok  { display: flex; background: #edfaf3; color: #1a7c45; border-color: #b5e7cd; }
.tf-alert i { font-size: 15px; flex-shrink: 0; }
 
/* Input hata highlight */
.tf-input-err { border-color: #e53e3e !important; background: #fff8f8 !important; }
 
/* ── Progress ── */
.tf-progress {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2.25rem;
}
.tf-prog-step {
    flex: 1; height: 3px;
    background: #ebebeb;
    border-radius: 2px;
    overflow: hidden;
}
.tf-prog-step .tf-prog-fill {
    height: 100%; width: 0%;
    background: var(--r);
    border-radius: 2px;
    transition: width .4s ease;
}
.tf-prog-step.tf-done .tf-prog-fill   { width: 100%; }
.tf-prog-step.tf-cur  .tf-prog-fill   { width: 55%; }
.tf-prog-label { font-size: 11px; color: #bbb; white-space: nowrap; font-weight: 600; }
 
/* ── Adım içerik ── */
.tf-step { display: none; }
.tf-step.tf-active { display: block; }
 
.tf-step-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.4rem;
    padding-bottom: 0.8rem;
    border-bottom: 1.5px solid #f2f2f2;
    display: flex; align-items: center; gap: 8px;
}
.tf-step-title i { color: var(--r); }
 
/* ── Alan grubu ── */
.tf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) { .tf-row { grid-template-columns: 1fr; } }
 
.tf-fg { margin-bottom: 1.15rem; }
.tf-fg label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 7px;
}
.tf-fg label .tf-req { color: var(--r); }
 
.tf-fg input[type="text"],
.tf-fg input[type="email"],
.tf-fg input[type="tel"],
.tf-fg input[type="number"],
.tf-fg select,
.tf-fg textarea {
    width: 100%;
    padding: 0.72rem 1rem;
    border: 1.5px solid #e2e2e2;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #1a1a1a;
    background: #fafafa;
    font-family: inherit;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
    appearance: none; -webkit-appearance: none;
}
.tf-fg input:focus, .tf-fg select:focus, .tf-fg textarea:focus {
    outline: none;
    border-color: var(--r);
    background: #fff;
}
.tf-fg select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 2.2rem;
    cursor: pointer;
}
.tf-fg textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
.tf-fg .tf-hint { font-size: 11px; color: #bbb; margin-top: 5px; }
 
/* ── Bölüm ayraç ── */
.tf-sep {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ccc;
    padding-bottom: 9px;
    border-bottom: 1px solid #f2f2f2;
    margin: 6px 0 16px;
}
 
/* ── Pill seçenekler ── */
.tf-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.tf-pills label {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f5f5f5;
    border: 1.5px solid #e2e2e2;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all .15s;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}
.tf-pills label:hover { border-color: var(--r); background: color-mix(in srgb, var(--r) 8%, #fff); }
.tf-pills input[type="radio"],
.tf-pills input[type="checkbox"] {
    width: 14px; height: 14px; min-width: 14px;
    accent-color: var(--r);
    cursor: pointer;
    margin: 0; padding: 0;
    border: none; background: none;
}
.tf-pills label:has(input:checked) {
    border-color: var(--r);
    background: color-mix(in srgb, var(--r) 8%, #fff);
    color: var(--r);
}
 
/* ── Dosya yükleme ── */
.tf-upload {
    border: 2px dashed #ddd;
    border-radius: 10px;
    background: #fafafa;
    padding: 26px 18px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all .2s;
}
.tf-upload:hover { border-color: var(--r); background: color-mix(in srgb, var(--r) 6%, #fff); }
.tf-upload input[type="file"] {
    position: absolute; inset: 0; opacity: 0;
    cursor: pointer; width: 100%; height: 100%;
    border: none; background: none; padding: 0;
}
.tf-upload i     { font-size: 26px; color: #ccc; display: block; margin-bottom: 8px; }
.tf-upload-txt   { font-size: 13px; color: #888; line-height: 1.6; }
.tf-upload-txt strong { color: var(--r); }
.tf-upload-names { font-size: 11.5px; color: var(--r); margin-top: 7px; font-weight: 600; }
 
/* ── Özet kutusu ── */
.tf-summary {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 18px;
}
.tf-summary-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 12px;
}
.tf-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.tf-sum-row      { display: flex; flex-direction: column; gap: 1px; }
.tf-sum-lbl      { font-size: 10px; color: #bbb; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.tf-sum-val      { font-size: 13px; font-weight: 700; color: #1a1a1a; }
 
/* ── Navigasyon butonlar ── */
.tf-btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f2f2f2;
}
.tf-btn-back {
    padding: 0.72rem 1.5rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    display: flex; align-items: center; gap: 7px;
}
.tf-btn-back:hover { border-color: #999; color: #333; }
 
.tf-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.78rem 2rem;
    background: var(--r);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter .2s, transform .15s;
    font-family: inherit;
    text-decoration: none;
}
.tf-btn-next:hover { filter: brightness(0.88); transform: translateY(-1px); color: #fff; }
.tf-btn-next:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
 
.tf-captcha-row { margin: 1.2rem 0 0.25rem; }