/* ========================================
   RESPONSIVE TASARIM - MOBILE FIRST
   ======================================== */

:root {
  /* --- ÇAĞLAYAN KURUMSAL RENK PALETİ --- */

  /* Primary: Bronz/Altın (Vurgu, Butonlar, Linkler) */
  --primary: #A88856;
  --primary-hover: #8F7244;

  /* Secondary: Koyu Füme/Slate (Kurumsal, Navbar, Footer, Başlıklar) */
  --secondary: #2F3E4E;
  --secondary-light: #405060;

  /* Text Colors */
  --text-main: #333333;
  /* Ana metin */
  --text-light: #666666;
  /* Açıklama metinleri */
  --text-white: #FFFFFF;
  /* Koyu zemin üzeri metin */

  /* Backgrounds */
  --bg-body: #FFFFFF;
  --bg-light: #F8F9FA;
  /* Bölüm araları için açık gri */
  --bg-dark: #2F3E4E;
  /* Footer/Nav zemini */

  /* Shadows & Effects */
  --shadow-sm: 0 4px 12px rgba(47, 62, 78, 0.08);
  --shadow-md: 0 10px 26px rgba(47, 62, 78, 0.12);
  --shadow-lg: 0 22px 55px rgba(47, 62, 78, 0.18);
  --ring: 0 0 0 3px rgba(168, 136, 86, 0.32);
  /* Focus halkası - Gold */

  /* Container Widths */
  --container: 1500px;
  --container-narrow: 1380px;

  /* Fluid Typography - Desktop Optimized */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.75rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 5rem);

  /* Fluid Spacing */
  --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1rem);
  --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --space-lg: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
  --space-xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --space-2xl: clamp(3rem, 2rem + 5vw, 5rem);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-body);
  color: var(--text-main);
  padding-top: 50px;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-hover);
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
  width: min(var(--container), 95%);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.container-narrow {
  width: min(var(--container-narrow), 95%);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

/* Desktop container - daha geniş */
@media (min-width: 64em) {
  .container {
    width: min(var(--container), 98%);
    padding-inline: 0;
  }

  .container-narrow {
    width: min(var(--container-narrow), 96%);
    padding-inline: 0;
  }
}

.center {
  text-align: center;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ========================================
   NAVIGATION - MOBILE FIRST
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-dark);
  /* Koyu Füme */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease-in-out;
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: var(--space-xs) var(--space-sm);
  width: 95%;
  margin: 0 auto;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  z-index: 1001;
}

.brand img {
  height: 50px;
  /* Mobilde görünürlüğü artırdık (Eskisi 32px idi) */
  width: auto;
  margin-right: 12px;
  /* Margin'i buraya taşıdık */
  transition: height 0.3s ease;
  /* Boyut değişimine yumuşak geçiş ekledik */
}

.brand .ttl {
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.2;
  margin-bottom: 2px;
  font-size: var(--text-sm);
  color: #FFFFFF;
}

.brand .cap {
  font-size: var(--text-xs);
  opacity: 0.8;
  line-height: 1;
  color: #E0E0E0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-main {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
}

.nav-main.open {
  transform: translateX(0);
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: var(--space-md) 0;
  list-style: none;
}

.menu>li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu>li>button,
.menu>li>a {
  color: #E0E0E0;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: block;
  font-size: var(--text-base);
  transition: color 0.2s, background 0.2s;
}

.menu>li>button:active,
.menu>li>a:active {
  background: rgba(255, 255, 255, 0.08);
}

.dropdown {
  position: static;
  min-width: auto;
  background: var(--secondary-light);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: none;
  max-height: 0;
  overflow: visible;
  transition: max-height 0.3s ease;
}

.dropdown.open {
  display: block;
  max-height: 500px;
}

