@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a1a40;
  --navy-soft: #132756;
  --gold: #d4af37;
  --light: #f7f8fc;
  --text: #1c2b4a;
  --gradient: linear-gradient(135deg, rgba(112, 117, 129, 0.85), rgba(30, 54, 107, 0.85));
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

.page-wrapper {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(247, 248, 252, 0.2), #fff);
}

header,
.main-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: url(/assets/img/PHOTO-2025-12-11-01-09-37.jpg) center/cover;
}

/* Sayfa bazlı hero görselleri */
body[data-page='home'] header {
  background: url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?auto=format&fit=crop&w=1500&q=80') center/cover;
}

body[data-page='about'] .main-hero {
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1500&q=80') center/cover;
}

body[data-page='services'] .main-hero {
  background: url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?auto=format&fit=crop&w=1500&q=80') center/cover;
}

body[data-page='languages'] .main-hero {
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1500&q=80') center/cover;
}

body[data-page='careers'] .main-hero {
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1500&q=80') center/cover;
}

header::before,
.main-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  z-index: 0;
}

.page-hero {
  min-height: 60vh;
}

body[data-page='languages'] .language-banner {
  position: relative;
  margin: 0 4vw 1.5rem;
  height: clamp(220px, 30vw, 320px);
  border-radius: 1.5rem;
  background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80') center/cover;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 24px 50px rgba(10, 26, 64, 0.2);
}

body[data-page='languages'] .language-banner .banner-overlay {
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(10, 26, 64, 0) 0%, rgba(10, 26, 64, 0.75) 100%);
  color: #fff;
}

body[data-page='languages'] .language-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.4rem;
  font-weight: 700;
}

body[data-page='languages'] .language-banner p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* Diller sayfası hero metnini navbar altında başlat */
body[data-page='languages'] .page-hero {
  padding-top: calc(2rem + 7rem);
}

