/* Merc Global — Ana sayfa stilleri */
:root {
  --color-navy: #0a1628;
  --color-navy-light: #132337;
  --color-accent: #ed1c24;
  --color-accent-hover: #c41219;
  --color-accent-soft: rgba(237, 28, 36, 0.1);
  --color-accent-soft-mid: rgba(237, 28, 36, 0.09);
  --color-accent-soft-low: rgba(237, 28, 36, 0.08);
  --color-gold: #c9a227;
  --color-text: #1e293b;
  --color-muted: #64748b;
  --color-white: #ffffff;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --header-h: 76px;
  --topbar-h: 40px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --radius: 12px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: #f8fafc;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  min-height: var(--topbar-h);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 8px 0;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.topbar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.topbar-contacts a:hover {
  color: var(--color-accent);
}

.topbar-icon {
  flex-shrink: 0;
  width: 1em;
  font-size: 15px;
  line-height: 1;
  opacity: 0.85;
}

.topbar-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.88);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition), color var(--transition);
}

.topbar-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.topbar-social-icon {
  font-size: 15px;
  line-height: 1;
}

.topbar-text--short {
  display: none;
}

@media (max-width: 767px) {
  .topbar {
    font-size: 0.8125rem;
    min-height: 0;
  }

  .topbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
  }

  .topbar-contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    flex-wrap: wrap;
  }

  /* Mobilde kompakt "quick action" etiketleri */
  .topbar-contacts > a,
  .topbar-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: auto;
    margin: 0;
    padding: 7px 10px;
    line-height: 1.2;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-sizing: border-box;
  }

  .topbar-contacts > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    -webkit-tap-highlight-color: transparent;
  }

  .topbar-contacts > a:active {
    background: rgba(255, 255, 255, 0.1);
  }

  .topbar-contacts > a .topbar-icon,
  .topbar-loc .topbar-icon {
    font-size: 13px;
    margin-top: 0;
    opacity: 0.95;
  }

  .topbar-text--full {
    display: none;
  }

  .topbar-text--short {
    display: block;
    min-width: 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.94);
  }

  .topbar-loc {
    opacity: 1;
  }

  .topbar-social {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    padding-top: 0;
    margin: 0;
    border-top: none;
  }

  .topbar-social a {
    width: 32px;
    height: 32px;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  min-height: var(--header-h);
}

.header-cta {
  display: none;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 48px;
  width: auto;
  max-height: 52px;
  object-fit: contain;
}

.main-nav {
  display: none;
  flex: 1;
  min-width: 0;
}

@media (min-width: 1180px) {
  .topbar > .container,
  .site-header > .container {
    max-width: 1380px;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Logo solda (sabit) | menü logo–CTA arası ortada | Bilgi Al + logo menüye yakın, en sağa yapışmaz */
  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: clamp(10px, 1.5vw, 22px);
    min-height: var(--header-h);
  }

  .logo-link {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .main-nav {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 0;
    min-width: 0;
  }

  .nav-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    min-height: var(--header-h);
  }

  .nav-list > li {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
  }

  .nav-list > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 9px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: var(--color-text);
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
  }

  .nav-list > li > a:hover,
  .nav-list > li > a.is-active {
    background: var(--color-accent-soft);
    color: var(--color-accent);
  }

  .header-cta {
    flex: 0 0 auto;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: clamp(12px, 1.8vw, 28px);
  }

  .header-cta a {
    align-self: center;
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 9px 14px !important;
    height: auto !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8125rem;
    white-space: nowrap;
    transition: background var(--transition);
  }

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

  .nav-cta-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .nav-cta-logo {
    display: block;
    height: 55px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.08));
  }

  /* Kurumsal mega menü */
  .nav-item--mega {
    position: relative;
  }

  .nav-link-mega {
    display: inline-flex !important;
    align-items: center;
    align-self: stretch;
    gap: 4px;
    box-sizing: border-box;
  }

  .nav-link-mega__chev {
    flex-shrink: 0;
    font-size: 0.65rem;
    line-height: 1;
    opacity: 0.55;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-item--mega:hover .nav-link-mega__chev,
  .nav-item--mega:focus-within .nav-link-mega__chev {
    transform: rotate(180deg);
    opacity: 0.95;
  }

  .nav-mega {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    padding-top: 0;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
    z-index: 1100;
    pointer-events: none;
  }

  /* İmleç panel ile başlık arası: görünmez köprü (kutu görsel olarak header altında başlar) */
  .nav-mega::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
  }

  .nav-item--mega:hover .nav-mega,
  .nav-item--mega:focus-within .nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mega__box {
    min-width: 232px;
    padding: 6px;
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(10, 22, 40, 0.12);
  }

  .nav-mega__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-text);
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
  }

  .nav-mega__link:hover {
    background: var(--color-accent-soft-mid);
    color: var(--color-accent);
  }

  .nav-mega__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.35;
    flex-shrink: 0;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav-mega__link:hover .nav-mega__dot {
    opacity: 1;
    transform: scale(1.15);
  }
}