.dropdown a {
  display: block;
  color: #FFFFFF;
  padding: 14px 20px 14px 40px;
  font-weight: 500;
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.dropdown a:active {
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: var(--primary);
  /* Gold/Bronz */
  color: #FFFFFF;
  font-weight: 700;
  border: 0;
  padding: 14px 24px;
  border-radius: 4px;
  /* Daha kurumsal köşe */
  cursor: pointer;
  margin: var(--space-md) 20px;
  width: calc(100% - 40px);
  font-size: var(--text-base);
  min-height: 48px;
  transition: background-color 0.2s;
}

.nav-cta:hover,
.nav-cta:active {
  background-color: var(--primary-hover);
  color: #FFFFFF;
}

/* ========================================
   HERO SECTION - MOBILE FIRST
   ======================================== */

.hero {
  position: relative;
  background: var(--secondary);
  /* Koyu Füme */
  color: #FFFFFF;
  margin-top: 0px;
}

.slide {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

@media (min-width: 64em) {
  .slide {
    min-height: 72vh;
  }
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Overlay rengi koyu füme tonlarında güncellendi */
  background: linear-gradient(180deg,
      rgba(47, 62, 78, 0.85) 0%,
      rgba(47, 62, 78, 0.7) 50%,
      rgba(47, 62, 78, 0.85) 100%),
    var(--bg);
  background-size: cover;
  background-position: center;
}

.slide .content {
  position: relative;
  width: min(var(--container), 95%);
  margin: auto;
  padding: 0 var(--space-sm);
  text-align: center;
}

.hero-copy {
  max-width: 100%;
  margin: 0 auto;
}

.eyebrow {
  color: var(--primary);
  /* Gold */
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  margin: 0.35rem 0 1rem;
  font-weight: 800;
  line-height: 1.1;
  font-size: var(--text-3xl);
  color: #FFFFFF;
}

h1 strong {
  color: var(--primary);
  /* Gold vurgu */
  display: block;
}

@media (min-width: 64em) {
  h1 {
    line-height: 1.03;
    font-size: clamp(34px, 5.2vw, 66px);
  }
}

.hero p {
  color: #E0E0E0;
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  /* Gold */
  color: #FFFFFF;
  /* Beyaz yazı */
  font-weight: 700;
  border: 0;
  border-radius: 4px;
  /* Kurumsal köşe */
  padding: 16px 28px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background-color 0.2s;
  font-size: var(--text-base);
  min-height: 48px;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
    background-color: var(--primary-hover);
    color: #FFFFFF;
  }
}

.btn:active {
  transform: translateY(0);
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
}

.dot.is-active {
  opacity: 1;
  background: var(--primary);
}

/* ========================================
   SLOGAN SECTION
   ======================================== */

.slogan-sec {
  position: relative;
  overflow: hidden;
  background: var(--secondary-light);
  /* Biraz daha açık füme */
  color: #FFFFFF;
  padding: var(--space-xl) 0;
}

.slogan-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 300px at var(--mx, 50%) var(--my, 50%),
      rgba(168, 136, 86, 0.15),
      /* Gold yansıma */
      transparent 60%);
  transition: background 0.1s linear;
}

.slogan-inner {
  width: min(var(--container), 95%);
  margin-inline: auto;
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
}

.slogan-title {
  margin: 0;
  line-height: 1.1;
  font-weight: 800;
  font-size: var(--text-2xl);
  letter-spacing: 0.2px;
  color: var(--primary);
  /* Gold Başlık */
}

.slogan-sub {
  margin: 0.6rem 0 0;
  line-height: 1.2;
  font-weight: 600;
  font-size: var(--text-lg);
  opacity: 0.95;
  color: #FFFFFF;
}

@media (min-width: 64em) {
  .slogan-title {
    line-height: 1.05;
    font-size: clamp(30px, 4.6vw, 56px);
  }

  .slogan-sub {
    line-height: 1.15;
    font-size: clamp(22px, 3.2vw, 36px);
  }
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: var(--space-2xl) 0;
  background: var(--bg-body);
}

.section--alt {
  background: var(--bg-light);
  /* Çok açık gri */
}

.section h2 {
  margin: 0 0 var(--space-sm);
  text-align: center;
  color: var(--secondary);
  /* Başlıklar Füme */
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 64em) {
  .section h2 {
    margin: 0 0 10px;
    font-size: clamp(22px, 3.1vw, 36px);
  }
}

.lead {
  max-width: 880px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  color: var(--text-light);
  font-size: var(--text-base);
  padding: 0 var(--space-sm);
}

/* ========================================
   SERVICES GRID - MOBILE FIRST
   ======================================== */

.services-wrap {
  width: min(var(--container), 95%);
  margin-inline: auto;
  padding: 0 var(--space-sm);
}

