/* === Temel Sıfırlama ve Değişkenler === */
:root {
  /* Renkler */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-bg: #f6f6f6;
  --color-surface: #ffffff;
  --color-text: #222222;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;

  /* Boyutlar */
  --nav-height: 110px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 9999px;

  /* Font */
  --font-main: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Geçişler */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Konteyner */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Ortak dalga animasyonu */
@keyframes hero-wave {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(8px) scaleY(1.3);
  }
}

/* Yardımcı sınıflar */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* === NAV Bileşeni === */

/* NAV dış sarmalayıcı: yuvarlak köşeli kart görünümü */
.nav-wrapper {
  position: sticky;
  top: 70px;
  z-index: 1000;
  padding: 0 12px;
}

.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: var(--nav-height);
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); /* yuvarlak / pill köşeler */
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.08);
}

/* Logo (sol üstte, PNG resim) */
.nav__logo {
  margin-left: 0;
  margin-right: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

/* Masaüstü menü */
.nav__menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav__menu-footer {
  display: none;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #111827;
}

.nav__link--active {
  color: #111827;
  font-weight: 500;
}

/* Açılır menü (Hizmetlerimiz) */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.nav__item--open > .nav__dropdown,
.nav__item:hover > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hizmetlerimiz kart dropdown */
.nav__dropdown--services {
  top: calc(100% + 52px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 340px;
  padding: 26px 28px;
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.nav__item--open > .nav__dropdown--services,
.nav__item:hover > .nav__dropdown--services {
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown--services::before {
  content: '';
  position: absolute;
  top: -52px;
  left: 0;
  width: 100%;
  height: 52px;
}

.nav__dropdown-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #222222;
  transition: background-color var(--transition-fast);
}

.nav__dropdown-card:hover,
.nav__dropdown-card:focus-visible {
  background-color: #f3f4f6;
}

.nav__dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #ffffff;
  color: #222222;
  flex-shrink: 0;
}

.nav__dropdown-icon svg {
  width: 18px;
  height: 18px;
}

.nav__dropdown-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__dropdown-body strong {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
}

.nav__dropdown-body span {
  font-size: 12px;
  color: #6b7280;
}

/* Sağ ikonlar (user, sepet, menü) */
.nav__actions {
  margin-left: 80px;
  margin-right: 60px;
  transform: translateX(-24px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav__icon:hover,
.nav__icon:focus-visible {
  background-color: transparent;
}

.nav__icon svg {
  width: 22px;
  height: 22px;
}

/* User ikonu: hover'da açık gri daire */
.nav__icon--user {
  border-radius: 50%;
  color: #222222;
}

.nav__icon--user:hover,
.nav__icon--user:focus-visible {
  background-color: #f3f4f6;
  color: #222222;
}

/* Sepet ikonu: hover'da açık gri daire */
.nav__icon--cart {
  border-radius: 50%;
  color: #222222;
}

.nav__icon--cart:hover,
.nav__icon--cart:focus-visible {
  background-color: #f3f4f6;
  color: #222222;
}

/* Tooltip */
.nav__tooltip {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  background-color: #222222;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  width: 420px;
  height: 52px;
}

.nav__cart-dropdown {
  position: absolute;
  top: calc(100% + 52px);
  right: 0;
  width: 420px;
  padding: 20px;
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  pointer-events: none;
  z-index: 1001;
}

.nav__cart-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  transform: rotate(45deg);
  border-radius: 2px;
}

.nav__icon--cart:hover .nav__cart-dropdown,
.nav__icon--cart:focus-visible .nav__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__cart-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 15px;
}

.nav__cart-header strong {
  font-weight: 600;
  color: #222222;
}

.nav__cart-header span {
  color: #6b7280;
}

.nav__cart-empty {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  padding: 20px 0;
}

.nav__cart-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 16px 0;
}

.nav__cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 16px;
}

.nav__cart-footer span {
  color: #6b7280;
}

.nav__cart-footer strong {
  font-weight: 600;
  color: #222222;
}

.nav__cart-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Genel butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn--primary {
  background-color: #222222;
  color: #ffffff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #000000;
}

.btn--secondary {
  background-color: #f3f4f6;
  color: #222222;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: #e5e7eb;
}

.btn--pill {
  border-radius: 9999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  width: 165px;
  min-height: 44px;
}

.btn--outline {
  background-color: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: #f3f4f6;
}

/* Menü butonu (mobil) */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: #222222;
}

.nav__toggle:hover,
.nav__toggle:focus-visible {
  background-color: #f3f4f6;
}