@media (min-width: 1320px) {
  .topbar > .container,
  .site-header > .container {
    max-width: 1440px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-list > li > a {
    padding: 10px 14px;
    font-size: 0.875rem;
  }

  .header-cta a {
    padding: 10px 18px !important;
    font-size: 0.875rem;
  }

  .header-cta .nav-cta-logo {
    height: 62px;
    max-width: 274px;
  }
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: var(--color-navy);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition);
}

@media (max-width: 1179px) {
  .menu-toggle {
    margin-left: auto;
  }
}

.menu-toggle:hover {
  background: var(--color-navy-light);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), top var(--transition);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.site-header.is-open .menu-toggle span {
  background: transparent;
}

.site-header.is-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (min-width: 1180px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid #e2e8f0;
  padding: 10px 0 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.site-header.is-open .mobile-nav {
  display: block;
}

@media (min-width: 1180px) {
  .site-header.is-open .mobile-nav {
    display: none;
  }
}

.mobile-nav .nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.08);
}

.mobile-nav .nav-list a {
  display: block;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.mobile-nav .nav-list a:hover,
.mobile-nav .nav-list a.is-active {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  transform: translateX(2px);
}

.mobile-nav-group {
  border-radius: 10px;
  padding: 2px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.mobile-nav-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 12px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-group__toggle:hover {
  background: var(--color-accent-soft-low);
  color: var(--color-accent);
}

.mobile-nav-group__chev {
  flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 1;
  opacity: 0.55;
  transition: transform var(--transition);
}

.mobile-nav-group.is-open .mobile-nav-group__chev {
  transform: rotate(180deg);
  opacity: 0.9;
}

.mobile-nav-group__sub {
  list-style: none;
  margin: 0;
  padding: 6px 4px 4px;
}

.mobile-nav-group__sub li {
  margin: 0;
}

.mobile-nav-group__sub a {
  display: block;
  padding: 9px 12px 9px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-muted);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-group__sub a:hover {
  background: var(--color-accent-soft-low);
  color: var(--color-accent);
}

.mobile-nav .nav-cta {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
  width: 100%;
  align-self: stretch;
}

.mobile-nav .nav-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  gap: 14px;
  padding: 6px 8px 10px;
  box-sizing: border-box;
}

.mobile-nav .nav-cta-logo {
  display: block;
  height: auto;
  max-height: 174px;
  width: auto;
  max-width: min(840px, 98vw);
  margin: 0 auto;
  object-fit: contain;
}

.mobile-nav .nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  min-height: 48px;
  padding: 12px 22px;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: var(--color-white);
  text-align: center;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(237, 28, 36, 0.25);
}

.mobile-nav .nav-cta a:hover,
.mobile-nav .nav-cta a.is-active {
  transform: none;
}

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative;
  min-height: min(72vh, 640px);
  background: var(--color-navy);
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.45) 55%, rgba(10, 22, 40, 0.25) 100%);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  padding: 48px 0 80px;
}

.hero-text {
  max-width: 640px;
  color: var(--color-white);
  position: relative;
  min-height: 280px;
}

