/**
 * Fouryapı — kurumsal ön yüz stilleri
 * Renkler: #07131a, #f5b82e, #ffffff, #f6f6f6, metin #1b1b1b
 */

/* =========================
   TOKENS
========================= */
:root {
  --color-primary: #f5b82e;
  --color-primary-hover: #e6a518;
  /* Açık zemin üzerinde WCAG AA metin kontrastı */
  --color-primary-text: #8a6608;
  --color-secondary: #0d2330;
  --color-dark: #07131a;
  --color-dark-2: #0b1a24;
  --color-surface: #f6f6f6;
  --color-border: rgba(7, 19, 26, 0.12);
  --color-text: #1b1b1b;
  --color-text-soft: #5c5c5c;
  --color-white: #ffffff;
  --color-success: #1f7a4d;
  --color-warning: #b7791f;
  --color-danger: #c0392b;

  --space-2: 2px;
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 12px rgba(7, 19, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 19, 26, 0.1);
  --shadow-lg: 0 12px 32px rgba(7, 19, 26, 0.14);
  --shadow-xl: 0 20px 48px rgba(7, 19, 26, 0.2);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --container: 1200px;
  --container-wide: 1360px;
  --container-narrow: 980px;

  --z-header: 50;
  --z-overlay: 80;
  --z-modal: 120;
  --z-whatsapp: 45;
  --z-dropdown: 90;

  --font-base: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-heading: "Montserrat", system-ui, -apple-system, sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 34px;
  --text-4xl: 42px;
  --text-5xl: 56px;

  /* Legacy aliases (geriye uyumluluk) */
  --color-bg-dark: var(--color-dark);
  --color-accent: var(--color-primary);
  --color-gray-light: var(--color-surface);
  --color-muted: var(--color-text-soft);
  --font: var(--font-base);
  --shadow-card: var(--shadow-md);
  --radius: var(--radius-md);
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.55;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
picture {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

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

/* =========================
   LAYOUT
========================= */
.container {
  width: min(var(--container-wide), calc(100% - 48px));
  margin-inline: auto;
}

.container-wide,
.section-container,
.hero-container {
  width: min(var(--container-wide), calc(100% - 48px));
  margin-inline: auto;
}

.container-narrow {
  width: min(var(--container-narrow), calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 991px) {
  .container,
  .container-wide,
  .container-narrow,
  .section-container,
  .hero-container {
    width: min(var(--container-wide), calc(100% - 32px));
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

/* =========================
   HEADER
========================= */
/* ——— Üst bar ——— */
.top-bar {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 0.65rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__name {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

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

.brand__tagline {
  font-size: 0.72rem;
  opacity: 0.92;
  letter-spacing: 0.02em;
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.top-bar__phone .icon {
  flex-shrink: 0;
}

/* ——— Butonlar ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* BEM + semantic button aliases */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-primary { background: var(--color-primary); color: var(--color-dark); border: 1px solid var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); }
.btn-secondary { background: var(--color-secondary); color: var(--color-white); border: 1px solid var(--color-secondary); }
.btn-secondary:hover { filter: brightness(1.06); }
.btn-outline { background: transparent; color: var(--color-text); border: 1px solid var(--color-border); }
.btn-outline:hover { background: rgba(7, 19, 26, 0.04); }
.btn-dark { background: var(--color-dark); color: var(--color-white); border: 1px solid var(--color-dark); }
.btn-dark:hover { background: var(--color-dark-2); }

.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.85);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
}
.btn--outline-dark:hover {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.btn--block {
  width: 100%;
}

/* ——— Ana navbar ——— */
.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.5vw, 28px);
  min-width: 0;
}

.main-nav__link {
  display: inline-block;
  padding: 0.45rem 0.1rem;
  font-size: clamp(0.62rem, 0.62vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .main-nav__link:hover,
  .main-nav__link.is-active {
    border-bottom-color: var(--color-accent);
  }
}

.has-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-muted);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-bg-dark);
  border-radius: 1px;
}


/* ——— Bölüm ortak ——— */
.section {
  padding-block: 88px;
}

.section--compact {
  padding-block: 72px;
}

.section--tight {
  padding-block: 56px;
}

.section--hero {
  padding-block: 0;
}

.section--flush {
  padding-block: 0;
}

.section--muted {
  background: var(--color-gray-light);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section__head--stack {
  align-items: flex-start;
}

.section__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.section__title--center {
  text-align: center;
}

.section__link {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
}

.section__link:hover {
  color: var(--color-accent);
}

.section__desc {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.section__desc--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ——— Hizmet kartları ——— */
.cards-row {
  display: grid;
  gap: 1.25rem;
}

.cards-row--5 {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card--service {
  border: 1px solid rgba(7, 19, 26, 0.06);
}

.card__icon {
  color: var(--color-bg-dark);
  margin-bottom: 0.85rem;
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.card__text {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.card__more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}

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

/* ——— Bölgeler ——— */
.section--regions {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 3.75rem 0;
}

.regions__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.eyebrow {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
}

.regions__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.regions__lead {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 28rem;
  font-size: 0.92rem;
}

.regions__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.region-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 184, 46, 0.2);
  border-radius: 8px;
  padding: 1rem 0.9rem;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.region-card__pin {
  color: var(--color-accent);
  display: flex;
  margin-bottom: 0.35rem;
}

.region-card__name {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.region-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.03em;
}

.region-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 184, 46, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.region-card__all-desc {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.region-card--all {
  border-color: rgba(245, 184, 46, 0.55);
  background: rgba(245, 184, 46, 0.1);
}

.regions__notice {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
}

/* ——— Projeler ——— */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.project-card {
  margin: 0;
}

.project-card__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.project-card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card__cap {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.project-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card--link:hover .project-card__cap {
  color: var(--color-accent);
}

.project-card--link .project-card__img {
  display: block;
}

/* ——— Hızlı aksiyon ——— */
.section--quick {
  padding-bottom: 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-card {
  background: var(--color-gray-light);
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem;
  border: 1px solid rgba(7, 19, 26, 0.06);
}

.quick-card__icon {
  color: var(--color-bg-dark);
  margin-bottom: 0.75rem;
}

.quick-card__title {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.quick-card__text {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.quick-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

/* ——— Teklif formu ——— */
.section--quote {
  margin-top: 2.5rem;
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 2.75rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.section--quote::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 46, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.quote__inner {
  position: relative;
  z-index: 1;
}

.quote__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.quote__flash {
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  max-width: 48rem;
}

.quote__flash--success {
  background: rgba(245, 184, 46, 0.2);
  color: #fff8e6;
  border: 1px solid rgba(245, 184, 46, 0.45);
}

.quote__flash--error {
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 120, 120, 0.4);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.quote-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .section--quote .quote-form__row {
    grid-template-columns: minmax(140px, 1fr) minmax(140px, 1fr) minmax(160px, 1.2fr) minmax(120px, 1fr) minmax(180px, 1.2fr) auto;
    align-items: end;
  }
}

.quote-form__control--textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
}

.quote-form__actions {
  display: flex;
  justify-content: flex-start;
}

.quote-form__actions .btn {
  min-width: 200px;
}

.quote-form__control {
  font-family: var(--font);
  font-size: 0.82rem;
  padding: 0.65rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

.quote-form__control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.quote-form__control:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

select.quote-form__control {
  cursor: pointer;
  color: var(--color-white);
  background-color: rgba(7, 19, 26, 0.35);
}

select.quote-form__control option {
  color: var(--color-text);
  background: var(--color-white);
}

/* ——— Footer üstü hızlı teklif bandı ——— */
/* =========================
   FOOTER
========================= */
.footer-quote-strip {
  background: linear-gradient(118deg, #0a1820 0%, #142a36 42%, #0d1a22 100%);
  color: var(--color-white);
  padding: 2rem 0;
  border-top: 1px solid rgba(245, 184, 46, 0.12);
}

.footer-quote-strip__inner {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 2.4fr);
  gap: 2rem;
  align-items: center;
}

.footer-quote-strip__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.footer-quote-strip__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.footer-quote-strip__desc {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
}

.footer-quote-strip__form {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) minmax(140px, 1.2fr) minmax(110px, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.footer-quote-strip__ctrl {
  font-family: var(--font);
  font-size: 0.8rem;
  padding: 0.62rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-text);
}

.footer-quote-strip__ctrl::placeholder {
  color: rgba(7, 19, 26, 0.45);
}

select.footer-quote-strip__ctrl {
  cursor: pointer;
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.96);
}

.footer-quote-strip__submit {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  white-space: nowrap;
}

.footer-quote-strip__submit:hover {
  filter: brightness(1.05);
}

/* Form sonrası isteğe bağlı WhatsApp (wa.me — yalnızca butonla) */
.form-whatsapp-followup {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(245, 184, 46, 0.14);
  border: 1px solid rgba(245, 184, 46, 0.38);
  max-width: 42rem;
}

.form-whatsapp-followup__prompt {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text);
}

.form-whatsapp-followup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-whatsapp-followup--hidden {
  display: none !important;
}

.section--quote .quote__head .form-whatsapp-followup {
  margin-top: 0.75rem;
}

.footer-quote-strip__wa {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  border-color: rgba(245, 184, 46, 0.45);
  background: rgba(0, 0, 0, 0.25);
}

.footer-quote-strip__wa .form-whatsapp-followup__prompt {
  color: rgba(255, 255, 255, 0.92);
}

.footer-quote-strip__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: #25d366;
  color: #fff;
  text-decoration: none;
}

.footer-quote-strip__wa-btn:hover {
  filter: brightness(1.06);
}

@media (max-width: 991px) {
  .footer-quote-strip__inner {
    grid-template-columns: 1fr;
  }
  .footer-quote-strip__form {
    grid-template-columns: 1fr 1fr;
  }
  .footer-quote-strip__submit {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 0;
  font-size: 0.88rem;
}

.footer-main {
  padding-bottom: 2rem;
}

.footer-main__grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr)) minmax(200px, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-map-wrap {
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 2rem;
}

.footer-brand .brand__name {
  font-size: 1.25rem;
}

.footer-about {
  margin: 0.75rem 0 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 22rem;
  font-size: 0.82rem;
}

.social {
  display: flex;
  gap: 0.5rem;
}

.social__link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-white);
}

.social__link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  align-items: flex-start;
}

.footer-contact__icon {
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-bottom__copy {
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0.25rem;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .cards-row--5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .regions__layout {
    grid-template-columns: 1fr;
  }
  .regions__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main__grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 640px) {
  .cards-row--5 {
    grid-template-columns: 1fr;
  }
  .regions__cards {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quote-form__row {
    grid-template-columns: 1fr;
  }
  .footer-main__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ——— Duyuru modalı (ana sayfa) ——— */
body.ann-modal-open {
  overflow: hidden;
}

.ann-modal[hidden] {
  display: none !important;
}

.ann-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ann-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 26, 0.55);
  cursor: pointer;
}

.ann-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 1.5rem 1.25rem;
  border: 1px solid rgba(7, 19, 26, 0.08);
}

.ann-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.ann-modal__close:hover {
  background: rgba(7, 19, 26, 0.06);
}

.ann-modal__title {
  margin: 0 2rem 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
}

.ann-modal__media {
  margin: 0 0 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.ann-modal__media img {
  display: block;
  width: 100%;
  height: auto;
}

.ann-modal__body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.ann-modal__body ul,
.ann-modal__body ol {
  padding-left: 1.25rem;
}

.ann-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.ann-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.ann-modal__btn--primary {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: rgba(7, 19, 26, 0.06);
}

.ann-modal__btn--primary:hover {
  filter: brightness(1.05);
}

.ann-modal__btn--quiet {
  background: transparent;
  color: var(--color-muted);
  border-color: rgba(7, 19, 26, 0.12);
}

.ann-modal__btn--quiet:hover {
  background: rgba(7, 19, 26, 0.04);
}

/* ——— Aşama 5: referans üst alan + landing + ek bölümler ——— */
.site-header {
  width: 100%;
  position: relative;
  z-index: 50;
  background: var(--color-white);
  border-bottom: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

/* Tam genişlik: logo viewport soluna yapışık; ortalanmış container yok */
.header-shell {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 104px;
  background: var(--color-white);
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: inherit;
}

.header-logo-panel {
  position: relative;
  flex-shrink: 0;
  width: clamp(220px, 16vw, 270px);
  min-width: 200px;
  max-width: 270px;
  min-height: 104px;
  align-self: stretch;
  margin-left: 0;
  left: 0;
  background: linear-gradient(135deg, #03111d 0%, #02101b 60%, #041827 100%);
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  /* Sağdaki beyaz alanın üzerine diagonal taşsın */
  z-index: 2;
}

.header-logo-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -52px;
  width: 84px;
  height: 100%;
  background: #03111d;
  clip-path: polygon(0 0, 100% 0, 40% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.header-logo-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  box-sizing: border-box;
  text-align: center;
}

.header-logo-image {
  display: block;
  max-width: 240px;
  max-height: 62px;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.logo-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22rem;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-word span {
  color: #fff;
}

.logo-word strong {
  color: #f5b82e;
}

.header-logo-slogan {
  display: block;
  font-size: 0.65rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  opacity: 0.88;
  max-width: 16rem;
}

.header-main {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Telefon + menü: yalnızca bu alan max-width ile hizalanır */
.header-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: calc(100% - 48px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.header-topline {
  min-height: 42px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  padding-right: 12px;
  box-sizing: border-box;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone__icon {
  flex-shrink: 0;
  color: var(--color-accent);
}

.header-quote-btn {
  height: 42px;
  padding: 0 24px;
  border-radius: 6px;
  background: #f5b82e;
  border: 1px solid #e3a61f;
  color: #07131a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(245, 184, 46, 0.3);
}

.header-nav-row {
  min-height: 62px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0;
  border-top: 1px solid rgba(7, 19, 26, 0.06);
}

.main-nav {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.main-nav__item {
  flex: 0 1 auto;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  /* Eski 991px nav bloğu ile çakışmayı önle — masaüstü site (~980px) modunda menü görünür */
  .main-nav {
    display: block;
    position: static;
    width: auto;
    max-height: none !important;
    overflow: visible !important;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .main-nav__list {
    flex-direction: row;
    padding: 0;
  }

  /* Alt çizgi (::after) için kısa nefes — kalın çift çizgi oluşturmaz */
  .header-nav-row {
    padding-bottom: 8px;
    box-sizing: border-box;
  }

  .main-nav__list {
    overflow: visible;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 2.1vw, 36px);
  }

  .main-nav__item-head {
    align-items: center;
  }

  /* Desktop: ferah corporate navbar — ortalı liste, alt çizgi pseudo-element */
  .main-nav__link {
    position: relative;
    padding: 10px 3px;
    font-size: clamp(10.5px, 0.64vw, 12px);
    font-weight: 700;
    letter-spacing: 0.02em;
    border-bottom: none;
  }

  .main-nav__link::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: -12px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.18s ease;
  }

  .main-nav__link:hover::after,
  .main-nav__link.is-active::after {
    background: var(--color-accent);
  }

  .main-nav__sub .main-nav__link::after {
    display: none;
  }
}

/* Tablet / mobil «masaüstü sitesi» (~768–1100px): menü taşmasın, uç öğeler görünsün */
@media (min-width: 768px) and (max-width: 1100px) {
  .header-main-inner {
    width: calc(100% - 12px);
  }

  .header-logo-panel {
    width: clamp(148px, 18vw, 200px);
    min-width: 148px;
  }

  .header-contact {
    margin-right: 0;
    gap: 0.55rem;
  }

  .header-quote-btn {
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .header-nav-row {
    justify-content: center;
    padding-bottom: 6px;
  }

  .main-nav {
    width: 100%;
    max-width: 100%;
  }

  .main-nav__list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2px;
    column-gap: clamp(6px, 0.9vw, 12px);
    width: 100%;
    padding: 0 2px 4px;
    box-sizing: border-box;
  }

  .main-nav__link {
    font-size: clamp(9px, 0.95vw, 10.5px);
    padding: 5px 2px;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .main-nav__chevron svg {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    flex-direction: column;
  }

  .header-shell {
    min-height: 0;
  }

  .header-logo-panel {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex-basis: auto;
    min-height: 74px;
    justify-content: center;
  }

  .header-logo-panel::after {
    display: none;
  }

  .header-logo-inner {
    padding: 0.85rem 1rem;
    align-items: center;
    text-align: center;
  }

  .header-logo-slogan {
    max-width: 28rem;
  }

  .header-main {
    width: 100%;
  }

  .header-main-inner {
    max-width: none;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .header-topline {
    height: auto;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(7, 19, 26, 0.06);
  }

  .header-contact {
    width: 100%;
    justify-content: space-between;
    gap: 0.55rem;
  }

  .header-phone {
    font-size: 0.82rem;
  }

  .header-quote-btn {
    height: 38px;
    padding: 0 16px;
    font-size: 0.74rem;
  }

  .header-nav-row {
    height: auto;
    min-height: 56px;
    padding: 0.3rem 0;
    justify-content: space-between;
    border-top: none;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid rgba(7, 19, 26, 0.08);
    box-shadow: 0 10px 22px rgba(7, 19, 26, 0.08);
    padding: 0.35rem 1rem 0.7rem;
    z-index: 70;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .main-nav__link {
    font-size: 0.72rem;
    padding: 0.5rem 0;
  }

  /* Mobilde link içindeki ok yalnızca metinde görünmesin; sağdaki sub-toggle yeterli */
  .main-nav__item--has-sub > .main-nav__item-head .main-nav__link .main-nav__chevron {
    display: none;
  }

  /* Mobil: alt çizgi şeridi kullanılmaz */
  .main-nav__link::after {
    display: none !important;
  }
}

.main-nav__item--has-sub > .main-nav__item-head .main-nav__link {
  border-bottom: 2px solid transparent;
}

@media (min-width: 768px) {
  .main-nav__item--has-sub > .main-nav__item-head .main-nav__link {
    border-bottom: none;
  }
}

.main-nav__item-head .main-nav__link:hover,
.main-nav__item-head .main-nav__link.is-active {
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .main-nav__item-head .main-nav__link:hover,
  .main-nav__item-head .main-nav__link.is-active {
    border-bottom-color: var(--color-accent);
  }
}

.main-nav__item-head {
  position: relative;
  display: flex;
  align-items: center;
}

/* ——— İç sayfa üst bandı + breadcrumb (Aşama 5.3.2) ——— */
.page-hero {
  background: linear-gradient(180deg, #fff, #f7f7f7);
  padding: 44px 0 28px;
  border-bottom: 1px solid #eee;
}

.page-hero__title {
  margin: 0.65rem 0 0;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.page-hero__intro {
  margin: 0.75rem 0 0;
  max-width: 46rem;
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.breadcrumb {
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb a {
  color: #f5a400;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__sep {
  opacity: 0.45;
  color: #6b7280;
  user-select: none;
}

.breadcrumb__current {
  font-weight: 700;
  color: #0b1620;
}

.content-shell {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 36px clamp(16px, 3vw, 24px) 48px;
  box-sizing: border-box;
}

.listing-shell {
  width: min(var(--container-wide), calc(100% - 48px));
  margin-inline: auto;
  padding: 36px 0 64px;
  box-sizing: border-box;
}

.page-hero + .listing-shell {
  padding-top: 32px;
}

.page-landing--inner > .page-hero + .content-shell {
  padding-top: 32px;
}

.page-services-section {
  margin-top: 0;
  padding-top: 0;
}

.page-services-section .content-shell {
  padding-top: 28px;
}

.page-cover {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 0 24px;
}

/* Hizmet detay / ilçe landing — kapak kırpılmasın (liste kartları cover kalır) */
.page-landing--inner .page-cover {
  max-height: none;
  aspect-ratio: auto;
  overflow: visible;
  background: #eef1f4;
  border: 1px solid rgba(7, 19, 26, 0.08);
}

.page-cover img,
.page-cover picture,
.page-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-landing--inner .page-cover img,
.page-landing--inner .page-cover picture,
.page-landing--inner .page-cover__img,
.page-landing--inner .page-cover picture img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 560px);
  object-fit: contain;
  object-position: center;
}

.page-landing__hero {
  margin-bottom: 1.5rem;
}

.page-landing__cover {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.page-landing__cover img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}

.page-landing__simple {
  padding: 2rem 0 1rem;
}

.page-landing__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-landing__intro {
  margin: 0;
  color: var(--color-muted);
  max-width: 46rem;
}

.page-landing--inner {
  margin-bottom: 0;
}

.page-landing__body {
  padding-bottom: 3rem;
}

.page-landing__block {
  margin: 2rem 0;
}

.page-landing__block h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.page-landing__block--muted {
  background: var(--color-gray-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
}

.page-landing__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.page-landing__links a {
  font-weight: 700;
  color: var(--color-accent);
}

.page-landing__cta {
  margin: 2rem 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 19, 26, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.rte {
  line-height: 1.65;
}

.rte p {
  margin: 0 0 1rem;
}

.rte-embed iframe {
  max-width: 100%;
  border: 0;
  border-radius: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}

.gallery-cell {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-cell:hover img {
  transform: scale(1.03);
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(7, 19, 26, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(7, 19, 26, 0.1);
}

.blog-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.blog-card__date {
  font-size: 0.72rem;
  color: var(--color-muted);
}

.blog-card__title {
  margin: 0.35rem 0;
  font-size: 1rem;
  font-weight: 800;
}

.blog-card__title a,
.blog-card__title-text {
  color: inherit;
}

.blog-card__title a:hover,
.blog-card:hover .blog-card__title-text {
  color: var(--color-accent);
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.blog-card__more {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.branch-card {
  background: var(--color-white);
  padding: 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 19, 26, 0.06);
  box-shadow: var(--shadow-card);
}

.branch-card__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 800;
}

.branch-card__address {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.branch-card__line {
  margin: 0.25rem 0;
  font-size: 0.88rem;
}

.branch-card__map {
  margin-top: 0.75rem;
}

.region-card--muted {
  opacity: 0.85;
}

.region-card__link--disabled {
  font-size: 0.78rem;
  color: var(--color-muted);
  cursor: default;
}

.cards-row--fluid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.projects-grid--compact .project-card__img img {
  aspect-ratio: 16 / 10;
}

.card--service {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card--service:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(7, 19, 26, 0.08);
}

.project-card__img {
  transition: opacity 0.18s ease;
}

.project-card:hover .project-card__img {
  opacity: 0.96;
}

.quote-form__control {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.quote-form__control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245, 184, 46, 0.25);
}

.faq-list dt {
  font-weight: 800;
  margin-top: 1rem;
}

.faq-list dd {
  margin: 0.35rem 0 0 1rem;
  color: var(--color-muted);
}

.page-landing__meta {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0 0 0.5rem;
}

/* CMS sayfa — hizmet listesi şablonu */
.page-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 991px) {
  .page-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-services-grid {
    grid-template-columns: 1fr;
  }
}

.page-landing__cover--inline {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

/* ——— Aşama 5.1: CMS, tek parça header, slider, paylaşım ——— */

.section__empty {
  margin: 0;
  padding: 1rem 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Legacy hero block removed in 5.3.7.
   Source-of-truth: Aşama 5.3.6 hero block (file end). */

/* Alt menü — masaüstü hover; mobilde toggle ile */
.main-nav__item-head {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav__item-head .main-nav__link {
  flex: 1;
  min-width: 0;
}

.main-nav__sub-toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.main-nav__sub-toggle::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform 0.15s ease;
}

.main-nav__item--has-sub.is-open > .main-nav__item-head .main-nav__sub-toggle::before {
  transform: rotate(-135deg);
  margin-top: 0.1rem;
}

.main-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .main-nav__item--has-sub {
    position: relative;
  }

  .main-nav__sub-toggle {
    display: none;
  }

  .main-nav__sub {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0;
    min-width: 228px;
    background: var(--color-white);
    border: 1px solid rgba(7, 19, 26, 0.08);
    box-shadow: 0 14px 40px rgba(7, 19, 26, 0.1);
    padding: 0.5rem 0.55rem;
    border-radius: 12px;
    z-index: 80;
  }

  .main-nav__sub .main-nav__link {
    padding: 0.45rem 0.35rem;
    font-size: 0.62rem;
    border-bottom: none;
    display: block;
    white-space: nowrap;
  }

  .main-nav__sub .main-nav__link:hover,
  .main-nav__sub .main-nav__link.is-active {
    border-bottom: none;
    color: var(--color-accent);
  }

  /* İç içe alt menü */
  .main-nav__sub .main-nav__item--has-sub {
    position: relative;
  }

  .main-nav__sub .main-nav__item--has-sub > .main-nav__sub {
    left: 100%;
    top: 0;
    margin-left: 0.15rem;
  }

  .main-nav__item--has-sub:hover > .main-nav__sub,
  .main-nav__item--has-sub:focus-within > .main-nav__sub {
    display: block;
  }

  .main-nav__sub .main-nav__item--has-sub:hover > .main-nav__sub,
  .main-nav__sub .main-nav__item--has-sub:focus-within > .main-nav__sub {
    display: block;
  }
}

@media (max-width: 767px) {
  .main-nav__sub-toggle {
    display: inline-flex;
  }

  .main-nav__item--has-sub > .main-nav__sub {
    display: none;
    padding: 0.25rem 0 0.35rem 0.85rem;
    border-left: 2px solid rgba(7, 19, 26, 0.08);
    margin: 0.15rem 0 0 0.35rem;
  }

  .main-nav__item--has-sub.is-open > .main-nav__sub {
    display: block;
  }

  .main-nav__sub .main-nav__link {
    padding: 0.45rem 0;
    font-size: 0.7rem;
    border-bottom: none;
  }
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 2rem 0 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(7, 19, 26, 0.08);
}

.blog-share__label {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.blog-share__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(7, 19, 26, 0.12);
  background: var(--color-gray-light);
  cursor: pointer;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-map iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: var(--radius);
}

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

.gallery-card__open {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  text-align: left;
}

.gallery-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 26, 0.08);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.gallery-card__open:hover .gallery-card__media,
.gallery-card__open:focus-visible .gallery-card__media {
  box-shadow: 0 16px 40px rgba(7, 19, 26, 0.12);
  transform: translateY(-2px);
}

.gallery-card__img,
.gallery-card__media img,
.gallery-card__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__title {
  margin: 12px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .listing-shell {
    width: min(var(--container-wide), calc(100% - 32px));
    padding-top: 40px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 26, 0.72);
  cursor: zoom-out;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  margin: auto;
  max-width: min(980px, 94vw);
  padding: clamp(52px, 8vh, 80px) 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: clamp(14px, 4vw, 36px);
  border: none;
  background: #fff;
  color: var(--color-text);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.lightbox__close:hover {
  color: var(--color-accent);
}

.lightbox__stage {
  border-radius: 14px;
  overflow: hidden;
  max-height: calc(92vh - 120px);
  background: #0b1620;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.lightbox__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(92vh - 120px);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox__caption-title,
.lightbox__caption-alt {
  margin: 0;
  padding: 0 0.5rem;
  text-align: center;
  color: #fff;
  max-width: 720px;
  font-size: 0.95rem;
}

.lightbox__caption-alt {
  font-size: 0.82rem;
  opacity: 0.82;
}

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

@media (max-width: 991px) {
  .listing-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .listing-project-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.listing-project-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.listing-project-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(7, 19, 26, 0.04);
}

.listing-project-card__img,
.listing-project-card__media img,
.listing-project-card__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-project-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.listing-project-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.listing-project-card__title a,
.listing-project-card__title-text {
  color: inherit;
  text-decoration: none;
}

.listing-project-card__title a:hover,
.listing-project-card:hover .listing-project-card__title-text {
  color: var(--color-accent);
}

.listing-project-card__excerpt {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-muted);
  flex: 1;
}

.listing-project-card__btn {
  align-self: flex-start;
}

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

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.blog-card.blog-card--page .blog-card__media--link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(7, 19, 26, 0.04);
}

.blog-card.blog-card--page .blog-card__img,
.blog-card.blog-card--page .blog-card__media img,
.blog-card.blog-card--page .blog-card__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.blog-card.blog-card--page .blog-card__media--link:hover .blog-card__img,
.blog-card.blog-card--page .blog-card__media--link:hover img {
  transform: scale(1.03);
}

.blog-card.blog-card--page {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.blog-card.blog-card--page .blog-card__body--page {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card.blog-card--page .blog-card__title--page {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.blog-card.blog-card--page .blog-card__title--page a,
.blog-card.blog-card--page .blog-card__title-text--page {
  color: inherit;
  text-decoration: none;
}

.blog-card.blog-card--page .blog-card__title--page a:hover,
.blog-card.blog-card--page:hover .blog-card__title-text--page {
  color: var(--color-accent);
}

.blog-card.blog-card--page .blog-card__date {
  font-size: 0.74rem;
  color: var(--color-muted);
  font-weight: 600;
}

.blog-card.blog-card--page .blog-card__actions {
  margin-top: auto;
  padding-top: 0;
}

.blog-grid--page .blog-card__read {
  text-decoration: none;
}

.projects-grid--page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.blog-list-page .blog-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(7, 19, 26, 0.08);
}

.branches-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.form-message--success {
  background: rgba(46, 160, 67, 0.12);
  color: #1f5f2f;
}

.form-message--error {
  background: rgba(200, 40, 40, 0.1);
  color: #7a1e1e;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  /* Üst bar (50) altında; hero/medyanın üstünü kapatmaması için */
  z-index: var(--z-whatsapp);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:hover {
  filter: brightness(1.05);
}

/* --- Aşama 5.4: Premium hero + homepage spacing normalize --- */
.home-section {
  position: relative;
  margin: 0;
  padding-block: clamp(56px, 6vw, 88px);
}

.home-section--compact {
  padding-block: clamp(36px, 4vw, 56px);
}

.home-section--tight {
  padding-block: clamp(24px, 3vw, 40px);
}

.home-section + .home-section {
  margin-top: 0;
}

}

.section--projects .projects-layout-wrapper {
  display: block;
}

.section--projects .projects-grid {
  margin-top: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.project-card--premium {
  background: #fff;
  border: 1px solid rgba(7, 19, 26, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.project-card--premium .project-card__cap {
  padding: 14px 16px 16px;
  margin-top: 0;
}

.project-card__date {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  color: var(--color-muted);
}

.project-card__desc {
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.blog-grid--home .blog-card.blog-card--premium {
  background: #fff;
  border: 1px solid rgba(7, 19, 26, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  transform: none;
}
.blog-grid--home .blog-card.blog-card--premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.085);
}
.blog-grid--home .blog-card.blog-card--premium .blog-card__body {
  padding: 14px 16px 16px;
  margin-top: 0;
}
.blog-grid--home .blog-card.blog-card--premium .blog-card__media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.blog-grid--home .blog-card.blog-card--premium .blog-card__media--placeholder {
  aspect-ratio: 16 / 10;
  background: rgba(7, 19, 26, 0.06);
  min-height: 0;
}
.blog-grid--home .blog-card.blog-card--premium .blog-card__title {
  margin: 6px 0 4px;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.25;
}
.blog-grid--home .blog-card.blog-card--premium .blog-card__excerpt {
  font-size: 0.86rem;
  margin: 6px 0 0;
}
.blog-grid--home .blog-card.blog-card--premium .blog-card__more {
  margin-top: 8px;
  font-size: 0.78rem;
}

.blog-grid--home .blog-card {
  height: auto;
}

.section__head--projects-home,
.section--blog-home .section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 1024px) {
  .section--projects .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


@media (max-width: 480px) {
  .section--projects .projects-grid { grid-template-columns: minmax(0, 1fr); }
  .section__head--projects-home,
  .section--blog-home .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ——— Aşama 5.2: teklif sayfası (açık zemin), proje/blog detay ——— */
.section--quote--page {
  margin-top: 0;
  background: var(--color-gray-light);
  color: var(--color-text);
}

.section--quote--page::after {
  display: none;
}

.section--quote--page .quote-form__control {
  background: var(--color-white);
  color: var(--color-text);
  border-color: rgba(7, 19, 26, 0.18);
}

.section--quote--page .quote-form__control::placeholder {
  color: var(--color-muted);
}

.section--quote--page .quote__flash--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.section--quote--page .quote__flash--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-page-form--clean select.admin-input,
.contact-page-form--clean select.admin-input option {
  color: var(--color-text);
  font-weight: 600;
}

.blog-row--with-thumb {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 640px) {
  .blog-row--with-thumb {
    grid-template-columns: 1fr;
  }
}

.blog-row__thumb img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}

.project-detail-gallery {
  margin: 2rem 0;
}

.project-detail-gallery__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.project-detail-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.project-detail-gallery__item img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}

.related-posts {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(7, 19, 26, 0.08);
}

.related-posts__title {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.related-posts__list {
  margin: 0;
  padding-left: 1.2rem;
}

.regions-grid--page {
  margin-bottom: 2rem;
}

.contact-branches-short {
  margin-top: 1.5rem;
}

.contact-branches-short__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-branches-short__list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
}

/* ——— Hizmet kartları (kapak veya ikon; DB’den) ——— */
.services-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.services-grid--home {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.service-card--visual {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(7, 19, 26, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card--visual:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(7, 19, 26, 0.12);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, rgba(245, 184, 46, 0.12), rgba(7, 19, 26, 0.06));
  overflow: hidden;
}

.service-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 140px;
  color: rgba(7, 19, 26, 0.35);
}

.service-card__icon svg {
  display: block;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.15rem 1.15rem;
  gap: 0.6rem;
}

.service-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--color-text);
}

.service-card__excerpt {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-muted);
  flex: 1;
}

.service-card__actions {
  margin-top: auto;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s ease, gap 0.2s ease;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.service-card__more:hover {
  color: var(--color-accent);
}

.service-card__more-arrow {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  transition: transform 0.22s ease, color 0.2s ease;
}

.service-card--visual:hover .service-card__more-arrow {
  transform: translateX(5px);
}

.service-card--visual:hover .service-card__more {
  color: var(--color-accent);
}

.service-card__btn {
  align-self: flex-start;
}

.service-card__regions {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-muted);
}

/* =========================
   COMPONENTS
========================= */
.service-card,
.project-card,
.blog-card,
.district-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover,
.project-card:hover,
.blog-card:hover,
.district-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* =========================
   FORMS
========================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 184, 46, 0.2);
}

/* =========================
   UTILITIES
========================= */
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.w-full { width: 100%; }
.h-full { height: 100%; }

.mobile-only { display: none; }
.desktop-only { display: block; }


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1440px) {
  .section {
    padding-block: 80px;
  }
}

@media (max-width: 1280px) {
  .section {
    padding-block: 72px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding-block: 72px;
  }
  .desktop-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 56px;
  }
  .mobile-only {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide,
  .container-narrow {
    width: min(var(--container-wide), calc(100% - 24px));
  }
}

/* Aşama 5.4.9 — eski hero/slider CSS kaldırıldı; ana sayfa yalnızca `.hero-v2` */

.home-section--compact.section--projects {
  padding-top: clamp(24px, 2.8vw, 40px);
  padding-bottom: clamp(36px, 4vw, 56px);
}

.home-section--tight.section--blog-home {
  padding-top: clamp(20px, 2.5vw, 34px);
}

.section--projects .projects-grid {
  margin-top: 14px;
}

.project-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}

.project-card__cta:hover {
  text-decoration: underline;
}

/* Ana sayfa projeler — detay linki yok; tarih gizli */
.home-projects-carousel .project-card--premium {
  cursor: default;
}

.home-projects-carousel .project-card__date {
  display: none;
}

.home-projects-carousel .project-card__cta--static {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  pointer-events: none;
  text-decoration: none;
}

.whatsapp-float {
  width: auto;
  min-width: 56px;
  height: 56px;
  border-radius: 999px;
  padding: 0 16px 0 14px;
  gap: 10px;
}

.whatsapp-float__text {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}


@media (max-width: 767px) {
  .whatsapp-float {
    padding: 0 12px;
  }
  .whatsapp-float__text {
    font-size: 0.72rem;
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 520px) {
  .whatsapp-float__text {
    display: none;
  }
}

/* =========================
   AŞAMA 5.4.2 FIX OVERRIDES
========================= */
.quote-form__control {
  background: #ffffff;
  color: #0b1720;
  border: 1px solid rgba(7, 19, 26, 0.18);
}

.quote-form__control::placeholder {
  color: #6b7280;
}

.quote-form__control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245, 184, 46, 0.24);
  outline: none;
}

select.quote-form__control {
  color: #0b1720;
  background-color: #fff;
}

.section--quote-context-service-detail {
  margin-bottom: 0;
}

.contact-grid--modern {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(18px, 2.6vw, 28px);
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(7, 19, 26, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
  padding: clamp(18px, 2.6vw, 28px);
}

.contact-card__title {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.contact-form-modern {
  display: grid;
  gap: 14px;
}

.contact-form-modern .form-control,
.contact-form-modern select.form-control {
  min-height: 50px;
  padding: 12px 14px;
  font-size: 1rem;
  line-height: 1.45;
  border-radius: 12px;
  border: 1px solid rgba(7, 19, 26, 0.14);
  color: var(--color-text, #0b1720);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-modern .form-control:focus {
  outline: none;
  border-color: var(--color-accent, #f5b82e);
  box-shadow: 0 0 0 3px rgba(245, 184, 46, 0.22);
}

.contact-form-modern .form-control::placeholder {
  color: rgba(11, 23, 32, 0.45);
}

.contact-form-modern__textarea,
.contact-form-modern textarea.form-control {
  min-height: 155px;
  resize: vertical;
}

.contact-form-modern__actions {
  padding-top: 6px;
}

.contact-form-modern__actions .btn {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 14px;
}

.contact-info-list {
  display: grid;
  gap: 10px;
}

.contact-info-list p {
  margin: 0;
  display: grid;
  gap: 4px;
  line-height: 1.45;
}

.contact-info-list p strong {
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-info-list p a,
.contact-info-list p span {
  color: var(--color-text);
  font-weight: 600;
}

.blog-card__media,
.blog-card__media--link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__media img,
.blog-card__media--link img,
.blog-card__media--link picture,
.blog-card__media--link picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-logo-image {
  max-height: 84px;
  width: auto;
  object-fit: contain;
}

.header-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
}

.header-lang-switch__item {
  font-size: 0.74rem;
  font-weight: 700;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #10202d;
  border: 1px solid rgba(7, 19, 26, 0.18);
  text-decoration: none;
}

.header-lang-switch__item.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #111;
}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 18px;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 70;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__inner {
  background: rgba(8, 18, 24, 0.96);
  color: #fff;
  border: 1px solid rgba(245, 184, 46, 0.24);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.cookie-consent__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.45;
  max-width: 760px;
}

.cookie-consent__policy-link {
  margin-left: 8px;
  color: var(--color-accent);
  font-weight: 700;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-consent__settings {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 8px;
  font-size: 0.79rem;
}

/* `hidden` özniteliği, aksi halde üstteki `display:grid` kuralı tarafından ezilir */
.cookie-consent__settings[hidden] {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top-width: 0 !important;
  overflow: hidden;
}

.cookie-consent__settings label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-contact {
  margin-right: clamp(24px, 5vw, 118px);
}

.section--quote {
  margin-top: 1.6rem;
  background: linear-gradient(118deg, #0a1820 0%, #142a36 42%, #0d1a22 100%);
}

/* Motion-ready (Aşama 5.5): [data-reveal] ve reveal-* ana sayfada işaretçi; animasyon bu aşamada eklenmedi — CLS riski yok. */

.skeleton,
.skeleton-line {
  border-radius: 10px;
  background: linear-gradient(90deg, #eceff3 0%, #f5f7fa 50%, #eceff3 100%);
  background-size: 220% 100%;
  animation: skeletonShimmer 1.3s ease-in-out infinite;
}

.skeleton-card {
  position: relative;
  min-height: 100%;
}

.skeleton-image {
  position: relative;
  overflow: hidden;
  background: #edf0f4;
  min-height: 160px;
}

.skeleton-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  animation: skeletonSlide 1.3s ease-in-out infinite;
}

.skeleton-image img {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.skeleton-image.is-loaded::before {
  display: none;
}

.skeleton-image.is-loaded img {
  opacity: 1;
}

.reference-logo-card .skeleton-image {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes skeletonShimmer {
  0% { background-position: 180% 0; }
  100% { background-position: -40% 0; }
}

@keyframes skeletonSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 991px) {
  .contact-grid--modern {
    grid-template-columns: 1fr;
  }
  .header-lang-switch {
    margin-right: 0;
    margin-bottom: 6px;
  }
  .header-contact {
    margin-right: 0;
  }
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-consent__main {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .section--quote-context-service-detail {
    margin-bottom: 0;
  }
  .cookie-consent__actions .btn {
    flex: 1 1 calc(50% - 4px);
  }
  .cookie-consent__text {
    font-size: 0.76rem;
  }
}

/* =========================
   AŞAMA 5.4.4 FIX OVERRIDES
========================= */
.main-nav__item--has-sub > .main-nav__item-head .main-nav__link::after {
  content: none;
}

.main-nav__item--has-sub:hover > .main-nav__item-head .main-nav__link::after,
.main-nav__item--has-sub.is-open > .main-nav__item-head .main-nav__link::after {
  transform: none;
}

.header-contact {
  margin-right: clamp(18px, 4vw, 96px);
}

.social-float {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 46;
  display: grid;
  gap: 8px;
}

.social-float__link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(8, 18, 24, 0.86);
  color: #fff;
  border: 1px solid rgba(245, 184, 46, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
}

.cookie-consent {
  left: 14px;
  right: auto;
  bottom: 14px;
  width: min(360px, calc(100% - 28px));
  max-width: none;
  margin: 0;
  transform: translateY(14px);
}

.cookie-consent__inner {
  border-radius: 16px;
  padding: 12px;
}

.cookie-consent__main {
  display: grid;
  gap: 10px;
}

.cookie-consent__text {
  font-size: 0.76rem;
  max-width: none;
}

.cookie-consent__actions {
  gap: 6px;
}

.cookie-consent__actions .btn {
  font-size: 0.74rem;
  padding-inline: 10px;
}

.cookie-consent__actions .btn--outline-dark {
  background: rgba(255, 255, 255, 0.09);
  color: #f5f7fa;
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 991px) {
  .header-contact {
    margin-right: 0;
  }
  .social-float {
    display: none;
  }
  .cookie-consent {
    left: 12px;
    width: min(340px, calc(100% - 24px));
  }
}

@media (max-width: 768px) {
  .cookie-consent__actions .btn {
    flex: 1 1 auto;
  }
}

/* ========== AŞAMA 5.4.4.1 — alert + hızlı tekilf geri bildirim ========== */
.form-alert {
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-alert--hidden {
  display: none !important;
}

.form-alert--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-alert--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.footer-quote-strip__feedback.form-alert--hidden {
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 0;
}

.footer-quote-strip .footer-quote-strip__feedback:not(.form-alert--hidden) {
  grid-column: 1 / -1;
}

/* ===== AŞAMA 5.4.6 OVERRIDES ===== */
.main-nav__item--has-sub > .main-nav__item-head .main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav__chevron {
  width: 11px;
  height: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  transition: transform 0.2s ease;
}
.main-nav__chevron svg {
  width: 11px;
  height: 11px;
  display: block;
}
.main-nav__item--has-sub:hover > .main-nav__item-head .main-nav__chevron,
.main-nav__item--has-sub.is-open > .main-nav__item-head .main-nav__chevron {
  transform: rotate(180deg);
}
.project-card,
.blog-card,
.listing-project-card,
.product-card-catalog,
.service-card--visual { position: relative; }
/* Tam kart tıklaması: tek overlay; alt katman pointer almasın (iç içe <a> gerekmez) */
.card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-decoration: none;
  color: transparent;
  overflow: hidden;
}
.card-overlay-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.project-card .project-card__img,
.project-card .project-card__cap,
.blog-card .blog-card__media,
.blog-card .blog-card__body,
.listing-project-card .listing-project-card__media,
.listing-project-card .listing-project-card__body,
.product-card-catalog .product-card-catalog__media,
.product-card-catalog .product-card-catalog__body {
  pointer-events: none;
}
.project-card__cta,
.blog-card__more,
.blog-card__read,
.listing-project-card__btn,
.product-card-catalog__wa,
.product-card-catalog__detail,
.product-card-catalog__cta {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
.service-card--visual .service-card__media,
.service-card--visual .service-card__body,
.service-card--visual .service-card__title,
.service-card--visual .service-card__excerpt,
.service-card--visual .service-card__regions {
  pointer-events: none;
}
.project-card__title-text {
  display: block;
  color: inherit;
  font: inherit;
  font-weight: 800;
}
.project-card:hover .project-card__title-text {
  color: var(--color-accent);
}
/* Ana sayfa yatay şeritler — tek yapı (scroll viewport + içte flex sıra). Grid kullanılmaz; taşma her zaman oluşabilir */
.auto-carousel-viewport[data-auto-carousel] {
  display: block;
  width: 100%;
  max-width: 100%;
  /* Flex/grid üstlerinde varsayılan min-width:auto içeriğe göre genişleyip taşmayı gizleyebilir — kaydırma için sıkışmalı */
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  /* Kaydırma çubuğu görünmesin — parmak/mouse ile kaydırma devam eder */
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
  will-change: scroll-position;
}
.auto-carousel-viewport[data-auto-carousel]::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.auto-carousel-viewport .auto-carousel-track {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  /* Yalnızca kart genişlikleri — min-width:100% kullanılmaz; aksi halde flex kartları sıkıştırıp scroll oluşmaz */
  width: max-content;
  max-width: none;
  box-sizing: border-box;
}
/* UA varsayılan figure/article margin’i şerit genişliğini şişirir veya davranışı karıştırır */
.auto-carousel-viewport[data-auto-carousel] .auto-carousel-track > * {
  margin: 0;
}
.home-blog-carousel .auto-carousel-track {
  gap: 24px;
}
.home-projects-carousel .auto-carousel-track {
  gap: 20px;
}
.home-references-carousel .auto-carousel-track {
  gap: 14px;
}
.home-projects-carousel .project-card.project-card--premium {
  flex: 0 0 300px;
  width: 300px;
  max-width: 300px;
  min-width: 300px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .home-projects-carousel .project-card.project-card--premium {
    flex: 0 0 82vw;
    width: 82vw;
    max-width: 82vw;
    min-width: 82vw;
  }
}
.home-references-carousel .reference-logo-card {
  flex: 0 0 190px;
  width: 190px;
  max-width: 190px;
  min-width: 190px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .home-references-carousel .reference-logo-card {
    flex: 0 0 42vw;
    width: 42vw;
    max-width: 42vw;
    min-width: 42vw;
  }
}
.home-blog-carousel .blog-card.blog-card--premium,
.home-blog-carousel .blog-card {
  flex: 0 0 300px;
  width: 300px;
  max-width: 300px;
  min-width: 300px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .home-blog-carousel .blog-card.blog-card--premium,
  .home-blog-carousel .blog-card {
    flex: 0 0 82vw;
    width: 82vw;
    max-width: 82vw;
    min-width: 82vw;
  }
}
.references-carousel {
  overflow: visible;
}
.reference-logo-card { min-height: 92px; border: 1px solid rgba(7, 19, 26, 0.12); border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 12px; }
.reference-logo-card img { max-width: 120px; max-height: 48px; filter: grayscale(1); opacity: 0.84; transition: all 0.2s ease; }
.reference-logo-card:hover img { filter: grayscale(0); opacity: 1; }
.social__icon {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
}
.social__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}
.social-float__link {
  width: 42px;
  height: 42px;
  font-size: 0.78rem;
  font-weight: 700;
}
.social-float__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}
.footer-contact__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-accent);
}
.footer-contact__icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.footer-bottom__copy, .footer-legal a { font-size: 0.88rem; }
.footer-bottom__netroxa { opacity: 0.86; }
.footer-bottom__netroxa {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
}
.whatsapp-float__text { max-width: 120px; white-space: nowrap; }
.blog-card__media img,
.blog-card__media--link img,
.blog-card__img { aspect-ratio: 16 / 10; object-fit: cover; }

.blog-grid--home .blog-card.blog-card--premium .blog-card__media img,
.blog-grid--home .blog-card.blog-card--premium .blog-card__media picture,
.blog-grid--home .blog-card.blog-card--premium .blog-card__media picture img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.blog-card.blog-card--page .blog-card__media--link,
.blog-card.blog-card--page .blog-card__media img {
  aspect-ratio: 16 / 10;
}

.regions-city-block {
  margin-bottom: 24px;
}
.regions-subtitle {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}
.regions-grid--page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.regions-grid--page .region-card--link {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .regions-grid--page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .regions-grid--page {
    grid-template-columns: 1fr;
  }
}

/* ——— Ürünler katalog (CMS) ——— Mağaza gridi (--shop) hariç ——— */
.products-catalog-grid:not(.products-catalog-grid--shop) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 991px) {
  .products-catalog-grid:not(.products-catalog-grid--shop) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .products-catalog-grid:not(.products-catalog-grid--shop) {
    grid-template-columns: minmax(0, 1fr);
  }
}
.product-card-catalog {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.product-card-catalog__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(7, 19, 26, 0.04);
}
.product-card-catalog__img,
.product-card-catalog__media img,
.product-card-catalog__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card-catalog__placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: rgba(7, 19, 26, 0.06);
}
.product-card-catalog__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card-catalog__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}
.product-card-catalog__excerpt {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-muted);
  flex: 1;
}
.product-card-catalog__price {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-accent);
}
.product-card-catalog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.product-detail-shell {
  padding-bottom: 3rem;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}
.product-detail__visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 26, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  aspect-ratio: 16 / 10;
}
.product-detail__img-el,
.product-detail__visual img,
.product-detail__visual picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail__placeholder {
  width: 100%;
  height: 100%;
  background: rgba(7, 19, 26, 0.06);
  min-height: 280px;
}
.product-detail__main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-detail__price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-accent);
}
.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.product-detail__body-text {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--color-muted);
}
.rte--product img {
  max-width: 100%;
  height: auto;
}

/* =========================
   HERO V2 (Aşama 5.4.8) — .hero-v2 namespace
========================= */
.hero-v2 {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  overflow: hidden;
  --hero-v2-min-h: clamp(480px, 62vh, 680px);
  --hero-v2-max-h: 680px;
}

.hero-v2__viewport {
  position: relative;
  min-height: var(--hero-v2-min-h);
  max-height: var(--hero-v2-max-h);
}

.hero-v2:not(.hero-v2--has-slider) .hero-v2__slide {
  position: relative;
  min-height: var(--hero-v2-min-h);
}

.hero-v2--has-slider .hero-v2__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.hero-v2--has-slider .hero-v2__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-v2__split {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  min-height: var(--hero-v2-min-h);
  align-items: stretch;
}

.hero-v2--has-slider .hero-v2__split {
  height: 100%;
  min-height: var(--hero-v2-min-h);
}

.hero-v2__copy {
  padding: clamp(20px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-16);
  background: transparent;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-v2__eyebrow {
  margin: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.78);
}

.hero-v2__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.88);
}

.hero-v2__title-line {
  display: block;
}

.hero-v2__title-line--accent {
  color: var(--color-primary);
}

.hero-v2__desc {
  margin: 0;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.82);
}

.hero-v2__promo {
  border: 1px solid rgba(245, 184, 46, 0.65);
  border-radius: var(--radius-md);
  padding: var(--space-16) var(--space-20);
  background: rgba(0, 0, 0, 0.22);
  max-width: 420px;
}

.hero-v2__promo-big {
  margin: 0 0 4px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--color-primary);
}

.hero-v2__promo-title {
  margin: 0 0 6px;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 800;
  color: var(--color-white);
}

.hero-v2__promo-sub {
  margin: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-weight: 600;
}

.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.hero-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-v2__btn--primary {
  background: var(--color-primary);
  color: var(--color-dark);
  border: none;
}

.hero-v2__btn--primary:hover {
  background: var(--color-primary-hover);
}

.hero-v2__btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-v2__btn--ghost:hover {
  border-color: var(--color-white);
}

.hero-v2__visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  /* Görsel contain ile sığdırıldığında letterbox */
  background: var(--color-dark);
}

.hero-v2__media {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
}

.hero-v2__media-desktop,
.hero-v2__media-mobile {
  position: absolute;
  inset: 0;
}

/* cover: alanı doldurur; 21:9 vb. yatay görseller kenarlardan kırpılır (şerit yok) */
.hero-v2__media-desktop img,
.hero-v2__media-desktop picture,
.hero-v2__media-desktop video,
.hero-v2__media-mobile img,
.hero-v2__media-mobile picture,
.hero-v2__media-mobile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-v2__media--dual .hero-v2__media-desktop {
  display: block;
}

.hero-v2__media--dual .hero-v2__media-mobile {
  display: none;
}

.hero-v2__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-v2__scrim--low {
  background: linear-gradient(90deg, rgba(7, 19, 26, 0.55) 0%, rgba(7, 19, 26, 0.08) 48%, transparent 72%);
}

.hero-v2__scrim--medium {
  background: linear-gradient(90deg, rgba(7, 19, 26, 0.72) 0%, rgba(7, 19, 26, 0.18) 45%, transparent 78%);
}

.hero-v2__scrim--strong {
  background: linear-gradient(90deg, rgba(7, 19, 26, 0.88) 0%, rgba(7, 19, 26, 0.35) 42%, rgba(7, 19, 26, 0.08) 100%);
}

.hero-v2__badge {
  position: absolute;
  top: clamp(12px, 2.5vw, 28px);
  right: clamp(12px, 2.5vw, 28px);
  z-index: 3;
  width: clamp(104px, 18vw, 140px);
  height: clamp(104px, 18vw, 140px);
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-weight: 800;
  font-size: clamp(0.58rem, 1.1vw, 0.72rem);
  line-height: 1.25;
}

.hero-v2__features {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: var(--space-12) var(--space-16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12) var(--space-24);
  justify-content: center;
  background: linear-gradient(0deg, rgba(7, 19, 26, 0.88), transparent);
}

.hero-v2__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
  max-width: 120px;
  text-align: center;
  position: relative;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-v2__feature-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero-v2__feature-glyph {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 40px;
  height: 40px;
}

/* Emoji / unicode ikon — sabit kutu, taşma ve satır kırılması kontrolü */
.hero-icon-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-icon-slot__inner {
  display: block;
  max-width: 100%;
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  line-height: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-icon-slot--trust {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 10px;
  background: rgba(245, 184, 46, 0.12);
  border: 1px solid rgba(245, 184, 46, 0.35);
}

.hero-icon-slot--trust .hero-icon-slot__inner {
  white-space: normal;
  word-break: break-all;
  font-size: clamp(0.88rem, 2.4vw, 1.05rem);
}

@media (max-width: 600px) {
  .hero-icon-slot--feature {
    width: 38px;
    height: 38px;
  }
  .hero-v2__feature-ring {
    width: 38px;
    height: 38px;
  }
  .hero-v2__feature-glyph {
    height: 38px;
    line-height: 38px;
  }
  .hero-v2__feature-label {
    margin-top: 38px;
  }
}

.hero-v2__feature-label {
  display: block;
  margin-top: 40px;
  line-height: 1.2;
}

.hero-v2__dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 4px;
}

.hero-v2__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.hero-v2__dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.hero-v2__dot.is-active::before {
  background: var(--color-primary);
  transform: scale(1.15);
}

.hero-v2__dot:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hero-v2--fallback {
  min-height: 280px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1620, #0d2330);
}

.hero-v2__fallback-inner {
  padding: var(--space-40) var(--space-24);
  text-align: center;
}

.hero-v2__fallback-kicker {
  margin: 0 0 8px;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.hero-v2__fallback-title {
  margin: 0 0 12px;
  font-size: var(--text-2xl);
  color: var(--color-white);
}

.hero-v2__fallback-text {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-v2-trustbar {
  background: #0a1218;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-v2-trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-16);
  padding: var(--space-16) var(--space-16);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.hero-v2-trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.92);
}

.hero-v2-trustbar__glyph {
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--color-primary);
}

/* —— Hero V2: Mod 1 split — metin / görsel boşluğu azaltıldı —— */
.hero-v2__slide--mode-split .hero-v2__split {
  grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
  gap: 0;
}

.hero-v2__slide--mode-split .hero-v2__copy {
  padding-right: clamp(6px, 1.2vw, 14px);
}

.hero-v2__slide--mode-split .hero-v2__visual {
  margin-left: clamp(-18px, -2vw, -4px);
  width: calc(100% + clamp(6px, 1.8vw, 18px));
}

/* —— Mod 2 card — oval çerçeve, görsel kolonda biraz sola / ortaya yakın —— */
.hero-v2__slide--mode-card .hero-v2__split {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  align-items: center;
}

.hero-v2__slide--mode-card .hero-v2__visual--card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(20px, 3.5vw, 48px) clamp(14px, 2.5vw, 36px) clamp(24px, 4vw, 52px);
  min-height: 100%;
  overflow: visible;
}

.hero-v2__slide--mode-card .hero-v2__media-frame {
  position: relative;
  width: min(100%, 620px);
  margin-left: clamp(4px, 4vw, 56px);
  margin-right: auto;
  border-radius: clamp(16px, 2.8vw, 28px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: min(70vh, 520px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.hero-v2__slide--mode-card .hero-v2__media-frame .hero-v2__media {
  position: absolute;
  inset: 0;
}

.hero-v2__slide--mode-card .hero-v2__scrim--in-frame {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(7, 19, 26, 0.06) 0%,
    rgba(7, 19, 26, 0.22) 55%,
    rgba(7, 19, 26, 0.5) 100%
  );
}

.hero-v2__slide--mode-card .hero-v2__features--card {
  padding-bottom: clamp(6px, 1.5vw, 12px);
}

.hero-v2__slide--mode-card .hero-v2__badge {
  top: clamp(14px, 2.8vw, 32px);
  right: clamp(14px, 3vw, 40px);
}

/* —— Mod 3 cover — slider yüksekliği kadar arka plan, yazı önde, medya karartılmış —— */
.hero-v2:not(.hero-v2--has-slider) .hero-v2__slide--mode-cover {
  min-height: var(--hero-v2-min-h);
}

.hero-v2__slide--mode-cover .hero-v2__cover {
  position: relative;
  width: 100%;
  min-height: var(--hero-v2-min-h);
  overflow: hidden;
}

.hero-v2--has-slider .hero-v2__slide--mode-cover .hero-v2__cover {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.hero-v2__cover-media {
  position: absolute;
  inset: 0;
  background: #060b10;
}

.hero-v2__cover-media .hero-v2__media {
  position: absolute;
  inset: 0;
}

.hero-v2__slide--mode-cover .hero-v2__cover-media .hero-v2__media-desktop img,
.hero-v2__slide--mode-cover .hero-v2__cover-media .hero-v2__media-desktop picture img,
.hero-v2__slide--mode-cover .hero-v2__cover-media .hero-v2__media-desktop video,
.hero-v2__slide--mode-cover .hero-v2__cover-media .hero-v2__media-mobile img,
.hero-v2__slide--mode-cover .hero-v2__cover-media .hero-v2__media-mobile picture img,
.hero-v2__slide--mode-cover .hero-v2__cover-media .hero-v2__media-mobile video {
  object-fit: cover;
  object-position: center;
}

.hero-v2__cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-v2__cover-overlay--low {
  background: linear-gradient(
    105deg,
    rgba(8, 14, 18, 0.72) 0%,
    rgba(8, 14, 18, 0.38) 48%,
    rgba(8, 14, 18, 0.42) 100%
  );
}

.hero-v2__cover-overlay--medium {
  background: linear-gradient(
    105deg,
    rgba(7, 19, 26, 0.88) 0%,
    rgba(7, 19, 26, 0.52) 42%,
    rgba(7, 19, 26, 0.5) 100%
  );
}

.hero-v2__cover-overlay--strong {
  background: linear-gradient(
    105deg,
    rgba(5, 10, 14, 0.92) 0%,
    rgba(7, 19, 26, 0.72) 38%,
    rgba(7, 19, 26, 0.62) 100%
  );
}

.hero-v2__cover-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: var(--hero-v2-min-h);
  padding-top: clamp(22px, 4vw, 44px);
  padding-bottom: clamp(64px, 11vh, 112px);
}

.hero-v2__copy--cover {
  max-width: min(520px, 92vw);
}

.hero-v2__copy--cover .hero-v2__heading,
.hero-v2__copy--cover .hero-v2__desc,
.hero-v2__copy--cover .hero-v2__eyebrow {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero-v2__badge--cover {
  position: absolute;
  top: clamp(14px, 2.8vw, 36px);
  right: clamp(14px, 2.8vw, 40px);
  z-index: 3;
}

.hero-v2__features--cover {
  background: linear-gradient(0deg, rgba(7, 19, 26, 0.82), transparent);
}

@media (max-width: 900px) {
  .hero-v2 {
    max-width: 100%;
    overflow-x: hidden;
    --hero-v2-min-h: auto;
    --hero-v2-max-h: none;
  }

  .hero-v2__copy {
    min-width: 0;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .hero-v2__viewport {
    min-height: 0;
    max-height: none;
  }

  /* Çoklu slayt: sabit yükseklik + yan yana kolon mobilde içeriği sıkıştırıyordu */
  .hero-v2--has-slider .hero-v2__viewport {
    display: grid;
  }

  .hero-v2--has-slider .hero-v2__slide {
    position: relative;
    grid-area: 1 / 1;
    inset: auto;
    height: auto;
    min-height: 0;
  }

  .hero-v2--has-slider .hero-v2__split {
    min-height: 0;
    height: auto;
  }

  .hero-v2:not(.hero-v2--has-slider) .hero-v2__slide {
    min-height: 0;
  }

  .hero-v2__split {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    min-height: min(78vh, 640px);
  }

  /* Mod 1 — yüksek özgüllükteki masaüstü 2 kolon kuralını mobilde geçersiz kıl */
  .hero-v2__slide--mode-split .hero-v2__split {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    min-height: min(78vh, 640px);
  }

  .hero-v2__slide--mode-split .hero-v2__copy {
    padding-right: clamp(16px, 4vw, 24px);
  }

  .hero-v2__copy {
    order: 1;
    flex: 0 1 auto;
    padding-bottom: var(--space-16);
  }

  .hero-v2__visual {
    order: 2;
    flex: 0 0 auto;
    margin-top: auto;
    align-self: stretch;
    width: 100%;
    min-height: min(62vw, 400px);
    max-height: 440px;
    height: min(62vw, 400px);
    aspect-ratio: auto;
  }

  .hero-v2__media--dual .hero-v2__media-desktop {
    display: none;
  }

  .hero-v2__media--dual .hero-v2__media-mobile {
    display: block;
  }

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

  .hero-v2__badge {
    width: clamp(92px, 26vw, 118px);
    height: clamp(92px, 26vw, 118px);
    font-size: 0.55rem;
    top: 10px;
    right: 10px;
  }

  .hero-v2__dots {
    bottom: 8px;
  }

  .hero-v2__features--split {
    position: static;
    background: rgba(7, 19, 26, 0.92);
  }

  /* Modlar — mobilde tek sütun / kenar boşlukları sıfırla */
  .hero-v2__slide--mode-split .hero-v2__visual {
    margin-left: 0;
    width: 100%;
  }

  .hero-v2__slide--mode-card .hero-v2__split {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    min-height: min(78vh, 640px);
  }

  .hero-v2__slide--mode-card .hero-v2__media-frame {
    width: 100%;
    max-width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v2__slide--mode-card .hero-v2__visual--card {
    padding: 14px 12px 22px;
    justify-content: center;
    margin-top: auto;
  }

  .hero-v2__slide--mode-cover .hero-v2__cover {
    min-height: min(92vh, 620px);
  }

  .hero-v2__slide--mode-cover .hero-v2__cover-inner {
    min-height: 0;
    align-items: flex-start;
    padding-bottom: 104px;
  }
}

@media (max-width: 480px) {
  .hero-v2-trustbar__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero-v2-trustbar__item {
    justify-content: center;
  }
}

/* —— Bakım modu (503) —— */
.maintenance-body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: var(--font-body, "Montserrat", system-ui, sans-serif);
  color: rgba(255, 255, 255, 0.94);
  background: #060d12;
}

.maintenance-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(245, 184, 46, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(30, 90, 120, 0.25), transparent 50%),
    linear-gradient(165deg, #060d12 0%, #0a1620 45%, #07131a 100%);
  animation: maintenance-bg-shift 14s ease-in-out infinite alternate;
}

@keyframes maintenance-bg-shift {
  from {
    filter: saturate(1) hue-rotate(0deg);
    transform: scale(1);
  }
  to {
    filter: saturate(1.08) hue-rotate(6deg);
    transform: scale(1.02);
  }
}

.maintenance-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.maintenance-card {
  width: min(520px, 100%);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: clamp(16px, 3vw, 22px);
  background: rgba(10, 22, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  text-align: center;
}

.maintenance-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  width: 100%;
}

.maintenance-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: min(220px, 72vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.maintenance-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.maintenance-desc {
  margin: 0 0 1.25rem;
  font-size: clamp(0.92rem, 2.5vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.maintenance-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: rgba(245, 184, 46, 0.1);
  border: 1px solid rgba(245, 184, 46, 0.35);
}

.maintenance-countdown__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 184, 46, 0.95);
}

.maintenance-countdown__value {
  font-variant-numeric: tabular-nums;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 700;
  color: #fff;
}

.maintenance-actions {
  margin: 0 0 1rem;
}

.maintenance-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.maintenance-btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.maintenance-btn--wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.maintenance-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.maintenance-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.maintenance-social__link:hover {
  background: rgba(245, 184, 46, 0.18);
  border-color: rgba(245, 184, 46, 0.45);
}

.maintenance-social__link--icon {
  padding: 0.35rem;
  overflow: hidden;
}

.maintenance-social__icon-img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  display: block;
}

.maintenance-meta {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .maintenance-bg {
    animation: none;
  }
}

/* =========================
   ÜRÜN KATALOĞU + DETAY (taksonomi)
========================= */

.products-layout {
  display: grid;
  gap: var(--space-24);
  align-items: start;
}

@media (min-width: 900px) {
  .products-layout {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: var(--space-32);
    align-items: start;
  }
}

.products-filter-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-20);
}

.products-filter-panel__title {
  margin: 0 0 var(--space-16);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-dark);
}

.products-filter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.products-filter-form__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-soft);
}

.products-filter-form__input,
.products-filter-form__select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.75rem;
  font: inherit;
  background: var(--color-white);
  color: var(--color-text);
}

.products-filter-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.products-layout__main {
  min-width: 0;
}

.product-card-catalog__meta {
  margin: 0 0 var(--space-8);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-soft);
  letter-spacing: 0.02em;
}