.nav__toggle svg {
  width: 22px;
  height: 22px;
  transition: transform var(--transition-normal);
}

.nav--open .nav__toggle svg {
  transform: rotate(180deg);
}

/* === Tablet ve Mobil (1024px altı) === */
@media (max-width: 1023px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav__logo {
    margin-left: 0;
    margin-right: 0;
  }

  .nav__actions {
    margin-left: 0;
    margin-right: 60px;
    transform: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    display: none;
    position: fixed;
    top: calc(70px + var(--nav-height) + 20px);
    left: 36px;
    right: 36px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  }

  .nav--open .nav__menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__menu-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .nav__menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }

  .nav__socials {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #222222;
    transition: background-color var(--transition-fast);
  }

  .nav__socials a:hover,
  .nav__socials a:focus-visible {
    background-color: #f3f4f6;
  }

  .nav__socials svg {
    width: 22px;
    height: 22px;
  }

  .nav__copyright {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
  }

  /* Mobilde açılır menü */
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    border-radius: 0;
    margin-top: 4px;
    margin-left: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
  }

  .nav__item--open > .nav__dropdown {
    max-height: 300px;
  }

  /* Mobilde sepet dropdown */
  .nav__cart-dropdown {
    position: fixed;
    top: calc(70px + var(--nav-height) + 20px);
    left: 36px;
    right: 36px;
    width: auto;
    max-width: none;
    transform: translateY(-8px);
  }

  .nav__icon--cart:hover .nav__cart-dropdown,
  .nav__icon--cart:focus-visible .nav__cart-dropdown {
    transform: translateY(0);
  }
  .nav__cart-dropdown::before {
    right: 18px;
    margin-right: 0;
  }

  /* Mobilde Hizmetlerimiz kartı */
  .nav__dropdown--services {
    display: none;
    position: static;
    width: auto;
    padding: 0;
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    margin-left: 0;
    transform: none;
    max-height: none;
    overflow: visible;
  }

  .nav__item--open > .nav__dropdown--services,
  .nav__item:hover > .nav__dropdown--services {
    width: 100%;
    transform: none;
  }

  .nav__item--open > .nav__dropdown--services {
    display: block;
    padding: 8px;
    margin-top: 8px;
  }

  .nav__dropdown-card {
    justify-content: center;
    padding: 10px;
  }

  .nav__dropdown-card:hover,
  .nav__dropdown-card:focus-visible {
    background-color: transparent;
  }

  .nav__dropdown-body {
    align-items: center;
  }

  .nav__dropdown-body span {
    display: none;
  }

  .nav__dropdown-icon {
    display: none;
  }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .nav__cart-dropdown {
    position: absolute;
    top: calc(100% + 52px);
    left: auto;
    right: 0;
    width: 420px;
    max-width: none;
    transform: translateY(-8px);
  }

  .nav__icon--cart:hover .nav__cart-dropdown,
  .nav__icon--cart:focus-visible .nav__cart-dropdown {
    transform: translateY(0);
  }
  .nav__cart-dropdown::before {
    right: 18px;
    margin-right: 0;
  }
}

/* === Küçük telefonlar === */
@media (max-width: 480px) {
  .nav {
    padding: 0 14px;
  }

  .nav__logo-img {
    width: 40px;
    height: 40px;
  }
}
/* === Footer (tüm sayfalar için ortak) === */
.site-footer {
  position: relative;
  background-color: #f5f5f5;
  color: #222222;
}

.footer__wave {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  line-height: 0;
  background-color: #ffffff;
}

.footer__wave svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 80;
}

.footer__wave-path {
  fill: #f5f5f5;
  animation: hero-wave 4s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Newsletter */
.newsletter {
  padding: 48px 12px 80px;
  text-align: center;
}

.newsletter__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #6b7280;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.newsletter__icon svg {
  width: 28px;
  height: 28px;
  transform-origin: top center;
  animation: bell-swing 3s ease-in-out infinite;
}

@keyframes bell-swing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(10deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(6deg); }
  40% { transform: rotate(-6deg); }
  50% { transform: rotate(0); }
}

.newsletter__title {
  font-size: 22px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 20px;
}

.newsletter__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 40px;
  text-align: center;
}

.newsletter__desc-line {
  white-space: nowrap;
}

.newsletter__desc-line2 {
  display: block;
}