@media (max-width: 640px) {
  .hero-text {
    min-height: 0;
  }
}

.hero-copy {
  display: none;
  animation: heroFadeIn 0.5s ease;
}

.hero-copy.is-active {
  display: block;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.hero-text h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero-text p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

.hero-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-indexes {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-index {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(10, 22, 40, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.hero-index:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 22, 40, 0.65);
  color: var(--color-white);
}

.hero-index.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 28, 36, 0.35);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-arrow--prev {
  left: 16px;
}

.hero-arrow--next {
  right: 16px;
}

@media (max-width: 767px) {
  .hero-arrow {
    display: none;
  }

  .hero-controls {
    left: 12px;
    right: 12px;
    transform: none;
  }

  .hero-indexes {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-indexes::-webkit-scrollbar {
    display: none;
  }

  .hero-index {
    flex: 0 0 auto;
  }
}

/* ---------- Inner page hero ---------- */
.page-hero {
  padding: 56px 0 50px;
  background: linear-gradient(115deg, var(--color-navy) 0%, #132337 55%, #1a2f47 100%);
  color: var(--color-white);
}

.page-hero__kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 10px;
}

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 760px;
}

.page-breadcrumb-wrap {
  background: #eef2f7;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid #dde5ef;
}

.breadcrumb__home,
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #334155;
}

.breadcrumb__home {
  transition: color var(--transition);
}

.breadcrumb__home:hover {
  color: var(--color-navy);
}

.breadcrumb__home i {
  font-size: 0.72rem;
  color: var(--color-accent);
}

.breadcrumb__sep {
  font-size: 0.64rem;
  line-height: 1;
  color: #94a3b8;
}

.breadcrumb__item--current {
  color: var(--color-navy);
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 12px;
    padding: 6px 10px;
    gap: 6px;
  }

  .breadcrumb__home,
  .breadcrumb__item {
    font-size: 0.72rem;
  }
}

.contact-grid .service-card__text a {
  color: var(--color-text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(237, 28, 36, 0.45);
  text-underline-offset: 3px;
}

.contact-grid .service-card__text a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.contact-map {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.12);
  background: var(--color-white);
}

.contact-map iframe {
  display: block;
}

.hr-form-wrap {
  margin-top: 18px;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.08);
  padding: 20px;
}

.hr-form {
  display: grid;
  gap: 14px;
}

.hr-form__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hr-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hr-form__field {
  display: grid;
  gap: 6px;
}

.hr-form__field span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-navy);
}

.hr-form__field input,
.hr-form__field textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.93rem;
  color: var(--color-text);
  background: #fff;
}

.hr-form__field input:focus,
.hr-form__field textarea:focus {
  outline: none;
  border-color: rgba(237, 28, 36, 0.5);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

.hr-form__actions {
  margin-top: 4px;
}

.jobs-page {
  padding-top: 42px;
}

.jobs-page .section-head--left {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.jobs-page .section-title--left {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.jobs-demand-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}

@media (min-width: 900px) {
  .jobs-demand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.jobs-demand {
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(10, 22, 40, 0.08);
}

.jobs-demand__tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.jobs-demand__title {
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--color-navy);
}

.jobs-list-wrap {
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.jobs-list-wrap__title {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--color-navy);
}

.jobs-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 1024px) {
  .jobs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.jobs-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.jobs-list__no {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: 999px;
  padding: 4px 8px;
  min-width: 48px;
  text-align: center;
}

.jobs-list__name {
  font-size: 0.86rem;
  color: var(--color-text);
  line-height: 1.4;
}

.jobs-list__meta {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .jobs-list__item {
    grid-template-columns: auto 1fr;
  }

  .jobs-list__meta {
    grid-column: 2;
  }
}

/* ---------- Faaliyetler & Hizmetler ---------- */
.section--services {
  scroll-margin-top: calc(var(--header-h) + 12px);
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 45%, #ffffff 100%);
  position: relative;
}

.section--services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent-soft), transparent);
  opacity: 0.9;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head--left {
  max-width: 100%;
  text-align: left;
  margin: 0 0 30px;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.125rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.service-card {
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(237, 28, 36, 0.22);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.1);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  margin-bottom: 18px;
}

