:root {
  --bg: #ffffff;
  --bg2: #fcfaf8;
  --panel: #ffffff;
  --panel2: #faf8f6;
  --text: #332f2c;
  --muted: rgba(51, 47, 44, 0.7);
  --line: rgba(51, 47, 44, 0.08);
  --brand: #b58251;
  /* Sıcak Vizon/Toprak tonu */
  --brand2: #d4a373;
  /* Daha açık altın tonu */
  --accent: #e67e22;
  /* Butonlar için canlılık katan sıcak bir turuncu-bakır */
  --darkbar: #1c1917;
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
  --shadow2: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.5;
}

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  transform: translateY(-150%);
  transition: transform 150ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
}

.siteHeader.is-scrolled .navbar {
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.08);
}

.topbar {
  background: var(--darkbar);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
}

.topbar__left {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar__link {
  color: rgba(255, 255, 255, 0.92);
}

.topbar__link:hover {
  text-decoration: underline;
}

.topbar__sep {
  opacity: 0.6;
}

.topbar__right {
  opacity: 0.9;
  white-space: nowrap;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__desktop {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
}

.nav__toggle:hover {
  background: rgba(15, 23, 42, 0.03);
}

.nav__toggleIcon {
  width: 18px;
  height: 12px;
  display: inline-block;
  background: linear-gradient(var(--text), var(--text)) left 0 top 0 / 100% 2px no-repeat,
    linear-gradient(var(--text), var(--text)) left 0 center / 100% 2px no-repeat,
    linear-gradient(var(--text), var(--text)) left 0 bottom / 100% 2px no-repeat;
  opacity: 0.9;
}

.nav__panel {
  position: absolute;
  right: 1rem;
  top: 70px;
  width: min(520px, calc(100% - 2rem));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.nav__link {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(15, 23, 42, 0.9);
  border: 1px solid transparent;
}

.nav__link:hover {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.08);
}

.nav__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px 2px;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
}

.chip {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: rgba(15, 23, 42, 0.9);
}

.lang {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 4px;
}

.lang__btn {
  border: 0;
  background: transparent;
  color: rgba(15, 23, 42, 0.8);
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}

.lang__btn.is-active {
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

/* Hero */
.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/hero.jpeg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero__inner {
  position: relative;
  padding: 64px 0;
}

.heroFade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--bg));
}

.heroCard {
  width: min(640px, 100%);
  padding: 32px 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  /* Saf beyaz yerine hafif şeffaf */
  backdrop-filter: blur(10px);
  /* Arkadaki fotoğrafı hafifçe bulanıklaştırarak derinlik katar */
  border: 1px solid rgba(181, 130, 81, 0.1);
  /* Çok ince bir vizon çerçeve */
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heroTitle {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  font-weight: 800;
}

.heroAccent {
  color: var(--accent);
}

.heroText {
  margin: 0 0 18px;
  color: #4a4a4a;
  ;
  font-size: 13px;
}

.heroActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.btn:hover {
  background: rgba(15, 23, 42, 0.03);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(37, 99, 235, 0.22);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.18);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  background: #ffffff;
}

.btn--accent {
  background: var(--accent);
  border-color: rgba(245, 158, 11, 0.65);
  color: #111827;
  font-weight: 700;
}

.btn--accent:hover {
  filter: brightness(1.02);
}

.btn--dark {
  background: rgba(17, 24, 39, 0.75);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn--dark:hover {
  background: rgba(17, 24, 39, 0.85);
}

/* Slider */
.slider {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

.slide__media {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  background: #f1f5f9;
}

.slide__body {
  padding: 16px 16px 18px;
}

.slide__title {
  margin: 0 0 4px;
  font-size: 18px;
}

.slide__text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.slide__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.slide__link:hover {
  background: rgba(255, 255, 255, 0.07);
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.02);
}

.iconBtn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.iconBtn:hover {
  background: rgba(15, 23, 42, 0.03);
}

.dots {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.10);
  cursor: pointer;
}

.dot.is-active {
  background: rgba(37, 99, 235, 0.85);
  border-color: rgba(37, 99, 235, 0.65);
}

/* Sections */
.section {
  padding: 38px 0;
}

.section--muted {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  margin-bottom: 18px;
}