.s2-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.s2-card {
  border-radius: 8px;
  /* Daha keskin */
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #EAEAEA;
}

@media (hover: hover) {
  .s2-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    /* Hoverda gold çerçeve */
  }
}

.s2-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-light);
}

.s2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s;
}

@media (hover: hover) {
  .s2-card:hover .s2-media img {
    transform: scale(1.06);
  }
}

.s2-body {
  padding: var(--space-md);
}

.s2-title {
  margin: 0 0 var(--space-xs);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--secondary);
  line-height: 1.3;
}

.s2-desc {
  margin: 0;
  color: var(--text-light);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.s2-ctaRow {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
  padding: 0 var(--space-sm);
}

.s2-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  border: 2px solid var(--primary);
  border-radius: 4px;
  padding: 14px 28px;
  cursor: pointer;
  font-size: var(--text-base);
  min-height: 48px;
  transition: all 0.2s;
}

@media (hover: hover) {
  .s2-more:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-1px);
  }
}

/* ========================================
   ABOUT SECTION - MOBILE FIRST
   ======================================== */

.about {
  width: min(var(--container-narrow), 95%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: 0 var(--space-sm);
}

@media (min-width: 48em) {
  .about {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 64em) {
  .about {
    grid-template-columns: 1.05fr 1fr;
    min-height: 560px;
    align-items: stretch;
  }
}

.about__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about h2,
.about h3 {
  color: var(--secondary);
  font-size: var(--text-xl);
  line-height: 1.3;
}

@media (min-width: 64em) {

  .about h2,
  .about h3 {
    font-size: clamp(22px, 2.5vw, 32px);
  }
}

.about p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-main);
}

/* ========================================
   NEWS CAROUSEL - MOBILE FIRST
   ======================================== */

.news {
  background: var(--secondary);
  /* Koyu Füme */
  color: #FFFFFF;
  padding: var(--space-2xl) 0;
}

.news h2 {
  text-align: center;
  margin: 0 0 var(--space-sm);
  color: #FFFFFF;
  font-size: var(--text-2xl);
}

.carousel {
  position: relative;
  width: 100%;
  padding: 0 var(--space-sm);
}

.track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-sm) 0;
}

.track::-webkit-scrollbar {
  display: none;
}

.post {
  flex: 0 0 100%;
  max-width: 400px;
  min-width: 280px;
  background: #FFFFFF;
  /* Kartlar Beyaz */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s, box-shadow 0.25s;
  scroll-snap-align: center;
}

@media (hover: hover) {
  .post:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.25);
  }
}

.post .media {
  aspect-ratio: 16/10;
  position: relative;
}

.post .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--primary);
  /* Gold */
  color: #FFFFFF;
  font-size: var(--text-xs);
}

.date {
  position: absolute;
  right: 12px;
  top: 10px;
  background: var(--secondary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-xs);
}

.post .body {
  padding: var(--space-md);
}

.post h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-lg);
  color: var(--secondary);
  line-height: 1.3;
}

.post p {
  margin: 0;
  color: var(--text-light);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.ctrl {
  display: none;
}

/* ========================================
   FOOTER - MOBILE FIRST
   ======================================== */

.footer {
  background: var(--secondary);
  /* Koyu Füme */
  color: #E0E0E0;
  padding: var(--space-2xl) 0 var(--space-md);
  border-top: 4px solid var(--primary);
}

.footer a {
  color: var(--primary);
  /* Gold */
}

.footer a:hover {
  color: #FFFFFF;
}

.cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  width: min(var(--container-narrow), 95%);
  margin-inline: auto;
  padding: 0 var(--space-sm);
}

.footer h4 {
  color: #FFFFFF;
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.footer small {
  display: block;
  margin-top: var(--space-lg);
  color: #A0A0A0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  width: min(var(--container-narrow), 95%);
  margin-inline: auto;
  text-align: center;
  font-size: var(--text-sm);
}

.list-clear {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-clear li {
  margin-bottom: var(--space-xs);
}

.badge-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
  flex-wrap: wrap;
}

.badge-row svg {
  width: 18px;
  height: 18px;
  opacity: 0.85;
  flex-shrink: 0;
  color: var(--primary);
}

.map-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--secondary-light);
  margin-top: var(--space-md);
}

