/* === 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% {
    d: path("M0,40 C180,80 360,0 540,40 C720,80 900,0 1080,40 C1260,80 1440,0 1440,40 L1440,80 L0,80 Z");
  }

  50% {
    d: path("M0,20 C180,0 360,60 540,20 C720,0 900,60 1080,20 C1260,0 1440,60 1440,20 L1440,80 L0,80 Z");
  }
}

/* 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;
}

.nav {
  display: flex;
  align-items: center;
  position: relative;
  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);
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.08);
}

/* Logo (sol üstte, PNG resim) */
.nav__logo {
  flex: 1;
  margin-left: 0;
  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 {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}


.nav__menu-footer {
  display: none;
}

.nav__actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
}


.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: 0;
  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;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  pointer-events: none;
}

.nav__icon--user:hover .nav__tooltip,
.nav__icon--user:focus-visible .nav__tooltip {
  opacity: 1;
  visibility: visible;
}

/* Sepet dropdown */
.nav__icon--cart::after {
  content: '';
  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 {
    display: flex; justify-content: space-between;
  }

  .nav__logo {
    margin-left: 0;
    margin-right: 0;
  }

  .nav__actions {
    margin-left: 0;
    margin-right: 0;
    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: 13px;
  }

  .page-hero__buttons {
    gap: 12px;
  }
}

/* === Legal Content Section === */
.legal-content {
  padding: 80px 16px 100px;
  background-color: #ffffff;
}

.legal-content__container {
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-content__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #f0f0f0;
}

.legal-content__item:first-child {
  border-top: none;
}

.legal-content__item:last-child {
  border-bottom: none;
}

  .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: 13px;
  }

  .page-hero__buttons {
    gap: 12px;
  }
}

/* === Legal Content Section === */
.legal-content {
  padding: 80px 16px 100px;
  background-color: #ffffff;
}

.legal-content__container {
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-content__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #f0f0f0;
}

.legal-content__item:first-child {
  border-top: none;
}

.legal-content__item:last-child {
  border-bottom: none;
}

.legal-content__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #222222;
  margin-top: 2px;
}

.legal-content__body h3 {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 8px;
}

.legal-content__body p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .legal-content__item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .legal-content__number {
    margin: 0 auto 8px auto !important;
  }

  .legal-content__body {
    text-align: center !important;
    width: 100% !important;
  }

  .legal-content__body h3,
  .legal-content__body p {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .legal-content {
    padding: 56px 16px 72px;
  }

  .legal-content__item {
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
  }

  .legal-content__number {
    font-size: 12px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .nav-wrapper {
    padding: 0 !important;
  }

  .legal-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

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

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

  .legal-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

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

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

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