.newsletter__form {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.newsletter__input {
  width: 300px;
  padding: 20px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter__input::placeholder {
  color: #9ca3af;
}

.newsletter__input:focus {
  border-color: #d1d5db;
}

.newsletter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 28px;
  background-color: #222222;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.newsletter__button:hover,
.newsletter__button:focus-visible {
  background-color: #000000;
}

.newsletter__button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Footer main */
.footer__main {
  padding: 0 12px 104px;
}

.footer__container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  align-items: start;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 20px 0;
  border-top: 1px solid #e5e7eb;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  display: inline-flex;
}

.footer__logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.footer__description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #222222;
  transition: opacity 0.2s ease;
}

.footer__socials a:hover,
.footer__socials a:focus-visible {
  opacity: 0.7;
}

.footer__socials svg {
  width: 20px;
  height: 20px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(max-content, 1fr));
  gap: 60px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__heading {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 14px;
  color: #6b7280;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #111827;
}

/* Footer bottom */
.footer__bottom {
  padding: 0 12px 32px;
}

.footer__bottom-container {
  text-align: center;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px 0;
  border-top: 1px solid #e5e7eb;
}

.footer__bottom p {
  font-size: 13px;
  color: #9ca3af;
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top__label {
  background: #ffffff;
  color: #444444;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 22px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.scroll-top:hover .scroll-top__label,
.scroll-top:focus-within .scroll-top__label {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top__icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.scroll-top:hover .scroll-top__icon,
.scroll-top:focus-within .scroll-top__icon {
  transform: scale(1.08);
}

.scroll-top__icon svg {
  color: #444444;
  stroke: #444444;
}

/* WhatsApp button */
.wp-btn {
  position: fixed;
  left: 24px;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
  text-decoration: none;
}

.wp-btn__label {
  background: #ffffff;
  color: #444444;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 22px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.wp-btn:hover .wp-btn__label,
.wp-btn:focus-visible .wp-btn__label {
  opacity: 1;
  transform: translateY(0);
}

.wp-btn__icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.wp-btn__icon svg {
  color: #25d366;
  fill: #25d366;
}

.wp-btn:hover .wp-btn__icon,
.wp-btn:focus-visible .wp-btn__icon {
  transform: scale(1.08);
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer__column {
    align-items: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
  }

  .footer__description {
    margin-right: auto;
    margin-left: auto;
  }

  .footer__socials {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .newsletter {
    padding: 40px 12px 56px;
  }

  .newsletter__container,
  .footer__container,
  .footer__bottom-container {
    width: 100%;
    padding: 0 16px;
  }

  .newsletter__desc-line {
    white-space: normal;
  }

  .footer__container {
    padding-top: 64px;
  }

  .footer__bottom-container {
    padding-top: 24px;
  }

  .newsletter__form {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .newsletter__input {
    width: 100%;
  }

  .newsletter__button {
    width: 100%;
  }

  .footer__main {
    padding: 40px 12px 72px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer__column {
    align-items: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
  }

  .footer__description {
    margin-right: auto;
    margin-left: auto;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bottom {
    padding: 0 12px 48px;
  }

  .wp-btn {
    left: 16px;
    bottom: 32px;
  }

  .scroll-top {
    right: 16px;
    bottom: 32px;
  }
}

@media (max-width: 480px) {
  .footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__column {
    gap: 14px;
  }
}
/* === Kurumsal Sayfası Özel Stilleri === */

.page-hero {
  position: relative;
  background-color: #f5f5f5;
  padding: 200px 0 200px;
  text-align: center;
  overflow: hidden;
}

.page-hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  margin-bottom: 32px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
}

.page-hero__title {
  font-size: 30px;
  font-weight: 500;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 28px;
}

.page-hero__subtitle {
  max-width: 620px;
  margin: 0 auto 44px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.page-hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero__wave {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  line-height: 0;
}

.page-hero__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero__wave-path {
  fill: #ffffff;
  animation: hero-wave 4s ease-in-out infinite;
  transform-origin: center bottom;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 130px 0 140px;
  }

  .page-hero__title {
    font-size: 28px;
  }

  .page-hero__subtitle {
    font-size: 14px;
  }

  .page-hero__buttons {
    gap: 12px;
  }
}

.corporate-page { background: #fff; }

.corporate-intro, .corporate-values, .corporate-stats, .corporate-cta { width: min(100% - 48px, 1120px); margin: 0 auto; }

.corporate-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 86px; padding: 120px 0; }

.corporate-eyebrow { display: inline-flex; align-items: center; min-height: 32px; padding: 0 16px; border: 1px solid #e2e2e2; border-radius: 999px; color: #444; font-size: 12px; font-weight: 500; }

.corporate-intro__content h2 { max-width: 510px; margin: 22px 0; color: #111827; font-size: 30px; font-weight: 500; line-height: 1.35; }

.corporate-intro__content p { max-width: 520px; margin: 0 0 16px; color: #6b7280; font-size: 14px; line-height: 1.8; }

.corporate-intro__link { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; color: #111827; font-size: 14px; font-weight: 500; }

.corporate-intro__visual { position: relative; display: grid; min-height: 345px; place-items: center; overflow: hidden; border-radius: 24px; background: #f7f7f7; }

.corporate-intro__shape { position: absolute; width: 220px; height: 220px; border: 1px solid #e6e6e6; border-radius: 50%; }

.corporate-intro__shape--one { top: -96px; right: -70px; }

.corporate-intro__shape--two { bottom: -120px; left: -80px; width: 270px; height: 270px; }

.corporate-intro__mark { display: grid; width: 130px; height: 130px; place-items: center; border-radius: 50%; background: #202020; box-shadow: 0 18px 35px rgba(0, 0, 0, .14); color: #fff; font-size: 58px; font-weight: 600; }

.corporate-intro__card { position: absolute; right: 29px; bottom: 28px; display: grid; gap: 5px; min-width: 196px; padding: 16px 18px; border: 1px solid #ededed; border-radius: 14px; background: rgba(255, 255, 255, .94); box-shadow: 0 10px 24px rgba(0, 0, 0, .06); }

.corporate-intro__card strong { color: #222; font-size: 14px; font-weight: 500; }

.corporate-intro__card span { color: #7b7b7b; font-size: 11px; }

.corporate-purpose { width: min(100% - 48px, 1000px); margin: 0 auto; padding: 0 0 100px; }

.corporate-purpose__row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 82px; min-height: 320px; padding: 72px 0; border-bottom: 1px solid #eeeeee; }

.corporate-purpose__row:first-child { padding-top: 72px; }

.corporate-purpose__row:last-child { border-bottom: 0; }

.corporate-purpose__row--reverse .corporate-purpose__visual { order: 2; }

.corporate-purpose__visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; min-height: 215px; overflow: hidden; border-radius: 22px; background: #f7f7f7; }

.corporate-purpose__number { color: #e7e7e7; font-size: 49px; font-weight: 600; line-height: 1; }

.corporate-purpose { padding-bottom: 90px; }
.corporate-purpose__icon { display: grid; width: 70px; height: 70px; place-items: center; border-radius: 15px; background: #fff; box-shadow: 0 7px 16px rgba(0, 0, 0, .09); color: #222; }

.corporate-purpose__icon svg { width: 32px; height: 32px; }

.corporate-purpose__content h2 { margin: 18px 0 22px; color: #111827; font-size: 20px; font-weight: 500; line-height: 1.4; }

.corporate-purpose__content p { margin: 22px 0 26px; color: #6b7280; font-size: 14px; line-height: 1.65; }

.corporate-purpose__content ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; color: #444; font-size: 13.5px; }

.corporate-purpose__content li { display: flex; gap: 12px; align-items: flex-start; }

.corporate-purpose__content li::before { content: '•'; color: #111827; font-size: 15px; line-height: 1; }

.corporate-values { width: min(100% - 48px, 1200px); padding: 92px 0 120px; border-top: 1px solid #eee; }

.corporate-section-heading { max-width: 625px; margin: 0 auto 50px; text-align: center; }

.corporate-section-heading h2, .corporate-cta h2 { margin: 18px 0 0; color: #111827; font-size: 28px; font-weight: 500; }

.corporate-section-heading p, .corporate-cta p { margin: 13px 0 0; color: #6b7280; font-size: 14px; line-height: 1.7; }

.corporate-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.corporate-value { display: flex; flex-direction: column; align-items: center; padding: 30px 27px; border: 1px solid #ededed; border-radius: 18px; background: #fff; text-align: center; }

.corporate-value__icon { display: grid; width: 49px; height: 49px; place-items: center; border-radius: 13px; background: transparent; border: 1px solid #e2e8f0; color: #222; }

.corporate-value__icon svg { width: 25px; height: 25px; }

.corporate-value h3 { margin: 22px 0 11px; color: #222; font-size: 18px; font-weight: 500; }

.corporate-value p { margin: 0; color: #6b7280; font-size: 13px; line-height: 1.75; }

.corporate-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 76px; overflow: hidden; border: 1px solid #e6e6e6; border-radius: 18px; }

.corporate-stat { display: grid; min-height: 108px; place-content: center; padding: 14px; border-right: 1px solid #eeeeee; text-align: center; }

.corporate-stat:last-child { border-right: 0; }

.corporate-stat strong { color: #111827; font-size: 27px; font-weight: 500; }

.corporate-stat span { margin-top: 6px; color: #9ca3af; font-size: 13px; }

.corporate-cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 105px 0 125px; }

.corporate-cta h2 { max-width: 640px; }

.corporate-cta p { max-width: 630px; }

.corporate-cta .btn { flex: 0 0 auto; }

@media (max-width: 767px) {
  .corporate-intro, .corporate-purpose, .corporate-values, .corporate-stats, .corporate-cta { width: min(100% - 32px, 1120px); }
  .corporate-intro { grid-template-columns: 1fr; gap: 48px; padding: 76px 0; }
  .corporate-intro__content { text-align: center; }
  .corporate-intro__content h2, .corporate-intro__content p { margin-right: auto; margin-left: auto; }
  .corporate-intro__visual { min-height: 295px; }
  .corporate-purpose { padding-bottom: 65px; }
  .corporate-purpose__row, .corporate-purpose__row--reverse { grid-template-columns: 1fr; gap: 36px; padding: 52px 0; }
  .corporate-purpose__row:first-child { padding-top: 52px; }
  .corporate-purpose__row--reverse .corporate-purpose__visual { order: 0; }
  .corporate-purpose__visual { min-height: 175px; }
  .corporate-purpose__content { text-align: center; }
  .corporate-purpose__content p { margin-right: auto; margin-left: auto; }
  .corporate-purpose__content ul { width: fit-content; margin: 0 auto; text-align: left; }
  .corporate-values { padding: 65px 0 90px; }
  .corporate-section-heading { margin-bottom: 32px; }
  .corporate-section-heading h2, .corporate-cta h2 { font-size: 24px; }
  .corporate-values__grid { grid-template-columns: 1fr; }
  .corporate-stats { grid-template-columns: 1fr; margin-bottom: 52px; }
  .corporate-stat:nth-child(2) { border-right: 0; }
  .corporate-stat:nth-child(-n + 2) { border-bottom: 1px solid #eeeeee; }
  .corporate-cta { flex-direction: column; align-items: flex-start; padding: 72px 0 85px; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .corporate-intro {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    text-align: center !important;
    padding: 76px 0 !important;
  }

  .corporate-intro__content {
    padding-left: 0 !important;
    text-align: center !important;
  }

  .corporate-intro__content h2, 
  .corporate-intro__content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .corporate-intro__visual {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    min-height: 320px !important;
  }

  .nav-wrapper {
    padding: 0 !important;
  }

  .corporate-intro, 
  .corporate-purpose, 
  .corporate-values, 
  .corporate-cta { 
    width: calc(100% - 48px) !important; 
    max-width: 1400px !important; 
    margin-left: auto !important; 
    margin-right: auto !important; 
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .corporate-stats {
    width: calc(100% - 48px) !important;
    max-width: 480px !important;
    grid-template-columns: 1fr !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    border-radius: 24px !important;
    border: 1px solid #eeeeee !important;
    box-sizing: border-box !important;
  }

  .corporate-stat {
    border-right: 0 !important;
    border-bottom: 1px solid #eeeeee !important;
  }

  .corporate-stat:last-child {
    border-bottom: 0 !important;
  }

  .corporate-purpose__row,
  .corporate-purpose__row--reverse {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .corporate-purpose__row--reverse .corporate-purpose__visual {
    order: 0 !important;
  }

  .corporate-purpose__content {
    text-align: center !important;
  }

  .corporate-purpose__content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .corporate-purpose__content ul {
    justify-items: start !important;
    width: fit-content !important;
    margin: 0 auto !important;
    text-align: left !important;
  }
}

@media (max-width: 640px) {
  .nav-wrapper {
    padding: 0 !important;
  }

  .corporate-intro, 
  .corporate-purpose, 
  .corporate-values, 
  .corporate-cta { 
    width: calc(100% - 48px) !important; 
    max-width: 1400px !important; 
    margin-left: auto !important; 
    margin-right: auto !important; 
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .corporate-stats {
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    border-radius: 24px !important;
    box-sizing: border-box !important;
  }
}

.nav__dropdown--services {
  width: 380px;
}

.nav__dropdown-body span {
  white-space: nowrap;
}
