/* ============== GENEL & RESET STYLES ============== */
:root {
  --color-primary: #e56f15;
  --color-text: #4f4f4e;
  --color-text-light: #6c757d;
  --color-bg-light: #f8f9fa;
  --transition-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}
a:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============== HEADER & GENEL BİLEŞENLER ============== */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.logo img {
  height: 60px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.menu-items {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}
.menu-item {
  position: relative;
}
.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 25px 20px;
  display: block;
  transition: all 0.3s ease;
  font-size: 14px;
}
.menu-link:hover {
  color: #e31e24;
}
.menu-item.language .menu-link {
  background: #e31e24;
  color: white;
  border-radius: 4px;
  margin-left: 10px;
  padding: 8px 15px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  z-index: 999;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: #f8f8f8;
  color: #e31e24;
  border-left-color: #e31e24;
}
.dropdown-menu a.active {
  background: #f8f8f8;
  color: #e31e24;
  border-left-color: #e31e24;
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ============== YÖNETİM SAYFASI ÖZEL STYLLERİ ============== */
.policy-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}
.hero-content nav[aria-label="breadcrumb"] {
  margin-bottom: 20px;
}
.hero-content nav ol {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}
.hero-content nav a {
  color: #fff;
  text-decoration: none;
}
.hero-content nav a:hover {
  text-decoration: underline;
}
.hero-content nav li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  opacity: 0.8;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.section-header h2 {
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 18px;
  color: var(--color-text-light);
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.accordion-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 25px 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}
.accordion-header:hover {
  background-color: var(--color-bg-light);
}
.accordion-icon {
  transition: transform 0.3s var(--transition-ease);
  stroke-width: 2.5px;
  color: var(--color-primary);
}
.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--transition-ease), padding 0.4s ease;
}
.accordion-content p {
  padding: 0 20px 25px;
  font-size: 17px;
  color: var(--color-text-light);
}

/* ============== FOOTER & CTA STYLLERİ ============== */
.quick-cta {
  background-color: #3a3a3a;
  padding: 60px 0;
}
.quick-cta .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cta-box {
  background-color: #4f4f4e;
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}
.cta-box:hover,
.cta-box:focus-visible {
  background-color: #e56f15;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
.cta-icon {
  margin-bottom: 20px;
}
.cta-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: #ffffff;
}
.cta-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}
.cta-box p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.site-footer {
  background-color: #1f1f1f;
  color: #a0a0a0;
  padding: 80px 0 0;
  font-size: 15px;
}
.footer-main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-col ul a:hover {
  color: var(--color-primary);
}
.footer-social {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #3a3a3a;
}
.footer-social a {
  color: #a0a0a0;
  margin: 0 12px;
  transition: color 200ms ease, transform 200ms ease;
  display: inline-block;
}
.footer-social a:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}
.footer-social svg {
  width: 24px;
  height: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 13px;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  margin-left: 20px;
}

/* ============== ANİMASYON & RESPONSIVE STYLES ============== */
.anim {
  transition: opacity 700ms var(--transition-ease),
    transform 700ms var(--transition-ease);
}
.anim.fade-up {
  opacity: 0;
  transform: translateY(40px);
}
.anim.is-inview {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .anim {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }
  .quick-cta .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  .nav-menu {
    display: none;
  }
  .policy-hero {
    height: 350px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .quick-cta .container {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* ============== DİL SEÇİCİ STİLLERİ ============== */
.language-selector {
  position: relative;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e31e24;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 80px;
  justify-content: space-between;
}

.current-lang:hover {
  background: #c41a1f;
}

.flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.current-lang svg {
  transition: transform 0.3s ease;
}

.language-selector.active .current-lang svg {
  transform: rotate(180deg);
}

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
  border: 1px solid #eee;
}

.language-selector:hover .lang-options,
.language-selector.active .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.lang-option:hover {
  background: #f8f8f8;
  color: #e31e24;
  border-left-color: #e31e24;
}