.product-card-catalog__hint {
  font-size: 0.75rem;
  color: var(--color-primary-text);
  font-weight: 700;
}

/* ——— Ürün mağazası (liste + sol accordion filtre) ——— */
.products-shop {
  /* Kahraman + üst bar için yaklaşık boşluk; dar ekranda dvh ile sınır */
  --products-shop-scroll-offset: clamp(10rem, 28vh, 20rem);
}

.products-shop .products-filter-panel--shop {
  padding: var(--space-20);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-white) 0%, #fafbfc 100%);
}

@media (min-width: 900px) {
  /* Sol: görünür alanda sabit (sticky); çok filtrede kendi içinde kayar */
  .products-shop .products-filter-panel--shop {
    position: sticky;
    top: 1rem;
    align-self: start;
    max-height: calc(100dvh - var(--products-shop-scroll-offset));
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  /* Sağ: ürün listesi ayrı kaydırılır (çok ürün) */
  .products-shop .products-layout__main {
    max-height: calc(100dvh - var(--products-shop-scroll-offset));
    min-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding-right: var(--space-4);
    scrollbar-gutter: stable;
  }

  .products-shop .products-layout__main::-webkit-scrollbar {
    width: 8px;
  }

  .products-shop .products-layout__main::-webkit-scrollbar-thumb {
    background: rgba(7, 19, 26, 0.18);
    border-radius: 999px;
  }

  .products-shop .products-shop-toolbar {
    position: sticky;
    top: 0;
    z-index: 4;
    margin-top: 0;
    margin-bottom: var(--space-20);
    box-shadow: 0 10px 24px rgba(7, 19, 26, 0.06);
  }
}

@media (max-width: 899px) {
  .products-shop .products-filter-panel--shop {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

.products-filter-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.products-filter-panel__head .products-filter-panel__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-dark);
}

.products-filter-panel__reset {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-text);
  text-decoration: none;
  white-space: nowrap;
}

