.blog-layout {
  display: grid;
  gap: 24px;
}

.blog-card,
.blog-detail {
  border-radius: 16px;
}

.blog-date {
  font-size: 0.9rem;
  color: #5f6f82;
  margin-bottom: 12px;
}

.blog-preview {
  margin-bottom: 14px;
}

.admin-page {
  min-height: 100vh;
  background: #f5f8fc;
}

.admin-shell {
  max-width: 1080px;
}

.admin-login-card {
  max-width: 460px;
  margin: 0 auto;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.admin-list-item {
  border: 1px solid #d9e2ec;
  border-radius: 12px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
}

.admin-list-text {
  display: grid;
  gap: 3px;
  word-break: break-word;
}

.admin-list-actions {
  display: flex;
  gap: 8px;
}

.danger-btn {
  color: #9b1c1c;
  border-color: #f5c2c7;
}

.error-text {
  color: #b42318;
}

.branch-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
:root {
  --brand-dark: #1d2f42;
  --brand-body: #596879;
  --brand-soft: #f4f6f8;
  --brand-line: #dbe2e8;
  --accent: #f3b34d;
  --accent-deep: #df9a2f;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(18, 37, 58, 0.08);
  --shadow-strong: 0 24px 48px rgba(14, 29, 47, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--brand-body);
  background: #fbfcfd;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1300;
  padding: 14px 0;
  background: transparent;
  transition: background-color 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(21, 36, 52, 0.12);
}

.site-header.nav-hidden { transform: translateY(-100%); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.main-nav a,
.dropdown-toggle {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.site-header.scrolled .main-nav a,
.site-header.scrolled .dropdown-toggle,
body:not(.home-page) .main-nav a,
body:not(.home-page) .dropdown-toggle { color: var(--brand-dark); }

.main-nav a:hover,
.dropdown-toggle:hover,
.main-nav a.active-link {
  color: var(--brand-dark) !important;
  background: var(--accent);
}

.has-dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 1500;
  min-width: 215px;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-soft);
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.24s ease;
}

.dropdown a {
  display: block;
  color: var(--brand-dark) !important;
  padding: 10px 12px;
}

.dropdown a:hover { background: var(--accent); }

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hamburger {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
}

.site-header.scrolled .hamburger span,
body:not(.home-page) .hamburger span { background: var(--brand-dark); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--hero-scale, 1));
  opacity: var(--hero-opacity, 1);
  transition: transform 0.2s linear, opacity 0.2s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 84px; }

.hero-kinetic {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-title {
  margin: 0;
  position: relative;
  width: min(760px, 90vw);
  height: clamp(200px, 26vw, 320px);
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(17, 30, 44, 0.45);
  z-index: 3;
}

.hero-word {
  position: absolute;
  display: flex;
  gap: clamp(6px, 1.1vw, 14px);
  font-size: clamp(4.2rem, 11vw, 10rem);
  line-height: 0.95;
  font-weight: 800;
}

.hero-word-ska {
  top: 0;
  left: 0;
  transform: rotate(-7deg);
}

.hero-word-la {
  right: clamp(40px, 12vw, 180px);
  bottom: 0;
  transform: rotate(7deg);
}

.hero-letter {
  display: inline-block;
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform 0.24s ease;
}

.hero-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(220px, 20vw, 300px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: var(--shadow-strong);
  z-index: 1;
  transform: translate(-50%, -50%);
}

.hero-detail-link {
  position: absolute;
  left: 50%;
  top: 72%;
  transform: translateX(-50%);
  z-index: 4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand-dark);
  color: #fff;
}

.btn-outline {
  border-color: #c8d2dd;
  color: var(--brand-dark);
}

.section { padding: 92px 0; }
.section-alt { background: var(--brand-soft); }
.section-premium { background: #fff; }

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #8f5f16;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.12;
  color: var(--brand-dark);
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-text { max-width: 760px; font-size: 1.03rem; }

.metric-grid,
.card-grid,
.partner-grid {
  display: grid;
  gap: 20px;
}

.metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }

.metric-card,
.card,
.visual-card,
.map-detail-panel,
.partner-logo {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.metric-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.split.reverse > :first-child { order: 2; }

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--brand-dark);
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.inner-page { padding-top: 86px; }