.map-embed {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.newsletter {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Gold-Füme Gradient */
  background: linear-gradient(135deg,
      rgba(47, 62, 78, 1),
      rgba(168, 136, 86, 0.2));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  margin-top: var(--space-md);
}

.newsletter .title {
  margin: 0 0 var(--space-xs);
  color: #FFFFFF;
  font-weight: 800;
  font-size: var(--text-lg);
}

.newsletter .desc {
  margin: 0 0 var(--space-sm);
  color: #E0E0E0;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.nl-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: stretch;
}

.nl-input {
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  padding: 14px;
  border-radius: 4px;
  border: 1px solid #506070;
  background: #1F2E3E;
  color: #FFFFFF;
  font-size: var(--text-base);
  min-height: 48px;
}

.nl-input:focus {
  outline: none;
  border-color: var(--primary);
}

.nl-btn {
  padding: 14px 24px;
  border-radius: 4px;
  border: 0;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 700;
  cursor: pointer;
  font-size: var(--text-base);
  min-height: 48px;
  transition: background-color 0.2s;
}

@media (hover: hover) {
  .nl-btn:hover {
    background-color: var(--primary-hover);
    color: #FFFFFF;
  }
}

.nl-note {
  margin-top: var(--space-xs);
  color: #A0A0A0;
  font-size: var(--text-xs);
  line-height: 1.4;
}

/* ========================================
   COMMON GRIDS - MOBILE FIRST
   ======================================== */

.grid {
  display: grid;
  gap: var(--space-md);
  padding: 0 var(--space-sm);
}

.grid.cols-3,
.grid.cols-4 {
  grid-template-columns: 1fr;
}

.card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
  }
}

.card .media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-light);
}

.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

@media (hover: hover) {
  .card:hover .media img {
    transform: scale(1.05);
  }
}

.card .body {
  padding: var(--space-md);
}

.card .t {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.3;
}

.card .s {
  margin: 0;
  color: var(--text-light);
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* ========================================
   MODAL - MOBILE OPTIMIZED
   ======================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  padding: var(--space-md);
  overflow-y: auto;
}

.modal.is-open {
  display: flex;
}

.panel {
  position: relative;
  background: var(--bg-dark);
  /* Modal içi tema rengi */
  color: #FFFFFF;
  border-radius: 8px;
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 0;
  max-height: none;
  overflow-y: visible;
}

@media (max-width: 63.99em) {
  .panel {
    max-height: 90vh;
    overflow-y: auto;
  }
}

.close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s;
}

@media (hover: hover) {
  .close:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

.panel-inner {
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 64em) {
  .panel-inner {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-2xl) var(--space-xl);
  }
}

.panel-inner h3 {
  color: var(--primary);
  font-size: var(--text-xl);
  margin: 0 0 var(--space-sm);
}

/* Modal Form Container Override */
.modal-form-container {
  background: var(--secondary);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
}

.panel-inner label {
  display: block;
  color: inherit;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
}

.panel-inner input,
.panel-inner textarea {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #FFFFFF;
  color: var(--text-main);
  font-family: inherit;
  font-size: var(--text-base);
  min-height: 48px;
}

.panel-inner input:focus,
.panel-inner textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(168, 136, 86, 0.2);
}

/* ========================================
   SERVICE DETAIL PAGE
   ======================================== */

.service-detail-header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  margin-top: var(--space-md);
}

.service-meta span {
  background: var(--secondary-light);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.service-detail-list li {
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  position: relative;
  color: var(--text-main);
  line-height: 1.6;
  font-size: var(--text-base);
}

.service-detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
}

.service-side {
  background: var(--bg-light);
  padding: var(--space-lg);
  border-radius: 8px;
  border: 1px solid #EAEAEA;
}

.service-side img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: var(--space-md);
}