.products-filter-panel__reset:hover {
  text-decoration: underline;
}

.products-filter-panel__note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-soft);
  line-height: 1.45;
}

.products-shop-search {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.products-shop-search__input {
  flex: 1 1 160px;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  font: inherit;
  background: var(--color-white);
}

.products-shop-search__btn {
  border-radius: var(--radius-pill);
}

.products-filter-acc {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  margin-bottom: var(--space-10);
  overflow: hidden;
}

.products-filter-acc__summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-dark);
  padding: 0.65rem 0.85rem;
  background: rgba(245, 184, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-filter-acc__summary::-webkit-details-marker {
  display: none;
}

.products-filter-acc__summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
  margin-left: 0.5rem;
}

.products-filter-acc:not([open]) .products-filter-acc__summary::after {
  transform: rotate(-45deg);
}

.products-filter-acc__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.5rem;
}

.products-filter-acc__list li {
  margin: 0;
}

.products-filter-acc__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-8);
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  margin: 0 0.35rem;
}

.products-filter-acc__link:hover {
  background: rgba(7, 19, 26, 0.04);
}

.products-filter-acc__link.is-active {
  background: rgba(245, 184, 46, 0.2);
  font-weight: 700;
  color: var(--color-dark);
}

.products-filter-acc__count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-soft);
  flex-shrink: 0;
}