.page-hero { background: #fff; padding: 0; }

.page-hero-content {
  min-height: 330px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 38px 0;
}

.page-hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 32, 47, 0.38);
}

.page-hero-content > .container {
  position: relative;
  z-index: 1;
}

.page-hero-box {
  background: #1d2f42;
  color: #fff;
  padding: 26px 40px;
  max-width: 440px;
}

.page-hero-box h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.iletisim-hero-banner {
  background: #f0b24f;
  color: var(--brand-dark);
  text-align: center;
  padding: 54px 0 26px;
}

.iletisim-hero-banner h1 {
  margin: 0;
  font-size: clamp(3.1rem, 10vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-control { display: flex; flex-direction: column; gap: 8px; }
.form-control.full { grid-column: 1 / -1; }

label { color: var(--brand-dark); font-weight: 600; }

input, textarea, select {
  width: 100%;
  border: 1px solid #d2dbe4;
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 4px rgba(243, 179, 77, 0.2);
}

input.invalid, textarea.invalid { border-color: #d32f2f; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; }
.map-wrap iframe { width: 100%; min-height: 380px; border: 0; }

.site-footer {
  background: #1d2f42;
  color: #d7e0e9;
  padding: 58px 0 38px;
}

.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 28px; }
.footer-grid-4 { grid-template-columns: 1.2fr 1fr 1fr 1.1fr; }
.logo-footer { width: 156px; margin-bottom: 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer h4 { margin-top: 0; color: #fff; }

.social-links { display: flex; gap: 10px; margin-top: 10px; }

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.social-icon svg { width: 18px; height: 18px; fill: #f6f8fb; }
.social-icon:hover { background: var(--accent); border-color: var(--accent); }
.social-icon:hover svg { fill: #1d2f42; }

/* İletişim sayfası contact-info içindeki ikonlar */
.contact-info .social-icon {
  border-color: rgba(29, 47, 66, 0.32);
}
.contact-info .social-icon svg { fill: #1d2f42; }
.contact-info .social-icon:hover { background: var(--accent); border-color: var(--accent); }
.contact-info .social-icon:hover svg { fill: #1d2f42; }
.contact-cta-strip {
  background: linear-gradient(135deg, #1d2f42, #253c55);
  color: #f2f6fb;
  padding: 34px 0;
}

.cta-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-cta-strip h3 { margin: 0; font-size: clamp(1.1rem, 2.2vw, 1.6rem); font-weight: 600; }
.cta-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-cta-strip .btn-outline { color: #f2f6fb; border-color: rgba(255,255,255,0.4); }
.contact-cta-strip .btn-outline:hover { background: rgba(255,255,255,0.1); }

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.turkey-map { width: 100%; height: auto; overflow: visible; }
.city {
  fill: #e5e7eb;
  stroke: #ffffff;
  stroke-width: 1;
  transition: all 0.2s ease;
  transform-origin: center;
  will-change: transform;
}

.city.has-branch { fill: #f4b400; animation: pulse 2s infinite; }
.city:hover { transform: scale(1.05); cursor: pointer; }
.city.has-branch:hover { fill: #d99900; filter: drop-shadow(0 0 6px rgba(244,180,0,0.6)); }
.city.active-city { fill: #c68300; }

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

#map-tooltip {
  position: fixed;
  pointer-events: none;
  background: #1d2f42;
  color: #fff;
  padding: 8px 10px;
  font-size: 0.82rem;
  z-index: 3000;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#map-tooltip.visible { opacity: 1; transform: translateY(0); }
.map-detail-panel.is-changing { opacity: 0.3; transform: translateY(6px); }

.branch-layout {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 16px;
  align-items: start;
}

.city-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 380px;
  overflow-y: auto;
  display: grid;
  gap: 6px;
}

.city-list li { padding: 8px 10px; cursor: pointer; }
.city-list li:hover, .city-list li.active { background: #fdf2e0; color: #7b4f0b; }

.floating-field { position: relative; }
.floating-field label {
  position: absolute;
  left: 14px;
  top: 12px;
  padding: 0 4px;
  color: #7d8c9d;
  transition: all 0.2s ease;
  pointer-events: none;
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:focus + label,
.floating-field textarea:not(:placeholder-shown) + label {
  top: -9px;
  font-size: 0.76rem;
  color: #b77b1a;
}

.submit-btn.loading { opacity: 0.8; pointer-events: none; }
.success-box {
  grid-column: 1 / -1;
  background: #e7f7ee;
  color: #0f6a34;
  border: 1px solid #9ad6b2;
  padding: 10px 12px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.success-box.show { opacity: 1; max-height: 80px; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--accent);
  color: #1d2f42;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1500;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 992px) {
  .split,
  .metric-grid,
  .three-col,
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .branch-layout { grid-template-columns: 1fr; }
  .city-list ul { max-height: 180px; }

  .main-nav {
    position: fixed;
    right: 4%;
    top: 74px;
    width: min(320px, 92%);
    background: #fff;
    border: 1px solid var(--brand-line);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.24s ease;
  }

  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 10px; }
  .main-nav a, .dropdown-toggle { color: var(--brand-dark) !important; width: 100%; text-align: left; }
  .dropdown {
    position: static;
    border: 0;
    box-shadow: none;
    max-height: 0;
    opacity: 1;
    pointer-events: auto;
    overflow: hidden;
    transform: none;
    padding: 0 10px;
  }
  .has-dropdown { padding-bottom: 0; margin-bottom: 0; width: 100%; }
  .has-dropdown.open .dropdown { max-height: 230px; padding: 10px; margin-top: 8px; }

  .hamburger { display: inline-flex; }
}

@media (max-width: 700px) {
  .split,
  .metric-grid,
  .three-col,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }

  .section { padding: 66px 0; }
  .section-head-row { align-items: flex-start; flex-direction: column; }
  .hero-word { font-size: clamp(3rem, 18vw, 4.8rem); }
  .hero-word-la { right: clamp(20px, 8vw, 60px); }
  .city:hover { transform: none; }
  .city.has-branch { animation: none; }
}

.hero-word-ska:hover { transform: rotate(-10deg) translateY(-4px); }
.hero-word-la:hover { transform: rotate(10deg) translateY(4px); }

.hero-detail-link {
  position: relative;
  z-index: 3;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  display: inline-block;
  color: #fff;
  box-shadow: 0 8px 18px rgba(16, 30, 46, 0.24);
}

.btn-primary:hover { transform: translateY(-1px); background: #132437; }
.btn-outline { border-color: #c8d2dd; color: var(--brand-dark); }

.eyebrow {
  display: none;
  margin-bottom: 12px;
  color: #8f5f16;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visual-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 280px;
  padding: 0;
}

.map-abstract {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
}

.map-abstract span {
  display: block;
  border-radius: 12px;
  background: linear-gradient(180deg, #fdf4e6, #f3b34d);
}

.map-abstract span:nth-child(1) { height: 55%; }
.map-abstract span:nth-child(2) { height: 78%; }
.map-abstract span:nth-child(3) { height: 60%; }
.map-abstract span:nth-child(4) { height: 85%; }
.map-abstract span:nth-child(5) { height: 68%; }

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.logo-cloud span {
  border: 0;
  border-radius: 0;
  padding: 14px 10px;
  text-align: center;
  color: #4b5b6b;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: #fff;
}

.card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 { margin: 0 0 8px; color: var(--brand-dark); }
.card:hover { transform: none; box-shadow: none; }

.package-grid .card:nth-child(2) {
  margin-top: 22px;
}

.package-grid .card-action {
  opacity: 0;
  transform: translateY(8px);
}

.package-grid .card:hover .card-action {
  opacity: 1;
  transform: translateY(0);
}

.inner-page { padding-top: 0; }
.page-hero {
  min-height: 330px;
  background: #fff;
  padding: 0;
  margin-top: 0;
}

.page-hero h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.page-hero-content {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 38px 0;
}

.page-hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 32, 47, 0.38);
}

.page-hero-content > .container {
  position: relative;
  z-index: 1;
}

.page-hero-box {
  background: #1d2f42;
  color: #fff;
  padding: 26px 40px;
  max-width: 440px;
}

.page-hero-box h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.iletisim-hero-banner {
  background: #f0b24f;
  color: var(--brand-dark);
  text-align: center;
  padding: 54px 0 26px;
}

.iletisim-hero-banner h1 {
  font-size: clamp(3.1rem, 10vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

.page-hero-rule {
  display: block;
  width: min(360px, 60%);
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(243, 179, 77, 0));
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d2dbe4;
  border-radius: 0;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 4px rgba(243, 179, 77, 0.2);
}

input.invalid,
textarea.invalid { border-color: #d32f2f; }

.map-wrap {
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.map-wrap iframe { width: 100%; min-height: 380px; border: 0; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  transition: all 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

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

.isbirligi-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.partners-visual-column {
  background: linear-gradient(145deg, #ffffff, #f7f9fb);
}

.partners-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.isbirligi-content .section-head h2 {
  margin-bottom: 12px;
}

.partner-logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  min-height: auto;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.partner-logo img {
  max-width: 75%;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05) rotate(1deg);
}

.partner-logo:hover {
  box-shadow: none;
}

.map-widget {
  display: grid;
  gap: 14px;
}

.subeler-map-wrap {
  position: relative;
  border: 1px solid var(--brand-line);
}

.subeler-map-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.map-point {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  background: #d8dde3;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.map-point.has-branch {
  background: var(--accent);
}

.map-point:hover {
  transform: translate(-50%, -50%) scale(1.18);
}

.branch-address-list {
  grid-column: 1 / -1;
}

.branch-address-list h3 {
  margin-top: 0;
  color: var(--brand-dark);
}

.branch-address-list ul {
  margin: 0;
  padding-left: 18px;
}

.floating-field label {
  position: absolute;
  left: 14px;
  top: 12px;
  background: transparent;
  padding: 0 4px;
  color: #7d8c9d;
  transition: all 0.2s ease;
  pointer-events: none;
}

.success-box {
  grid-column: 1 / -1;
  background: #e7f7ee;
  color: #0f6a34;
  border: 1px solid #9ad6b2;
  border-radius: 0;
  padding: 10px 12px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.success-box.show {
  opacity: 1;
  max-height: 80px;
}

.parallax-section {
  background: #fff;
}

.line-animate {
  overflow: hidden;
}

.line-animate > span {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.45s ease;
}

.line-animate.visible > span {
  opacity: 1;
  transform: translateY(0);
}

.map-zoom-in {
  animation: mapZoomIn 0.65s ease;
}

@keyframes mapZoomIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 0;
  background: var(--accent);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1500;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 992px) {
  .hero-title { font-size: clamp(3rem, 18vw, 4.8rem); }
  .hero-word-la { margin-left: clamp(30px, 8vw, 90px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .main-nav {
    position: fixed;
    right: 4%;
    top: 74px;
    width: min(320px, 92%);
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--brand-line);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.24s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 10px; }
  .main-nav a, .dropdown-toggle { color: var(--brand-dark) !important; }

  .dropdown {
    position: static;
    border: 1px solid var(--brand-line);
    box-shadow: none;
    max-height: 0;
    opacity: 1;
    pointer-events: auto;
    overflow: hidden;
    transform: none;
    padding: 0 10px;
  }

  .has-dropdown { padding-bottom: 0; margin-bottom: 0; width: 100%; }
  .has-dropdown.open .dropdown { max-height: 230px; padding: 10px; margin-top: 8px; }

  .hamburger { display: inline-flex; }

  .hero-title { font-size: clamp(3.4rem, 14vw, 6rem); width: min(640px, 92vw); }
  .hero-badge { left: 50%; top: 50%; }
  .branch-layout { grid-template-columns: 1fr; }
  .city-list ul { max-height: 180px; }
  .cta-strip-grid { flex-direction: column; align-items: flex-start; }
  .isbirligi-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .split,
  .metric-grid,
  .three-col,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }

  .section { padding: 66px 0; }
  .section-head-row { align-items: flex-start; flex-direction: column; }
  .hero-kinetic { min-height: 520px; }
  .hero-title { font-size: clamp(3rem, 18vw, 4.8rem); height: 180px; }
  .hero-badge { position: absolute; left: 50%; top: 50%; margin-top: 0; width: min(280px, 82vw); }
  .hero-word-la { right: clamp(12px, 10vw, 60px); }
  .city:hover { transform: none; }
  .city.has-branch { animation: none; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
}

/* --- April batch update overrides --- */
.nav-wrap { justify-content: space-between; }
.logo-link { margin-right: auto; }
.main-nav { margin-left: auto; }

.dropdown-toggle::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72rem;
  transform: translateY(-1px);
}

.dropdown {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 2px 0 0;
}

.dropdown a {
  color: #fff !important;
  background: transparent;
  padding: 6px 0;
}

.site-header.scrolled .dropdown a,
body:not(.home-page) .dropdown a {
  color: var(--brand-dark) !important;
}

.dropdown a:hover {
  background: transparent;
  color: var(--accent) !important;
}

.hero-title {
  width: min(840px, 96vw);
  height: clamp(260px, 38vw, 440px);
}

.hero-char {
  position: absolute;
  font-size: clamp(5rem, 12vw, 9.4rem);
  font-weight: 800;
  line-height: 1;
}

.hero-char-s { left: 11%; top: 2%; }
.hero-char-k { right: 16%; top: 4%; }
.hero-char-a { right: 7%; top: 4%; }
.hero-char-l { left: 28%; bottom: 2%; }
.hero-char-a2 { right: 18%; bottom: 8%; }

.hero-badge {
  width: clamp(210px, 18vw, 280px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
}

.hero-badge p {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(1rem, 1.45vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-badge a {
  font-size: 0.82rem;
  color: rgba(29, 47, 66, 0.84);
  text-decoration: none;
}

.hero-detail-link { display: none; }

.turkey-map-wrap {
  position: relative;
  width: min(760px, 100%);
  margin-inline: auto;
}

.turkey-map-image {
  width: 100%;
  height: auto;
}

.map-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #d9dee4;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.map-point.has-branch {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(243, 179, 77, 0.25);
}

.map-point:hover {
  transform: translate(-50%, -50%) scale(1.25);
  box-shadow: 0 0 0 10px rgba(243, 179, 77, 0.2);
}

.branch-detail {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}

.branch-detail .map-wrap { margin-top: 12px; }
.branch-detail .map-wrap iframe { min-height: 300px; }

.enhanced-join-form {
  margin-top: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e7ecf1;
}

.kurum-galeri-grid {
  margin-top: 20px;
  gap: 22px;
}

.kurum-galeri-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dbe2e8;
  background: #fff;
  box-shadow: 0 8px 24px rgba(29, 47, 66, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.galeri-trigger {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  cursor: pointer;
  background: #fff;
  position: relative;
}

.galeri-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 33, 48, 0.08);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.kurum-galeri-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 30px rgba(29, 47, 66, 0.14);
}

.kurum-galeri-item:hover .galeri-trigger::after {
  opacity: 1;
}

.kurum-galeri-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.kurum-galeri-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.92);
}

.kurum-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(17, 30, 43, 0.82);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.kurum-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.kurum-lightbox-content {
  width: min(980px, 100%);
  max-height: 92vh;
}

.kurum-lightbox-content img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  background: #fff;
}

.kurum-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(9, 18, 29, 0.46);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.kurum-lightbox-close:hover {
  background: rgba(9, 18, 29, 0.8);
}

@media (max-width: 992px) {
  .dropdown a { color: var(--brand-dark) !important; }
  .hero-char-s { left: 7%; top: 10%; }
  .hero-char-k { right: 18%; top: 8%; }
  .hero-char-a { right: 4%; top: 8%; }
  .hero-char-l { left: 24%; bottom: 8%; }
  .hero-char-a2 { right: 16%; bottom: 10%; }
}

@media (max-width: 700px) {
  .kurum-galeri-grid {
    gap: 14px;
  }

  .kurum-lightbox {
    padding: 10px;
  }

  .kurum-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .hero-title { height: 280px; }
  .hero-char { font-size: clamp(4rem, 18vw, 6.5rem); }
  .hero-badge { width: 190px; }
}

/* --- Final nav/hero/map usability fixes --- */
.has-dropdown {
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.dropdown {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: 240px;
  padding: 6px 0 0;
}

.dropdown a {
  display: block;
  padding: 6px 0;
  background: transparent;
}

@media (min-width: 993px) {
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

body:not(.home-page) .site-header {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

body:not(.home-page) .site-header::before {
  opacity: 1;
  background: linear-gradient(180deg, rgba(9, 19, 31, 0.58), rgba(9, 19, 31, 0));
}

body:not(.home-page) .main-nav a,
body:not(.home-page) .dropdown-toggle,
body:not(.home-page) .dropdown a {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

body:not(.home-page) .main-nav a:hover,
body:not(.home-page) .dropdown-toggle:hover,
body:not(.home-page) .dropdown a:hover,
body:not(.home-page) .main-nav a.active-link {
  color: #111f2f !important;
  text-shadow: none;
}

.hero-char {
  display: none;
}

.hero-title {
  width: min(720px, 92vw);
  height: clamp(210px, 30vw, 300px);
}

.hero-word {
  position: absolute;
  display: inline-block;
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  font-weight: 800;
  line-height: 1;
  --mx: 0px;
  --my: 0px;
  transition: transform 0.22s ease;
}

.hero-word-ska {
  left: 10%;
  top: 6%;
  transform: translate(var(--mx), var(--my)) rotate(-8deg);
}

.hero-word-la {
  right: 12%;
  bottom: 6%;
  transform: translate(var(--mx), var(--my)) rotate(8deg);
}

.hero-word-ska:hover {
  transform: translate(var(--mx), calc(var(--my) - 3px)) rotate(-10deg);
}

.hero-word-la:hover {
  transform: translate(var(--mx), calc(var(--my) + 3px)) rotate(10deg);
}

.hero-badge {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
}

.contact-cta-strip h3 {
  white-space: nowrap;
}

.map-point {
  width: 20px;
  height: 20px;
}

/* --- Requested final fixes --- */
.site-header .container.nav-wrap {
  width: min(1600px, 98%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  margin-right: auto;
}

.main-nav {
  margin-left: auto;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.dropdown {
  display: block;
}

.dropdown li {
  display: block;
  width: 100%;
}

.dropdown a {
  display: block;
  width: 100%;
}

.has-dropdown .dropdown {
  display: block;
}

.hero-word-ska {
  left: 2%;
  top: -8%;
}

.hero-word-la {
  right: 8%;
  bottom: -8%;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.cta-strip-actions .btn {
  position: static;
  flex: 0 0 auto;
}

.turkey-map-wrap {
  position: relative;
}

.turkey-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-city-shape {
  pointer-events: auto;
  fill: rgba(243, 179, 77, 0.95);
  stroke: #ffffff;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.2s ease, fill 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}

.map-city-shape:hover {
  transform: scale(1.08);
  fill: #f3b34d;
  filter: drop-shadow(0 0 8px rgba(243, 179, 77, 0.48));
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: #c7d2dd;
}

.footer-bottom-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dropdown a {
  padding: 10px 12px;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: var(--accent) !important;
  color: var(--brand-dark) !important;
  text-shadow: none;
}

.home-model-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 0;
  align-items: center;
  max-width: 980px;
}

.home-model-card {
  background: var(--accent);
  padding: 36px 44px 34px;
  min-height: 420px;
}

.home-model-card h3 {
  margin: 0 0 18px;
  color: #2f5475;
  font-size: clamp(3.8rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.02em;
}

.home-model-card h3 span {
  display: block;
}

.home-model-card p {
  max-width: 460px;
  color: #1d2f42;
  margin: 0;
}

.home-model-card .text-link {
  margin-top: 14px;
  color: #1d2f42;
}

.home-model-card .text-link::after {
  background: var(--brand-dark);
}

.home-model-image-wrap {
  position: relative;
  margin-left: -60px;
  box-shadow: 0 16px 32px rgba(19, 34, 50, 0.18);
}

.home-model-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.site-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .logo-link {
  margin-right: auto !important;
  flex: 0 0 auto;
  padding-top: 0;
}

.site-header .main-nav {
  margin-left: auto !important;
}

.site-header .main-nav > ul {
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .home-model-showcase {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .home-model-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .home-model-image-wrap {
    margin-left: 0;
    margin-top: 14px;
  }
}

.hero-badge {
  transition: transform 0.25s ease;
  z-index: 8;
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
}

.site-header .main-nav a,
.site-header .main-nav .dropdown-toggle {
  background: transparent !important;
  position: relative;
}

.site-header .main-nav a::after,
.site-header .main-nav .dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-header .main-nav a:hover,
.site-header .main-nav .dropdown-toggle:hover,
.site-header .main-nav a.active-link {
  background: transparent !important;
  color: var(--accent) !important;
}

.site-header .main-nav a:hover::after,
.site-header .main-nav a.active-link::after,
.site-header .main-nav .dropdown-toggle:hover::before,
.site-header .main-nav .dropdown-toggle:focus-visible::before {
  transform: scaleX(1);
}

.hero-badge {
  overflow: hidden;
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--accent);
  filter: blur(2.5px);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
  pointer-events: none;
}

.hero-badge p {
  position: relative;
  z-index: 1;
  transition: filter 0.25s ease;
}

.hero-badge .hero-badge-link {
  position: relative;
  z-index: 2;
  font-size: 0.82rem;
  color: #1d2f42;
  text-decoration: none;
}

.hero-badge .hero-badge-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--brand-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.hero-badge:hover::before {
  opacity: 1;
}

.hero-badge:hover p {
  filter: blur(2px);
}

.hero-badge .hero-badge-link:hover::after,
.hero-badge .hero-badge-link:focus-visible::after {
  transform: scaleX(1);
}

/* --- Corporate gallery, form and nav refinements --- */
.section-alt .section-head h2 {
  letter-spacing: -0.015em;
}

.kurum-galeri-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kurum-galeri-item {
  border-radius: 12px;
  border: 1px solid #e5ebf1;
  background: #ffffff;
}

.galeri-trigger {
  border-radius: 12px;
  overflow: hidden;
}

.galeri-trigger::after {
  background: linear-gradient(180deg, rgba(16, 30, 44, 0.02), rgba(16, 30, 44, 0.24));
}

.kurum-galeri-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(22, 38, 55, 0.16);
}

.kurum-galeri-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.88) saturate(1.04);
}

.kurum-galeri-item .galeri-trigger:focus-visible {
  outline: 3px solid rgba(243, 179, 77, 0.55);
  outline-offset: 2px;
}

.enhanced-join-form,
.contact-form {
  margin-top: 24px;
  padding: 30px;
  border: 1px solid #e3e9ef;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 14px 30px rgba(21, 37, 54, 0.08);
}

.enhanced-join-form .form-control,
.contact-form .form-control {
  gap: 9px;
}

.enhanced-join-form label,
.contact-form label {
  font-size: 0.92rem;
  color: #2d4157;
  font-weight: 700;
}

.enhanced-join-form input,
.enhanced-join-form textarea,
.enhanced-join-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #cfdae6;
  background: #ffffff;
}

.enhanced-join-form textarea,
.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.enhanced-join-form .submit-btn,
.contact-form .submit-btn {
  border-radius: 10px;
  padding-inline: 26px;
  min-height: 48px;
}

.enhanced-join-form .submit-btn:hover,
.contact-form .submit-btn:hover {
  transform: translateY(-1px);
}

@media (min-width: 993px) {
  .has-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .has-dropdown .dropdown {
    top: 100%;
    padding-top: 10px;
  }

  .has-dropdown .dropdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    transform: translateY(-100%);
  }
}

@media (max-width: 992px) {
  .kurum-galeri-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .enhanced-join-form,
  .contact-form {
    padding: 20px;
    border-radius: 10px;
  }
}

@media (max-width: 700px) {
  .kurum-galeri-grid {
    grid-template-columns: 1fr;
  }
}

/* ── LOGO & NAV FIX ── */

.site-header .nav-wrap,
.nav-wrap {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.site-header .logo-link,
.logo-link {
  flex: 0 0 auto !important;
  margin-right: 0 !important;
}

.site-header .main-nav,
.main-nav {
  flex: 0 0 auto !important;
  margin-left: auto !important;
}

.logo-main {
  width: 200px !important;
  max-width: 42vw !important;
}

.logo-footer {
  width: 420px !important;
  max-width: 65% !important;
}

@media (max-width: 992px) {
  .logo-main  { width: 180px !important; max-width: 55vw !important; }
  .logo-footer { width: 220px !important; }
}

@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}