.service-side small {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.service-side strong {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
  line-height: 1.5;
}

/* ========================================
   BLOG DETAIL PAGE
   ======================================== */

.blog-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.blog-header {
  margin-bottom: var(--space-lg);
}

.blog-date {
  color: var(--primary);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-title {
  color: var(--secondary);
  font-size: var(--text-2xl);
  margin: var(--space-xs) 0 var(--space-md);
  line-height: 1.2;
}

@media (min-width: 64em) {
  .blog-title {
    font-size: clamp(26px, 3.5vw, 42px);
  }
}

.blog-hero-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: var(--space-lg);
  max-height: 400px;
  object-fit: cover;
}

.blog-content {
  color: var(--text-main);
  font-size: var(--text-base);
  line-height: 1.8;
}

.blog-content h3 {
  color: var(--secondary);
  font-size: var(--text-xl);
  margin: var(--space-xl) 0 var(--space-md);
  line-height: 1.3;
}

@media (min-width: 64em) {
  .blog-content h3 {
    font-size: clamp(20px, 2.5vw, 28px);
  }
}

.blog-content p {
  margin-bottom: var(--space-md);
}

.blog-content ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.blog-content li {
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

/* ========================================
   ORGANIZATION CHART - MOBILE FIRST
   ======================================== */

.org-tree-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: var(--space-lg) var(--space-sm);
  -webkit-overflow-scrolling: touch;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  min-width: 300px;
}

.level-1,
.level-2 {
  display: flex;
  justify-content: center;
  width: 100%;
}

.node {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: 400px;
  width: 95%;
  margin: 0 auto;
  border-left: 4px solid var(--secondary);
}

.node img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--bg-light);
}

.node-content {
  flex: 1;
  min-width: 0;
}

.node-title {
  font-weight: 800;
  color: var(--secondary);
  font-size: var(--text-lg);
  margin-bottom: 4px;
  line-height: 1.2;
}

.node-role {
  color: var(--text-light);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.3;
}

.level-1 .node {
  border-left-color: var(--primary);
  /* Patron/Yönetici Gold */
  border-width: 5px;
}

.level-1 .node img {
  width: 80px;
  height: 80px;
}

.level-2 .node {
  border-left-color: var(--secondary-light);
}

.line-vertical {
  width: 2px;
  background-color: #cbd5e1;
  height: 20px;
  display: none;
}

/* Karşıt İnceleme Alt Bölümü */
.sub-dept-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--space-md) 0;
  padding: var(--space-sm) 0;
  gap: var(--space-xs);
}

@media (min-width: 80em) {
  .sub-dept-divider {
    margin: 10px 0;
  }
}

.arrow-down {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary);
}

.sub-dept-badge {
  background: var(--secondary-light);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

@media (min-width: 80em) {
  .sub-dept-badge {
    padding: 4px 12px;
    font-size: 0.75rem;
  }
}

.connector-bar {
  width: 90%;
  height: 2px;
  background: #cbd5e1;
  margin-bottom: -2px;
  display: none;
}

.dept-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  width: 100%;
  padding: var(--space-md) var(--space-sm);
}

/* Organizasyon şeması desktop optimizasyonu */
@media (min-width: 80em) {
  .dept-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
  }
}

.dept-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dept-col::before {
  display: none;
}

.dept-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 4px solid var(--secondary);
}

@media (min-width: 80em) {
  .dept-box {
    min-width: 180px;
    max-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
}

.dept-header {
  background: var(--bg-light);
  padding: var(--space-md);
  text-align: center;
  font-weight: 800;
  color: var(--secondary);
  border-bottom: 1px solid #e2e8f0;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 80em) {
  .dept-header {
    padding: 10px;
    font-size: 0.9rem;
  }
}

.staff-list {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

@media (min-width: 80em) {
  .staff-list {
    padding: 10px;
    gap: 6px;
  }
}

.staff-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs);
  border-radius: 4px;
  transition: 0.2s;
  border: 1px solid transparent;
}

@media (min-width: 80em) {
  .staff-item {
    gap: 8px;
    padding: 6px;
  }
}

@media (hover: hover) {
  .staff-item:hover {
    background: var(--bg-light);
    border-color: #e2e8f0;
  }
}

.staff-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
  flex-shrink: 0;
}

@media (min-width: 80em) {
  .staff-img {
    width: 36px;
    height: 36px;
  }
}

.staff-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

@media (min-width: 80em) {
  .staff-name {
    font-size: 0.85rem;
    line-height: 1.2;
  }
}

/* ========================================
   CORPORATE PAGE - MOBILE FIRST
   ======================================== */

.corp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: 0 var(--space-sm);
}

.corp-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.corp-img-wrap img {
  width: 100%;
  display: block;
}