.service-card__icon .fa {
  font-size: 1.125rem;
  line-height: 1;
}

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-muted);
}

@media (max-width: 767px) {
  .section--services {
    padding: 48px 0 52px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .service-card {
    padding: 22px 20px;
  }
}

/* ---------- Hakkımızda ---------- */
.section--about {
  scroll-margin-top: calc(var(--header-h) + 12px);
  padding: 72px 0 80px;
  background: var(--color-white);
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.section--about::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: radial-gradient(circle at center, var(--color-accent-soft) 0%, transparent 68%);
  pointer-events: none;
  opacity: 0.55;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: minmax(280px, 400px) 1fr;
    gap: 56px;
  }
}

.about-logo-card {
  margin: 0;
  position: relative;
  justify-self: center;
}

@media (min-width: 900px) {
  .about-logo-card {
    justify-self: start;
  }
}

.about-logo-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  max-width: 420px;
  background: radial-gradient(ellipse at center, rgba(237, 28, 36, 0.08) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.about-logo-card__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(10, 22, 40, 0.04),
    0 20px 48px rgba(10, 22, 40, 0.08);
}

.about-logo-card__frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.35), rgba(10, 22, 40, 0.12), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-logo-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content {
  min-width: 0;
}

.section-title--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.about-text:last-of-type {
  margin-bottom: 1.25rem;
}

.about-cta {
  margin-top: 0.25rem;
  display: flex;
  justify-content: flex-start;
}

.about-lead {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.about-quote {
  margin: 1.25rem 0 0;
  padding: 16px 20px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-navy);
}

.about-countries-section .section-head--left {
  max-width: 100%;
  margin-bottom: 24px;
}

.about-country-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.about-country-tags__item {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.06);
}

@media (max-width: 899px) {
  .about-countries-head .section-title--left,
  .about-countries-head .section-kicker {
    text-align: center;
  }

  .about-country-tags {
    justify-content: center;
  }
}

.about-highlights {
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #e2e8f0;
}

.about-highlights li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
}

.about-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-accent);
  opacity: 0.95;
}

@media (max-width: 899px) {
  .section--about {
    padding: 52px 0 56px;
  }

  .section-title--left {
    text-align: center;
  }

  .about-content .section-kicker {
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-text {
    text-align: left;
  }

  .about-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .about-highlights {
    align-items: flex-start;
    text-align: left;
  }

  .about-highlights li {
    align-self: stretch;
  }
}

/* ---------- Grup Şirketleri ---------- */
.group-page {
  padding-top: 42px;
}

.section--group .section-head--left {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--group .section-title--left {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section--group {
  scroll-margin-top: calc(var(--header-h) + 12px);
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.section--group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent-soft), transparent);
  opacity: 0.85;
}

.group-intro {
  margin: 10px auto 0;
  max-width: 920px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(10, 22, 40, 0.07);
}

.group-intro--full {
  max-width: 100%;
}

.group-intro__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #334155;
  font-weight: 500;
  margin: 0 0 0.9rem;
  text-wrap: pretty;
}

.group-intro__text:last-child {
  margin-bottom: 0;
}

.lead-english p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--color-muted);
  font-weight: 500;
}

.group-services {
  margin-top: 28px;
}

.service-box-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (min-width: 1024px) {
  .service-box-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-box-grid--sectors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-box {
  min-height: 240px;
  padding: 22px 22px 20px;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 26px rgba(10, 22, 40, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-box:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 28, 36, 0.25);
  box-shadow: 0 14px 28px rgba(10, 22, 40, 0.12);
}

.service-box__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.12), rgba(237, 28, 36, 0.04));
  color: var(--color-accent);
  font-size: 1.05rem;
}

.service-box__title {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--color-navy);
}

.service-box__text {
  margin: 0 0 4px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #475569;
}