.products-shop-toolbar {
  margin-bottom: var(--space-24);
  padding: var(--space-16) var(--space-20);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.products-shop-toolbar__count {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

.products-shop-toolbar__count strong {
  font-size: 1.35rem;
  color: var(--color-dark);
}

.products-shop-toolbar__hint {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  font-weight: 500;
}

.products-shop-empty {
  margin: 0;
  padding: var(--space-32);
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
  color: var(--color-text-soft);
}

.products-shop-group {
  margin-bottom: var(--space-40);
}

.products-shop-group__title {
  margin: 0 0 var(--space-16);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  padding-bottom: var(--space-8);
  border-bottom: 2px solid var(--color-primary);
}

.products-catalog-grid--shop {
  display: grid;
  gap: var(--space-16);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px) {
  .products-catalog-grid--shop {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Mağaza kartı: yatay düzen — genel .product-card-catalog sütunundan açıkça ayrılır */
.products-shop .product-card-catalog--shop {
  flex-direction: row;
  align-items: stretch;
  min-height: 148px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(7, 19, 26, 0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-fast), border-color var(--transition-fast);
}

.products-shop .product-card-catalog--shop:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(245, 184, 46, 0.45);
}

.products-shop .product-card-catalog--shop .product-card-catalog__media {
  width: 38%;
  max-width: 200px;
  min-width: 120px;
  flex-shrink: 0;
  aspect-ratio: 1;
  align-self: stretch;
}

.products-shop .product-card-catalog--shop .product-card-catalog__body {
  padding: var(--space-16) var(--space-20);
  justify-content: center;
}

.products-shop .product-card-catalog--shop .product-card-catalog__title {
  font-size: 1rem;
}

.products-shop .product-card-catalog--shop .product-card-catalog__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 520px) {
  .products-shop .product-card-catalog--shop {
    flex-direction: column;
    min-height: 0;
  }

  .products-shop .product-card-catalog--shop .product-card-catalog__media {
    width: 100%;
    max-width: none;
    min-width: 0;
    aspect-ratio: 16 / 10;
  }
}

.product-card-catalog__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-dark);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-dark);
  background: var(--color-white);
}