.section-title {
  color: var(--secondary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 64em) {
  .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.text-content {
  color: var(--text-main);
  font-size: var(--text-base);
  line-height: 1.7;
}

@media (min-width: 64em) {
  .text-content {
    font-size: 17px;
  }
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: 0 var(--space-sm);
}

.mv-card {
  background: #fff;
  padding: var(--space-xl);
  border-radius: 8px;
  border: 1px solid #eef5f8;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s;
}

@media (hover: hover) {
  .mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
  }
}

.mv-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
  display: inline-block;
  background: var(--bg-light);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  color: var(--primary);
}

.mv-card h3 {
  color: var(--secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

@media (min-width: 64em) {
  .mv-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
}

.mv-card p {
  color: var(--text-light);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* ========================================
   ABOUT PAGE - REDESIGNED
   ======================================== */

/* Hero Banner */
.about-hero {
  position: relative;
  min-height: 340px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2a3a 60%, var(--secondary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-md);
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(168, 136, 86, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 136, 86, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.about-hero-eyebrow {
  font-family: 'Inter', monospace;
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.about-hero-title {
  color: #fff;
  font-size: var(--text-3xl);
  font-weight: 900;
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.about-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.5;
}

/* Kurucu Bölümü */
.about-founder-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-founder-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.about-founder-img-wrap {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow:
    0 0 0 4px var(--primary),
    var(--shadow-lg);
  position: relative;
}

.about-founder-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent 60%, rgba(47, 62, 78, 0.08) 100%);
  pointer-events: none;
}

.about-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-founder-caption {
  text-align: center;
}

.about-founder-name {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
  line-height: 1.2;
}

.about-founder-role {
  display: inline-block;
  margin-top: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, rgba(168, 136, 86, 0.12) 0%, rgba(168, 136, 86, 0.06) 100%);
  padding: 5px 18px;
  border-radius: 999px;
  border: 1px solid rgba(168, 136, 86, 0.25);
}

.about-founder-bio {
  padding: 0 var(--space-sm);
}

.about-founder-bio-title {
  color: var(--secondary);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-founder-bio-text {
  color: var(--text-main);
  font-size: var(--text-base);
  line-height: 1.8;
}

.about-founder-bio-text p {
  margin-bottom: var(--space-md);
}

.about-founder-bio-text p:last-child {
  margin-bottom: 0;
}

/* Şirket Hikayesi Bölümü */
.about-story-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.about-story-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.about-story-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.about-story-title {
  color: var(--secondary);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
}

.about-story-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-main);
  columns: 1;
}

/* Değerler Bölümü */
.about-values-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.about-values-heading {
  text-align: center;
  color: var(--secondary);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-xl);
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.about-value-card {
  background: #fff;
  border-radius: 12px;
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid #eef2f5;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (hover: hover) {
  .about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
  }
}

.about-value-icon {
  font-size: 42px;
  margin-bottom: var(--space-md);
  display: inline-block;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(168, 136, 86, 0.08) 100%);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
}