.service-box__btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(237, 28, 36, 0.22);
  background: rgba(237, 28, 36, 0.08);
  color: #b5121a;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}

.service-box__btn i {
  font-size: 0.82rem;
  transition: transform 160ms ease;
}

.service-box__btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.service-box__btn:hover i {
  transform: translateX(3px);
}

.ref-block {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 6px 18px rgba(10, 22, 40, 0.06);
}

.ref-block__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.ref-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 960px) {
  .ref-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .service-box {
    min-height: 260px;
  }
}

.ref-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ref-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--color-accent);
}

.ref-ordered {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.ref-ordered li {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.ref-ordered p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

.ref-ordered--compact {
  gap: 10px;
}

.ref-ordered a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(237, 28, 36, 0.4);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.services-core {
  margin-top: 30px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.08), rgba(10, 22, 40, 0.05));
}

.services-core__kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.services-core__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-navy);
}

/* ---------- Footer ---------- */
#kurumsal {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#grup-sirketler {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#hakkimizda {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#iletisim-bilgileri {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0;
}

.permit-band {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.permit-band__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.permit-band__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.permit-band__logo {
  max-height: 68px;
  width: auto;
  object-fit: contain;
}

.permit-band__text {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 700;
  color: #1e293b;
}

.permit-band__subline {
  display: block;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .permit-band__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    text-align: center;
  }

  .permit-band__text {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 0.76rem;
  }

  .permit-band__logo-wrap:nth-of-type(1) {
    grid-column: 1;
    grid-row: 2;
  }

  .permit-band__logo-wrap:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .permit-band__logo {
    max-height: 56px;
  }
}

.footer-main {
  padding: 56px 0 48px;
  border-top: 3px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 36px 32px;
    align-items: start;
  }
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  background: var(--color-white);
  padding: 12px 18px;
  border-radius: 12px;
  line-height: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}

.footer-logo:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.footer-logo img {
  width: auto;
  max-width: 200px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.footer-social-icon {
  font-size: 17px;
  line-height: 1;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.footer-address p {
  margin: 0 0 12px;
}

.footer-address p:last-child {
  margin-bottom: 0;
}

.footer-address a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(237, 28, 36, 0.5);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.footer-address a:hover {
  color: var(--color-white);
  text-decoration-color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 22px;
  background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
  }
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-counter {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
}

.footer-counter__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(237, 28, 36, 0.18) 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.footer-counter__item strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-right: 2px;
}

.footer-counter__dot {
  color: rgba(255, 255, 255, 0.26);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(237, 28, 36, 0.13) 100%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.footer-credit__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.footer-credit__brand i {
  font-size: 0.8rem;
  color: #ffd56a;
}

.footer-credit:hover {
  transform: translateY(-1px);
  border-color: rgba(237, 28, 36, 0.55);
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.24) 0%, rgba(255, 255, 255, 0.09) 100%);
  box-shadow: 0 12px 28px rgba(237, 28, 36, 0.22);
}

@media (max-width: 767px) {
  .footer-counter {
    gap: 8px;
    font-size: 0.78rem;
    padding-top: 12px;
  }

  .footer-counter__item {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 9px 12px;
  }

  .footer-counter__dot {
    display: none;
  }

  .footer-credit {
    gap: 8px;
    padding: 7px 11px;
  }

  .footer-credit__label {
    font-size: 0.64rem;
  }

  .footer-credit__brand {
    font-size: 0.8rem;
  }
}

/* ---------- Sabit iletişim (sağ alt) ---------- */
.contact-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  pointer-events: none;
}

.contact-float__btn {
  pointer-events: auto;
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow:
    0 4px 7px rgba(10, 22, 40, 0.12),
    0 14px 28px rgba(10, 22, 40, 0.2);
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.28s ease;
}