.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.section__title {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.section__desc {
  margin: 0;
  color: var(--muted);
  max-width: 85ch;
  font-size: 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.14);
}

.card__img {
  height: 140px;
  width: 100%;
  display: block;
  object-fit: cover;
  background: #f1f5f9;
}

.card__body {
  padding: 12px 12px 14px;
}

.card__title {
  margin: 0 0 4px;
  font-size: 15px;
}

.card__meta {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  font-size: 12px;
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  color: rgba(15, 23, 42, 0.86);
  cursor: pointer;
}

.pill:hover {
  background: rgba(15, 23, 42, 0.03);
}

.pill.is-active {
  background: rgba(37, 99, 235, 0.10);
  border-color: rgba(37, 99, 235, 0.18);
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.product__thumb {
  height: 150px;
  width: 100%;
  display: block;
  object-fit: cover;
  background: #f1f5f9;
}

.product__body {
  padding: 12px 12px 14px;
}

.product__title {
  margin: 0 0 4px;
  font-size: 15px;
}

.product__text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12.5px;
}

.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.02);
  color: rgba(15, 23, 42, 0.78);
}

.link {
  color: rgba(37, 99, 235, 0.95);
}

.link:hover {
  text-decoration: underline;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

.contact__card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 14px;
}

.contact__title {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.contact__text {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12.5px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12.5px;
}

.list li {
  margin: 6px 0;
}

.form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 14px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.field__label {
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}

.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  padding: 11px 12px;
  color: var(--text);
  outline: none;
}

.field__input:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.field__input--area {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Modal gallery */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.60);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: max(content);
  max-width: min(90vw, 500px);
  height: auto;
  max-height: 85vh;
  margin: 40px auto;
  padding: 24px 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.4);
  display: flex;
  flex-direction: column;
}

.modal__title {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.modal__body {
  position: relative;
  flex: 1;
  margin-top: 4px;
}

.modal__img {
  max-width: 100%;
  max-height: 65vh;
  /* ekranın %70’i kadar */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  background: #f1f5f9;
}

.modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal__nav--prev {
  left: 10px;
}

.modal__nav--next {
  right: 10px;
}

.modal__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.modal__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.16);
  cursor: pointer;
}

.modal__dot.is-active {
  background: rgba(37, 99, 235, 0.9);
  border-color: rgba(37, 99, 235, 0.7);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .modal__dialog {
    margin: 30px 12px;
    height: 70vh;
  }
}

/* Footer */
.footer {
  padding: 26px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.footer__brand {
  margin: 0;
  font-weight: 700;
}

.footer__muted {
  margin: 6px 0 0;
  color: rgba(229, 231, 235, 0.6);
  font-size: 12px;
}

.footer__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__link {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: rgba(15, 23, 42, 0.8);
}

.footer__link:hover {
  border-color: rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.03);
}

/* Responsive */
@media (max-width: 980px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__desktop {
    display: none;
  }

  .grid,
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar__right {
    display: none;
  }

  .nav__list {
    grid-template-columns: 1fr;
  }

  .grid,
  .products {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* styles.css dosyasının en altına yapıştırın */

/* Hakkımızda ve Çocuk Güvenliği kutularının başlıklarını ve içeriklerini tamamen eşitler */
#kurumsal .section__title,
#cocuk-guvenligi .section__title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 22px !important;
  /* Başlık boyutlarını eşitler */
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
}

/* Kutuların içindeki tüm düz yazıları, listeleri ve alt elemanları birebir aynı yapar */
#kurumsal .contact__card p,
#cocuk-guvenligi .contact__card .list li {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 13px !important;
  /* Sitenin orijinal küçük/modern yazı boyutu */
  line-height: 1.6 !important;
  /* Satır ferahlığını eşitler */
  color: var(--text) !important;
  /* Renk tonunu eşitler */
  margin-bottom: 12px !important;
  font-weight: 400 !important;
}

/* Liste elemanlarının iç boşluk hizalamasını düzeltir */
#cocuk-guvenligi .contact__card .list {
  padding-left: 18px !important;
  margin: 0 !important;
}

#cocuk-guvenligi .contact__card .list li {
  margin-bottom: 6px !important;
}