.about-value-card h4 {
  color: var(--secondary);
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.about-value-card p {
  color: var(--text-light);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   ABOUT PAGE - TABLET (768px+)
   ======================================== */
@media (min-width: 48em) {
  .about-hero {
    min-height: 400px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-founder-img-wrap {
    width: 300px;
    height: 300px;
  }
}

/* ========================================
   ABOUT PAGE - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 64em) {
  .about-hero {
    min-height: 450px;
  }

  .about-founder-grid {
    grid-template-columns: auto 1fr;
    gap: var(--space-2xl);
  }

  .about-founder-photo-col {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  .about-founder-img-wrap {
    width: 320px;
    height: 320px;
  }

  .about-founder-bio {
    padding: 0;
  }

  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-story-text {
    columns: 2;
    column-gap: var(--space-xl);
  }
}

/* ========================================
   VIEW SYSTEM
   ======================================== */

.view {
  display: none;
}

.view.is-active {
  display: block;
}

/* ========================================
   TABLET BREAKPOINT (768px+)
   ======================================== */

@media (min-width: 48em) {
  .brand .ttl {
    font-size: var(--text-base);
  }

  .brand img {
    height: 75px;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .nav .inner {
    min-height: 90px;
  }

  .nav-main {
    position: static;
    transform: none;
    background: transparent;
    border-top: 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-height: none;
    overflow: visible;
    /* İçerik taşabilsin (Dropdown için şart) */
    overflow-y: visible;
    /* Dikey kaydırmayı kapat */
  }

  .menu {
    flex-direction: row;
    gap: 4px;
    padding: 0;
  }

  .menu>li {
    border-bottom: 0;
  }

  .menu>li>button,
  .menu>li>a {
    padding: 10px 12px;
    font-size: var(--text-sm);
  }

  @media (hover: hover) {

    .menu>li>button:hover,
    .menu>li>a:hover {
      background: rgba(255, 255, 255, 0.06);
    }
  }

  .dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 280px;
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
    padding: 6px;
    max-height: none;
  }

  .dropdown a {
    padding: 10px;
  }

  @media (hover: hover) {
    .dropdown a:hover {
      background: rgba(255, 255, 255, 0.1);
    }
  }

  .nav-cta {
    margin: 0;
    width: auto;
    padding: 0.7rem 1.1rem;
    font-size: var(--text-sm);
    min-height: auto;
  }

  .slide {
    min-height: 70vh;
  }

  .slide .content {
    text-align: left;
    grid-template-columns: 1.6fr 1fr;
  }

  .hero-copy {
    margin-left: clamp(20px, 4vw, 80px);
  }

  h1 strong {
    display: inline;
  }

  .btn {
    width: auto;
    max-width: 400px;
  }

  .s2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .track {
    overflow-x: hidden;
  }

  .post {
    flex: 0 0 calc(50% - var(--space-sm));
  }

  .ctrl {
    display: grid;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    place-items: center;
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: filter 0.2s;
  }

  @media (hover: hover) {
    .ctrl:hover {
      filter: brightness(1.2);
    }
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .cols {
    grid-template-columns: 1fr 1fr;
  }

  .nl-row {
    flex-direction: row;
  }

  .map-embed {
    height: 260px;
  }

  .grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-inner {
    padding: var(--space-2xl) var(--space-xl);
  }

  .service-detail-body {
    grid-template-columns: 1.5fr 1fr;
  }

  .dept-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   DESKTOP BREAKPOINT (1024px+)
   ======================================== */

@media (min-width: 64em) {
  .s2-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .post {
    flex: 0 0 calc(33.333% - var(--space-md));
  }

  .cols {
    grid-template-columns: 1.3fr 1fr 1.3fr;
  }

  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid.cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .dept-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }

  .dept-box {
    max-width: none;
  }

  .line-vertical,
  .connector-bar {
    display: block;
  }

  .dept-col::before {
    display: block;
  }

  .corp-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    text-align: left;
  }
}

/* ========================================
   LARGE DESKTOP (1280px+)
   ======================================== */

@media (min-width: 80em) {
  .grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   ACCESSIBILITY & UTILITIES
   ======================================== */

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {

  .nav,
  .footer,
  .btn,
  .nav-cta {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 {
    font-size: 24pt;
    color: #000;
  }

  h2 {
    font-size: 18pt;
    color: #000;
  }

  a {
    text-decoration: underline;
    color: #000;
  }

  /* ========================================
   MEGA MENU (EY STYLE) - ENTEGRASYON
   ======================================== */

  /* Masaüstü Görünüm (1024px ve üzeri) */
  @media (min-width: 64em) {

    /* Navbar'daki li elemanını statik yapıyoruz ki menü ekran genişliğine yayılsın */
    .nav-main .menu>li.has-megamenu {
      position: static;
    }

    /* Mega Menu Konteyner */
    .megamenu {
      left: 0;
      right: 0;
      width: 100%;
      padding: 0;
      background: var(--secondary);
      /* Koyu Füme Zemin */
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 4px solid var(--primary);
      /* Altın Çizgi */
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      display: none;
      /* JS ile açılacak */
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    /* Açılma Efekti */
    .megamenu.open {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* Grid Yapısı (3 Kolon) */
    .megamenu-grid {
      display: grid;
      grid-template-columns: 1.2fr 1.5fr 1fr;
      /* Sol - Orta - Sağ Oranları */
      gap: 40px;
      padding: 40px 0;
    }

    /* --- SOL KOLON (Bilgi) --- */
    .mm-col-info {
      padding-right: 20px;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mm-title {
      color: #FFF;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .mm-desc {
      color: #B0B0B0;
      font-size: 15px;
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .btn.btn-outline {
      background: transparent;
      border: 1px solid #FFF;
      color: #FFF;
      padding: 10px 24px;
      width: auto;
      display: inline-block;
      font-size: 14px;
    }

    .btn.btn-outline:hover {
      background: #FFF;
      color: var(--secondary);
      border-color: #FFF;
    }

    /* --- ORTA KOLON (Hizmet Listesi) --- */
    .mm-col-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mm-col-list li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mm-col-list li:last-child {
      border-bottom: none;
    }

    .mm-col-list a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 10px;
      color: #FFF;
      font-weight: 600;
      font-size: 16px;
      transition: background 0.2s, padding-left 0.2s;
      border-bottom: 0 !important;
      /* Genel dropdown stilini ezmek için */
    }

    .mm-col-list a:hover {
      background: rgba(255, 255, 255, 0.05);
      padding-left: 15px;
      color: var(--primary);
      /* Hover'da Gold */
    }

    .mm-col-list .arrow {
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.2s;
      color: var(--primary);
    }

    .mm-col-list a:hover .arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* --- SAĞ KOLON (Gündem) --- */
    .mm-col-agenda {
      padding-left: 20px;
    }

    .mm-subtitle {
      color: var(--primary);
      /* Gold Başlık */
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .mm-col-agenda ul {
      list-style: none;
      padding: 0;
      margin: 0 0 30px 0;
    }

    .mm-col-agenda li {
      margin-bottom: 12px;
    }

    .mm-col-agenda a {
      color: #E0E0E0;
      font-size: 15px;
      font-weight: 500;
      padding: 0;
      border: 0;
      transition: color 0.2s;
    }

    .mm-col-agenda a:hover {
      color: #FFF;
      background: transparent;
    }

    .mm-highlight {
      background: rgba(168, 136, 86, 0.1);
      /* Hafif Gold Zemin */
      padding: 16px;
      border-radius: 8px;
      border-left: 3px solid var(--primary);
    }

    .mm-highlight span {
      display: block;
      color: #FFF;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .link-gold {
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
    }

    .link-gold:hover {
      color: #FFF;
    }
  }

  /* Mobil Görünüm Düzeltmeleri (1024px altı) */
  @media (max-width: 63.99em) {
    .megamenu-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 10px;
    }

    .mm-col-info,
    .mm-highlight,
    .mm-desc {
      display: none;
      /* Mobilde sadece linkleri gösterip sadeleştiriyoruz */
    }

    .mm-col-list a {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mm-col-list .arrow {
      display: none;
    }

    .mm-subtitle {
      margin-top: 20px;
      display: block;
    }
  }
}

/* ========================================
   TEAM & PROFILE STYLES (NEW)
   ======================================== */

/* Team Grid Card */
.team-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  /* Portre oranı */
  overflow: hidden;
  background: #f8f9fa;
  border-bottom: 4px solid var(--primary);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0 0 5px;
  line-height: 1.2;
}

.team-role {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.team-link:hover {
  text-decoration: underline;
}

/* Profile Detail Page (EY Style) */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 64em) {
  .profile-layout {
    grid-template-columns: 300px 1fr;
    /* Sol: Foto/Info, Sağ: Bio */
    align-items: start;
  }
}

.profile-sidebar {
  background: #fff;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  position: sticky;
  top: 100px;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--primary);
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 5px;
  line-height: 1.1;
}

.profile-role {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.profile-contact-box {
  background: #f8fafc;
  padding: 15px;
  border-radius: 4px;
  text-align: left;
  font-size: 0.9rem;
}

.profile-contact-box strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 5px;
}

.profile-bio h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.profile-bio p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-main);
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.expertise-tag {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========================================
   DEPARTMAN AYRAÇLARI
   ======================================== */
.dept-section {
  margin-bottom: 60px;
  /* Bölümler arası boşluk */
}

.dept-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.dept-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  /* Koyu Füme */
  margin: 0;
}

.dept-badge {
  background: var(--primary);
  /* Gold/Bronz */
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 700;
  text-transform: uppercase;
}