.contact-float__btn--call {
  background: linear-gradient(145deg, #1e3a5f 0%, var(--color-navy) 50%, #060d18 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-float__btn--wa {
  background: linear-gradient(145deg, #2fe07a 0%, #25d366 40%, #128c7e 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-float__btn:hover,
.contact-float__btn:focus-visible {
  transform: scale(1.08) translateY(-3px);
  box-shadow:
    0 8px 16px rgba(10, 22, 40, 0.15),
    0 22px 40px rgba(10, 22, 40, 0.22);
  outline: none;
}

.contact-float__btn--wa:hover,
.contact-float__btn--wa:focus-visible {
  box-shadow:
    0 8px 20px rgba(18, 140, 126, 0.35),
    0 20px 44px rgba(37, 211, 102, 0.35);
}

.contact-float__btn:focus-visible {
  box-shadow:
    0 0 0 3px var(--color-white),
    0 0 0 5px var(--color-accent);
}

.contact-float__ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.contact-float__btn:hover .contact-float__ring,
.contact-float__btn:focus-visible .contact-float__ring {
  opacity: 1;
  transform: scale(1);
}

.contact-float__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.contact-float__icon .fa-solid {
  font-size: 1.25rem;
  line-height: 1;
}

.contact-float__icon .fa-brands {
  font-size: 1.625rem;
  line-height: 1;
}

.contact-float__tooltip {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 10px 16px;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  border-radius: 12px;
  white-space: normal;
  max-width: min(240px, 78vw);
  text-align: right;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.1, 0.64, 1);
  z-index: 2;
}

.contact-float__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left-color: var(--color-navy);
}

.contact-float__btn:hover .contact-float__tooltip,
.contact-float__btn:focus-visible .contact-float__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 520px) {
  .contact-float {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }

  .contact-float__btn {
    width: 54px;
    height: 54px;
  }

  .contact-float__tooltip {
    right: auto;
    left: 50%;
    top: auto;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(4px);
    max-width: 72vw;
    white-space: normal;
    text-align: center;
  }

  .contact-float__tooltip::after {
    left: 50%;
    top: 100%;
    margin-top: 0;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top-color: var(--color-navy);
    border-left-color: transparent;
  }

  .contact-float__btn:hover .contact-float__tooltip,
  .contact-float__btn:focus-visible .contact-float__tooltip {
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-float__btn,
  .contact-float__ring,
  .contact-float__tooltip {
    transition: none;
  }

  .contact-float__btn:hover,
  .contact-float__btn:focus-visible {
    transform: none;
  }
}

/* —— Belgelerimiz galeri —— */
body.belge-lightbox-open {
  overflow: hidden;
}

.belge-page.section--group {
  padding: 28px 0 36px;
}

.belge-page .section-head--left {
  margin-bottom: 0.85rem;
}

.belge-page .section-title--left {
  margin-bottom: 0.35rem;
}

.belge-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2.5vw, 1.35rem);
  margin-top: 0.65rem;
}

@media (min-width: 768px) {
  .belge-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.belge-card {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.belge-card__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--color-surface, #f4f6f9);
  border-radius: 12px;
  cursor: zoom-in;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.belge-card__trigger:hover,
.belge-card__trigger:focus-visible {
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.14);
  transform: translateY(-2px);
  outline: 2px solid var(--color-accent, #c9a227);
  outline-offset: 2px;
}

.belge-card__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  max-height: min(38vw, 280px);
  padding: 8px;
  background: linear-gradient(145deg, #eef1f6 0%, #fff 50%);
}

.belge-card__frame img {
  max-width: 100%;
  max-height: min(36vw, 268px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.belge-card__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 30, 52, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.92;
}

.belge-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 14px 20px;
  box-sizing: border-box;
  background: rgba(8, 14, 24, 0.88);
  color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.belge-lightbox.is-open {
  display: flex;
}

.belge-lightbox__close {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10051;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.belge-lightbox__close:hover,
.belge-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.belge-lightbox__inner {
  flex: 0 1 auto;
  max-width: min(96vw, 1200px);
  max-height: calc(100vh - 72px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.belge-lightbox__inner img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 72px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .belge-card__trigger {
    transition: none;
  }

  .belge-card__trigger:hover,
  .belge-card__trigger:focus-visible {
    transform: none;
  }
}