/* Diller hero metni: beyaz ve ortalanmış */
body[data-page='languages'] .page-hero .hero-content {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

body[data-page='languages'] .page-hero .hero-content h1,
body[data-page='languages'] .page-hero .hero-content .section-description {
  color: #fff;
}

@media (max-width: 768px) {
  body[data-page='languages'] .page-hero {
    padding-top: calc(2rem + 5.5rem);
  }
}

body[data-page='languages'] .language-hero {
  position: relative;
  background: url(/assets/img/PHOTO-2025-12-11-01-09-37.jpg) center/cover;
  padding: clamp(4.5rem, 8vw, 6rem) 4vw clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

body[data-page='languages'] .language-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  z-index: 0;
}

body[data-page='languages'] .language-hero::after {
  display: none;
}

body[data-page='languages'] .language-hero .language-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

body[data-page='languages'] .language-hero .hero-content {
  color: #fff;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  width: 100%;
  padding: 0 0.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body[data-page='languages'] .language-hero h1 {
  font-size: clamp(1.85rem, 3.3vw, 2.4rem);
  line-height: 1.3;
  max-width: 46rem;
}

body[data-page='languages'] .language-hero .section-description {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.6;
}

body[data-page='languages'] .language-hero-visual {
  min-height: 320px;
  border-radius: 1.4rem;
  background: url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?auto=format&fit=crop&w=900&q=80') center/cover;
  position: relative;
  box-shadow: 0 18px 40px rgba(12, 22, 58, 0.35);
  max-width: 520px;
  width: 100%;
  justify-self: end;
}

/* Kariyer sayfası hero arka planını sadeleştir */
body[data-page='languages'] .language-layout .section-description {
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 600;
}

body[data-page='languages'] .language-hero .badge {
  color: var(--navy);
  border-color: rgba(10, 26, 64, 0.2);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.hero-pills span {
  border-radius: 999px;
  border: 1px solid rgba(10, 26, 64, 0.1);
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 25px rgba(12, 22, 58, 0.07);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.hero-stats article {
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(10, 26, 64, 0.08);
  box-shadow: 0 14px 30px rgba(12, 22, 58, 0.08);
}

.stat-value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
}

.stat-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(10, 26, 64, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 900px;
  animation: floatIn 1s ease;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-subheading {
  padding: 2rem 4vw 0;
  text-align: center;
}

.hero-subheading h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.home-hero {
  background-image: url(/assets/img/PHOTO-2025-12-11-01-09-37.jpg);
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(1.5rem, 6vw, 6rem);
  padding-right: clamp(1.5rem, 6vw, 6rem);
}

.home-hero .hero-content {
  text-align: left;
  max-width: 620px;
  margin-left: 0;
  margin-right: auto;
  align-self: center;
}

.home-hero .hero-actions {
  justify-content: flex-start;
}

.home-hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.home-hero .hero-content p {
  font-size: 1.05rem;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn.ghost {
  border: 1px solid rgba(10, 26, 64, 0.25);
  background: rgba(255, 255, 255, 0.15);
  color: var(--navy);
}

.navbar.scrolled .btn.secondary {
  color: var(--navy);
  border-color: rgba(10, 26, 64, 0.3);
}

.navbar.scrolled .btn.ghost {
  background: rgba(10, 26, 64, 0.05);
}

.navbar.scrolled .language-toggle {
  background: transparent;
  border-color: rgba(10, 26, 64, 0.3);
  color: var(--navy);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(16, 23, 58, 0.2);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 4vw;
  z-index: 10;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Mobil menü açıkken navbarı sabit ve opak tut */
body.menu-open .navbar {
  opacity: 1;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 12;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body[data-page='languages'] .navbar {
  background: transparent;
  box-shadow: none;
}

/* Diller sayfası: kaydırınca navbar tamamen beyaz olsun */
body[data-page='languages'] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
  color: var(--navy);
}

.navbar.scrolled .logo img {
  filter: drop-shadow(0 6px 14px rgba(7, 12, 32, 0.25));
}

.navbar.scrolled .menu-toggle span,
.navbar.scrolled .menu-toggle span::before,
.navbar.scrolled .menu-toggle span::after {
  background: var(--navy);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 12vw, 160px);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(7, 12, 32, 0.35));
  transition: transform 0.2s ease;
}

.logo:hover img {
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  margin-left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-dropdown {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  min-width: clamp(120px, 20vw, 150px);
  text-align: left;
  position: relative;
  font-size: 1rem;
}

.language-toggle::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 15px;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  box-shadow: 0 6px 12px rgba(7, 12, 32, 0.18);
}

.language-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.5rem 0;
  box-shadow: 0 18px 35px rgba(7, 12, 32, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 160px;
  z-index: 20;
}

.language-dropdown.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.language-menu button::before,
.mobile-language button::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 15px;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  box-shadow: 0 6px 12px rgba(7, 12, 32, 0.18);
}

.language-menu button[data-language-option='tr']::before,
.mobile-language button[data-language-option='tr']::before {
  background-image: url('https://flagcdn.com/w40/tr.png');
}

.language-menu button[data-language-option='en']::before,
.mobile-language button[data-language-option='en']::before {
  background-image: url('https://flagcdn.com/w40/gb.png');
}

.language-menu button[data-language-option='de']::before,
.mobile-language button[data-language-option='de']::before {
  background-image: url('https://flagcdn.com/w40/de.png');
}

.language-toggle.lang-tr::before {
  background-image: url('https://flagcdn.com/w40/tr.png');
}

.language-toggle.lang-en::before {
  background-image: url('https://flagcdn.com/w40/gb.png');
}

.language-toggle.lang-de::before {
  background-image: url('https://flagcdn.com/w40/de.png');
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 64, 0.35);
  backdrop-filter: blur(3px);
  z-index: 190;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.cookie-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 820px);
  max-width: 900px;
  background: #fff;
  border: 1px solid rgba(10, 26, 64, 0.08);
  box-shadow: 0 18px 40px rgba(7, 12, 32, 0.18);
  border-radius: 1.1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  z-index: 200;
  display: grid;
  gap: 0.75rem;
  animation: floatIn 0.6s ease;
}

.cookie-banner.hide {
  opacity: 0;
  transform: translate(-50%, -45%);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner .cookie-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.cookie-banner .cookie-text {
  color: rgba(10, 26, 64, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-banner .btn {
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
}

.cookie-banner .btn.ghost {
  color: var(--navy);
  border-color: rgba(10, 26, 64, 0.15);
}

.cookie-banner .btn.primary {
  box-shadow: none;
}

@media (max-width: 600px) {
  .cookie-banner {
    width: calc(100% - 2rem);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.language-menu button.active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border 0.3s ease;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: relative;
}

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

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

body[data-page='languages'] .menu-toggle {
  border-color: rgba(10, 26, 64, 0.2);
}

body[data-page='languages'] .menu-toggle span,
body[data-page='languages'] .menu-toggle span::before,
body[data-page='languages'] .menu-toggle span::after {
  background: var(--navy);
}

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span::after {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 80vw);
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-panel ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel a {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
}

.mobile-panel a.active {
  color: var(--gold);
}

.mobile-panel .mobile-actions {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
}

.mobile-language {
  display: grid;
  gap: 0.5rem;
}

.mobile-language button {
  border: 1px solid rgba(10, 26, 64, 0.15);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #f5f6fb;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-language button.active {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.35);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 8;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

section {
  padding: 5rem 4vw;
}

.section-title {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.section-description {
  max-width: 720px;
  color: rgba(10, 26, 64, 0.75);
  margin-bottom: 1.5rem;
}

.language-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.language-tags span {
  border-radius: 0.75rem;
  border: 1px dashed rgba(10, 26, 64, 0.15);
  padding: 0.4rem 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
}

.language-spectrum {
  background: linear-gradient(180deg, #fff, rgba(247, 248, 252, 0.6));
}

.reason-section {
  background: #fff;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.reason-visual {
  border-radius: 1.5rem;
  min-height: 360px;
  background: url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?auto=format&fit=crop&w=1000&q=80') center/cover;
  position: relative;
  overflow: hidden;
}

.reason-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 64, 0.35);
}

.reason-body {
  color: rgba(10, 26, 64, 0.75);
  line-height: 1.7;
  margin-top: 1rem;
}

.reason-content {
  padding: clamp(0, 2vw, 1rem);
}

.values-section {
  background: linear-gradient(180deg, #fff, rgba(247, 248, 252, 0.6));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.values-visual {
  border-radius: 1.5rem;
  min-height: 320px;
  background: url(/assets/img/PHOTO-2025-12-11-01-09-37.jpg) center/cover;
  position: relative;
  overflow: hidden;
}

.values-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 64, 0.4);
}

.values-content {
  padding: clamp(0, 2vw, 1rem);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}

.values-list strong {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  background: rgba(10, 26, 64, 0.05);
  border: 1px solid rgba(10, 26, 64, 0.08);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.values-body {
  color: rgba(10, 26, 64, 0.75);
  line-height: 1.7;
}

.security-section {
  background: #fff;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.security-content {
  padding: clamp(0, 2vw, 1rem);
}

.security-list {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.security-list li {
  font-weight: 600;
  color: var(--navy);
}

.security-body {
  color: rgba(10, 26, 64, 0.75);
  line-height: 1.7;
}

.security-visual {
  border-radius: 1.5rem;
  min-height: 320px;
  background: url('https://images.unsplash.com/photo-1510511459019-5dda7724fd87?auto=format&fit=crop&w=900&q=80') center/cover;
  position: relative;
  overflow: hidden;
}

.security-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 64, 0.45);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.stories-section {
  background: linear-gradient(180deg, rgba(247, 248, 252, 0.6), #fff);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.story-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(10, 26, 64, 0.08);
  box-shadow: 0 25px 45px rgba(12, 22, 58, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-card .quote {
  font-style: italic;
  color: rgba(10, 26, 64, 0.8);
  line-height: 1.6;
}

.story-card .client {
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.kpi-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}

.kpi-grid article {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(10, 26, 64, 0.08);
  box-shadow: 0 12px 30px rgba(12, 22, 58, 0.1);
}

.kpi-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.kpi-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(10, 26, 64, 0.6);
  margin-top: 0.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.why-grid .card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.card-image.cover {
  width: 100%;
  height: 140px;
  border-radius: 1rem;
  background: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=900&q=80') center/cover;
  box-shadow: inset 0 0 0 1px rgba(10, 26, 64, 0.06);
}

.card-image.cover.alt1 {
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=900&q=80');
}

.card-image.cover.alt2 {
  background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=900&q=80');
}

.platform-section {
  background: #fff;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.platform-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.platform-list li {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(10, 26, 64, 0.08);
  background: rgba(247, 248, 252, 0.8);
}

.platform-list strong {
  display: block;
  color: var(--navy);
}

.platform-list p {
  margin-top: 0.35rem;
  color: rgba(10, 26, 64, 0.7);
  font-size: 0.95rem;
}

.working-section {
  background: linear-gradient(180deg, rgba(247, 248, 252, 0.8), #fff);
}

.working-section .platform-list {
  margin-top: 1.5rem;
}

.working-body {
  margin-top: 1rem;
  color: rgba(10, 26, 64, 0.75);
  line-height: 1.7;
  text-align: center;
}

.working-callout {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(10, 26, 64, 0.08);
  box-shadow: 0 15px 35px rgba(12, 22, 58, 0.08);
}

.training-section .timeline.extended {
  padding-left: 1rem;
  gap: 1rem;
}

.training-section .timeline.extended li {
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

.faq-section {
  background: linear-gradient(180deg, rgba(247, 248, 252, 0.7), #fff);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid details {
  border-radius: 1rem;
  border: 1px solid rgba(10, 26, 64, 0.1);
  padding: 1rem 1.25rem;
  background: #fff;
}

.faq-grid summary {
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.faq-grid p {
  margin-top: 0.75rem;
  color: rgba(10, 26, 64, 0.75);
}

.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.spectrum-card {
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(10, 26, 64, 0.08);
  background: #fff;
  box-shadow: 0 25px 50px rgba(12, 22, 58, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spectrum-card.highlight {
  background: linear-gradient(135deg, rgba(10, 26, 64, 0.95), #0d224a);
  color: #fff;
}

.spectrum-card.highlight .section-title,
.spectrum-card.highlight h3 {
  color: var(--gold);
}

.spectrum-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.spectrum-stats div span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: inherit;
}

.check-list,
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.2rem;
}

.check-list li,
.timeline li {
  color: rgba(10, 26, 64, 0.8);
  position: relative;
  font-weight: 500;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: -1.2rem;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -1.2rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.feature-grid,
.services-grid,
.language-grid,
.career-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(10, 26, 64, 0.08);
  box-shadow: 0 20px 45px rgba(12, 22, 58, 0.08);
  transition: transform 0.3s ease, border 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.services-grid {
  justify-items: stretch;
}

.services-grid .card {
  align-items: flex-start;
  text-align: left;
}

.services-grid .card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  word-break: break-word;
  hyphens: auto;
}

.services-grid .card p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
}

.flip-grid {
  perspective: 1400px;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.language-card {
  position: relative;
  min-height: 300px;
  cursor: pointer;
  perspective: 1600px;
}

.language-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s ease, box-shadow 0.3s ease;
  border-radius: 1.25rem;
}

.language-card:hover .card-inner {
  transform: rotateY(180deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(12, 22, 58, 0.18);
}

.language-card .card-face {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(10, 26, 64, 0.08);
  box-shadow: 0 20px 45px rgba(12, 22, 58, 0.08);
  padding: 2rem;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.language-card .card-front {
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}

.language-card .card-back {
  transform: rotateY(180deg);
}

.language-card .flag {
  width: 80px;
  height: 60px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(12, 22, 58, 0.15);
  flex-shrink: 0;
}

.language-card .flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.language-card .slogan {
  font-size: 0.95rem;
  color: rgba(10, 26, 64, 0.7);
}

.language-card .card-back p {
  color: rgba(10, 26, 64, 0.85);
  line-height: 1.5;
  font-size: 0.92rem;
}

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

.card h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.contact-card {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(10, 26, 64, 0.08);
  box-shadow: 0 20px 45px rgba(12, 22, 58, 0.08);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info strong {
  color: var(--gold);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-actions a {
  display: inline-flex;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: rgba(10, 26, 64, 0.03);
  border-radius: 1rem;
}

.stat strong {
  font-size: 2rem;
  color: var(--gold);
}

.about-layout,
.services-layout,
.language-layout,
.career-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.about-visual,
.services-visual,
.language-visual,
.career-visual {
  border-radius: 1.5rem;
  min-height: 320px;
  background: url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?auto=format&fit=crop&w=900&q=80') center/cover;
  position: relative;
  overflow: hidden;
}

.about-visual::after,
.services-visual::after,
.language-visual::after,
.career-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 64, 0.3);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.list li::before {
  content: '•';
  color: var(--gold);
  font-size: 1.5rem;
}

/* Tweak 360° hizmet alanı metin ölçeği ve genişliği */
.services-layout .section-heading {
  font-size: 1.6rem;
  line-height: 1.4;
  max-width: 32rem;
}

@media (max-width: 768px) {
  .services-layout .section-heading {
    font-size: 1.4rem;
  }
}

footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 26, 64, 0.95), rgba(12, 32, 80, 0.9));
  color: #fff;
  padding: 3.5rem 4vw;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer::before,
footer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

footer::before {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.5), transparent 60%);
  top: -60px;
  left: 8%;
}

footer::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(94, 125, 255, 0.35), transparent 60%);
  bottom: -80px;
  right: 6%;
  animation-duration: 12s;
}

footer .footer-grid > div {
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.4s ease, color 0.4s ease;
}

footer .footer-grid > div:hover {
  transform: translateY(-6px);
}

footer .footer-grid p,
footer .footer-grid a {
  position: relative;
  z-index: 1;
}

footer .footer-grid a:hover {
  color: #fff;
}

@keyframes floatGlow {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.show {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 992px) {
  .navbar {
    padding: 0.75rem 1.25rem;
    background: transparent;
    box-shadow: none;
    z-index: 12;
    justify-content: space-between;
  }
  body.menu-open .navbar {
    opacity: 0;
    pointer-events: none;
  }
  .menu-toggle {
    display: flex;
    order: 0;
  }
  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    background: var(--navy);
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .logo {
    margin: 0;
    margin-left: auto;
  }

  .language-toggle {
    width: 100%;
    justify-content: center;
  }

  header,
  .main-hero {
    padding-top: 4.5rem;
  }

  .logo {
    width: clamp(110px, 28vw, 140px);
  }

  .hero-visual {
    max-width: 100%;
  }
}

@media (min-width: 993px) {
  .menu-toggle,
  .mobile-panel,
  .overlay {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
}