.product-card-catalog__cta:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-dark);
}

.product-detail-shell {
  padding-bottom: var(--space-48);
}

.product-detail-grid {
  display: grid;
  gap: var(--space-32);
  align-items: start;
}

@media (min-width: 880px) {
  .product-detail-grid {
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
    gap: var(--space-40);
  }
}

.product-detail__aside {
  position: relative;
}

.product-detail__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.product-detail__wa-below {
  margin-top: var(--space-16);
}

.product-detail__wa-cta {
  width: 100%;
  justify-content: center;
}

.product-detail__taxonomy {
  margin: 0 0 var(--space-16);
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: grid;
  gap: var(--space-12);
}

.product-detail__tax-row {
  display: grid;
  grid-template-columns: minmax(100px, 140px) 1fr;
  gap: var(--space-12);
  font-size: 0.92rem;
}

.product-detail__tax-row dt {
  margin: 0;
  font-weight: 700;
  color: var(--color-text-soft);
}

.product-detail__tax-row dd {
  margin: 0;
  font-weight: 600;
  color: var(--color-text);
}

.product-detail__price {
  margin: 0 0 var(--space-12);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-dark);
}

.product-detail__lead {
  margin: 0 0 var(--space-20);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-text);
}

.product-detail__body {
  font-size: 1rem;
  line-height: 1.65;
}
