/* Ekinciler Cam Balkon — koyu üst şerit + açık içerik, kırmızı vurgular */
:root {
  --cyan: #00d9ff;
  --cyan-dim: #00a8cc;
  --red: #e11d48;
  --red-deep: #9f1239;
  --red-soft: #fecdd3;
  --bg: #06080c;
  --bg-elev: #10141c;
  --text: #f1f5f9;
  --muted: #a8b8c6;
  --border: #273244;
  --radius: 12px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --ink: #0f172a;
  --ink-muted: #475569;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section:not(.hero) a:not(.btn):not(.wa-float):not(.fab-call) {
  color: var(--red-deep);
  font-weight: 600;
}

section:not(.hero) a:not(.btn):not(.wa-float):not(.fab-call):hover {
  color: var(--red);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Üst bar */
.topbar {
  background: var(--bg-elev);
  border-bottom: 2px solid var(--red);
  font-size: 0.875rem;
  color: #e2e8f0;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.5rem 0;
}

.topbar a {
  color: var(--text);
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
  text-decoration: none;
}

.topbar a[href^="tel:"] {
  color: var(--red-soft);
  font-weight: 700;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 12, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(225, 29, 72, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.logo-link:hover {
  text-decoration: none;
  opacity: 0.95;
}

.logo-link img {
  height: 52px;
  width: auto;
}

.logo-link__text {
  display: none;
}

@media (min-width: 480px) {
  .logo-link__text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--muted);
    line-height: 1.2;
    max-width: 12rem;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red-soft);
}

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

.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
}

.nav.is-open {
  display: flex;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
  }
}

.nav a {
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover {
  background: rgba(225, 29, 72, 0.15);
  color: #fff;
  text-decoration: none;
}

.nav a.nav-link--active {
  color: #fff;
  background: rgba(225, 29, 72, 0.35);
  box-shadow: inset 0 0 0 1px rgba(254, 202, 202, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, #fb7185, var(--red) 45%, var(--red-deep));
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 22px rgba(225, 29, 72, 0.45);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px rgba(225, 29, 72, 0.55);
  filter: brightness(1.05);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.06);
  color: #e0f2fe;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

section:not(.hero) .btn--outline {
  background: #fff;
  color: var(--red-deep);
  border: 2px solid var(--red);
}

section:not(.hero) .btn--outline:hover {
  background: #fff1f2;
  color: var(--red);
}

/* Hero slider */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero__slide-media,
.hero__slide-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(4, 8, 12, 0.92) 0%,
    rgba(4, 8, 12, 0.55) 55%,
    rgba(0, 80, 100, 0.35) 100%
  );
}

/* Slayt arka plan görselleri PHP ile inline style olarak verilir */

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(78vh, 640px);
  padding: 4rem 0 5rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 18ch;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65), 0 0 1px rgba(0, 0, 0, 0.8);
}

.hero .lead {
  font-size: 1.12rem;
  color: #f1f5f9;
  max-width: 42ch;
  margin: 0 0 1.75rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}

.hero__dot.is-active {
  background: var(--red);
  box-shadow: 0 0 14px rgba(225, 29, 72, 0.85);
}

/* Bölümler — hero dışı açık zemin, okunaklı metin */
section {
  padding: 3.5rem 0;
}

section:not(.hero) {
  color: var(--ink);
  border-bottom: 1px solid #e2e8f0;
}

section:not(.hero):nth-of-type(odd) {
  background: var(--surface-muted);
}

section:not(.hero):nth-of-type(even) {
  background: var(--surface);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--red);
  letter-spacing: 0.01em;
}

.section-sub {
  color: var(--ink-muted);
  margin: 0 0 2rem;
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Anasayfa ürün vitrini (4 görsel) */
.grid-4 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.showcase-card {
  border-radius: var(--radius);
  overflow: hidden;
}

section:not(.hero) .showcase-card {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

section:not(.hero) .showcase-card figcaption {
  color: var(--ink);
}

section:not(.hero) .showcase-card span {
  color: var(--ink-muted);
}

.showcase-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.showcase-card figcaption {
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.showcase-card span {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card h3,
.card h2.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

section:not(.hero) .card {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
}

section:not(.hero) .card h3,
section:not(.hero) .card h2.card__title {
  color: var(--red);
}

section:not(.hero) .card p {
  color: var(--ink-muted);
}

a.card.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.card.card--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border-color: #fecdd3;
}
.card__more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
}

.services-hub {
  padding-bottom: 3rem;
}
.services-hub__intro {
  max-width: 52rem;
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.services-hub__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}
.services-hub__note {
  flex: 1 1 100%;
  margin: 0 0 0.5rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card__link:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.service-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted, #f1f5f9);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
}

.service-card__teaser {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-muted);
  flex: 1;
}

.service-card__more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-deep);
}

.page-hero--compact {
  padding-bottom: 1.5rem;
}
.service-detail__lead {
  max-width: 40rem;
  margin: 0.5rem auto 0;
  color: var(--ink-muted);
}
.service-detail {
  padding-bottom: 3rem;
}
.service-detail__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .service-detail__grid {
    grid-template-columns: 1fr min(380px, 36%);
    align-items: start;
  }
}
.rich-content p {
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 1rem;
}
.rich-content__h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--red);
}
.rich-content__h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.service-detail__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}
.service-detail__figure img {
  width: 100%;
  height: auto;
  display: block;
}
.service-detail__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Galeri */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--bg-elev), #1a2830);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

section:not(.hero) .gallery-item {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  color: var(--ink-muted);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

/* Galeri — kategori hub + lightbox */
.gallery-breadcrumb {
  font-size: 0.9rem;
  margin: -0.5rem 0 1.25rem;
  color: var(--muted);
}
.gallery-breadcrumb a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.gallery-breadcrumb a:hover {
  text-decoration: underline;
}
.gallery-breadcrumb__sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.gallery-hub-section {
  padding-bottom: 3rem;
}
.gallery-hub {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) {
  .gallery-hub {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .gallery-hub {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .gallery-hub {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-hub-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: var(--surface);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}
.gallery-hub-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #1e293b, #0f172a);
}
.gallery-hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-hub-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 50%, #64748b 100%);
  opacity: 0.55;
}
.gallery-hub-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.88) 100%);
}
.gallery-hub-card__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.gallery-hub-card__meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.2rem;
}
.gallery-hub-card__seo {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  letter-spacing: 0;
}
.gallery-hub-lead,
.gallery-hero-lead {
  max-width: 52rem;
  margin: 0.75rem auto 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}
.gallery-hub-note {
  margin-top: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.gallery-cat-section {
  padding-bottom: 3rem;
}
.gallery-cat-heading {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  color: var(--ink);
}
.gallery-empty {
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.gallery-back-row {
  margin-top: 2rem;
}

.gallery-grid--thumbs {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .gallery-grid--thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .gallery-grid--thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: #f1f5f9;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}
.gallery-thumb:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.12);
}

.gallery-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.gallery-figure__caption {
  margin: 0;
  padding: 0 0.15rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--ink-muted);
  text-align: left;
}
.gallery-seo-note {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox[hidden] {
  display: none;
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
}
.gallery-lightbox__dialog {
  position: relative;
  z-index: 2;
  width: min(96vw, 1200px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3rem;
  box-sizing: border-box;
}
.gallery-lightbox__figure {
  margin: 0;
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.gallery-lightbox__caption {
  margin: 0;
  max-width: 52rem;
  padding: 0 0.5rem;
  color: #f8fafc;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.gallery-lightbox__zoom {
  overflow: hidden;
  max-width: min(96vw, 1100px);
  max-height: calc(88vh - 3rem);
  border-radius: 8px;
  cursor: zoom-in;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.gallery-lightbox__zoom.is-zoomed {
  cursor: zoom-out;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.gallery-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(88vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-lightbox__zoom:hover .gallery-lightbox__img {
  transform: scale(1.06);
}
.gallery-lightbox__zoom.is-zoomed .gallery-lightbox__img,
.gallery-lightbox__zoom.is-zoomed:hover .gallery-lightbox__img {
  transform: scale(1.85);
  max-width: none;
  max-height: none;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-thumb,
  .gallery-thumb img,
  .gallery-lightbox__img {
    transition: none;
  }
  .gallery-thumb:hover,
  .gallery-thumb:focus-visible,
  .gallery-thumb:hover img,
  .gallery-thumb:focus-visible img,
  .gallery-lightbox__zoom:hover .gallery-lightbox__img,
  .gallery-lightbox__zoom.is-zoomed .gallery-lightbox__img {
    transform: none;
  }
}
.gallery-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__nav--prev {
  left: 0.25rem;
}
.gallery-lightbox__nav--next {
  right: 0.25rem;
}
@media (max-width: 600px) {
  .gallery-lightbox__dialog {
    padding: 2.75rem 0.5rem 2rem;
  }
  .gallery-lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }
  .gallery-lightbox__nav--prev {
    left: 0.1rem;
  }
  .gallery-lightbox__nav--next {
    right: 0.1rem;
  }
}

/* ==========================================================================
   POPUP (AÇILIR DUYURU)
   ========================================================================== */
.home-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(5px);
}

.home-popup-content {
  background: #ffffff;
  padding: 3rem 2rem 2.5rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  border: 2px solid var(--red);
}

.home-popup-overlay[aria-hidden="false"] .home-popup-content {
  transform: translateY(0) scale(1);
}

.home-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-popup-close:hover {
  background: var(--red);
  color: white;
  transform: rotate(90deg);
}

.home-popup-title {
  color: var(--red);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.home-popup-body {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==========================================================================
   HAKKIMIZDA (ABOUT) PAGE
   ========================================================================== */
.about-section {
  padding: 4rem 0;
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.about-image-wrapper {
  position: relative;
}
.about-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid var(--surface);
}
.about-badge strong {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-badge span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: 600;
}
@media (max-width: 899px) {
  .about-badge {
    bottom: 10px;
    left: 10px;
    border-width: 2px;
    padding: 1rem;
  }
  .about-badge strong {
    font-size: 1.5rem;
  }
}
.about-features {
  background: var(--bg-elev);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.about-feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 2rem 1.5rem;
}
.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.about-feature-icon {
  color: var(--red);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
}

/* Form */
.form {
  max-width: 520px;
}

.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

section:not(.hero) .form label {
  color: var(--ink);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  font: inherit;
}

section:not(.hero) .form input,
section:not(.hero) .form select,
section:not(.hero) .form textarea {
  background: #fff;
  border: 1px solid #cbd5e1;
  color: var(--ink);
}

section:not(.hero) .form input::placeholder,
section:not(.hero) .form textarea::placeholder {
  color: #94a3b8;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Fiyat teklifi — iki sütun, sağ kart yapışkan + derin gölge (3D kart hissi) */
.teklif-section {
  padding: 2rem 0 3rem;
  background: var(--surface-muted);
}

.teklif-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.teklif-aside__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--ink);
  font-weight: 800;
}

.teklif-aside__lead {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 48ch;
}

.teklif-aside__list {
  margin: 0;
}

.teklif-aside__spacer {
  display: none;
}

.teklif-form-wrap {
  min-width: 0;
}

.teklif-form-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -6px rgba(15, 23, 42, 0.1),
    0 20px 40px -12px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateZ(0);
}

.teklif-form-card .teklif-form {
  max-width: none;
}

.teklif-form-card__note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .teklif-layout {
    grid-template-columns: 1fr minmax(300px, 420px);
    gap: 2.5rem 3rem;
  }

  .teklif-aside__spacer {
    display: block;
    min-height: 8rem;
  }

  .teklif-form-card {
    position: sticky;
    top: 5.75rem;
    z-index: 10;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .teklif-form-card {
    transition: box-shadow 0.28s ease;
  }

  @media (hover: hover) {
    .teklif-form-card:hover {
      box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.06),
        0 14px 32px -8px rgba(15, 23, 42, 0.14),
        0 28px 56px -14px rgba(225, 29, 72, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
  }
}

/* Fiyat teklifi — yapılandırıcı (balon seçenekler + 3D) */
.teklif-layout--solo {
  grid-template-columns: 1fr;
  max-width: min(100% - 2rem, 920px);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .teklif-layout.teklif-layout--solo {
    grid-template-columns: 1fr;
  }
}

.teklif-section--config .teklif-layout {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .teklif-section--config .teklif-form-card {
    max-width: none;
    width: 100%;
    max-height: none;
    overflow: visible;
  }
}

.teklif-form-card--wide {
  max-width: none;
}

.teklif-errors {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #9f1239;
  font-size: 0.9rem;
}

.teklif-errors p {
  margin: 0.25rem 0;
}

.teklif-fieldset {
  margin: 0 0 1.75rem;
  padding: 0;
  border: none;
}

.teklif-fieldset legend {
  padding: 0;
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}

.teklif-fieldset--3d {
  margin-bottom: 1.25rem;
}

.req {
  color: var(--red);
  font-weight: 700;
}

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

.teklif-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1rem;
}

.teklif-row--tight {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .teklif-row {
    grid-template-columns: 1fr;
  }
}

/* Balon seçenekler */
.opt-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.55rem;
  align-items: stretch;
}

.opt-bubble {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  border-radius: 999px;
  border: 2px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.06),
    0 8px 20px -8px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.opt-bubble:hover {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.08),
    0 12px 28px -10px rgba(225, 29, 72, 0.12),
    inset 0 1px 0 #fff;
  transform: translateY(-1px);
}

.opt-bubble input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.opt-bubble__viz {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
  color: var(--red-deep);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), 0 1px 3px rgba(15, 23, 42, 0.08);
}

.opt-bubble__svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.opt-bubble__swatch {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.25),
    0 2px 6px rgba(15, 23, 42, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.opt-bubble__text {
  pointer-events: none;
  line-height: 1.2;
  padding-right: 0.15rem;
}

.opt-bubble:has(input:focus-visible) {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.opt-bubble:has(input:checked) {
  border-color: var(--red);
  background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
  box-shadow:
    0 0 0 3px rgba(225, 29, 72, 0.12),
    0 6px 16px -4px rgba(225, 29, 72, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--red-deep);
  transform: translateY(-1px);
}

.opt-bubble:has(input:checked) .opt-bubble__viz {
  background: linear-gradient(145deg, #ffe4e6, #fecdd3);
  color: #9f1239;
}

.opt-bubbles--glass .opt-bubble,
.opt-bubbles--frame .opt-bubble {
  padding-left: 0.4rem;
}

.teklif-3d {
  width: 100%;
  min-height: 280px;
  height: min(42vw, 360px);
  max-height: 400px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.teklif-3d canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.teklif-summary {
  margin: 1rem 0 0.5rem;
  padding: 1rem 0 0;
  border-top: 1px solid #e2e8f0;
}

.teklif-summary__m2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--ink);
}

.teklif-summary__m2 strong {
  color: var(--red);
  font-size: 1.25rem;
}

.teklif-actions {
  margin-top: 0.5rem;
}

.teklif-actions .btn--primary {
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.teklif-wa-hint {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #14532d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.teklif-wa-hint strong {
  color: #166534;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0c1018 0%, #06080c 100%);
  border-top: 3px solid var(--red);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer__brand strong {
  color: #fff;
  font-size: 1.05rem;
}

.footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(225, 29, 72, 0.35);
  font-size: 0.85rem;
  color: #cbd5e1;
  text-align: center;
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer__brand p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
}

.social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: #fecaca;
  text-decoration: none;
}

.social a:hover {
  background: rgba(225, 29, 72, 0.2);
  color: #fff;
  text-decoration: none;
}

.social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

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

/* WhatsApp sabit */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
}

.wa-float--ready {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35), 0 4px 24px rgba(37, 211, 102, 0.55);
  animation: wa-float-pulse 2s ease-in-out infinite;
}

@keyframes wa-float-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.45), 0 6px 28px rgba(37, 211, 102, 0.65);
  }
}

.wa-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Sayfa başlığı (iç sayfalar) — beyaz şerit, kırmızı başlık */
.page-hero {
  padding: 2.5rem 0 1.75rem;
  border-bottom: 3px solid var(--red);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-muted) 100%);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--red);
  font-weight: 800;
}

.about-section__h2 {
  text-align: left;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}
.about-inline-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.about-features__grid {
  margin-top: 2.5rem;
}
.about-feature-card__text {
  margin: 0;
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.45;
}
.about-features__footer {
  text-align: center;
  margin-top: 3rem;
}
.about-features__footer p {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.about-features__footer a {
  color: var(--red);
  font-weight: 600;
}

.page-hero p {
  margin: 0.5rem 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
}

.list-check {
  padding-left: 1.2rem;
  color: var(--muted);
}

section:not(.hero) .list-check {
  color: var(--ink-muted);
  list-style-type: disc;
  padding-left: 1.35rem;
}

section:not(.hero) .list-check li::marker {
  color: var(--red);
}

.list-check li {
  margin-bottom: 0.35rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-meta cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial-source {
  font-size: 0.75rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-source::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill="%23EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/><path fill="%234285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/><path fill="%23FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/><path fill="%2334A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/></svg>') no-repeat center center;
}

/* Eski testimonial kurallarını eziyoruz */
section:not(.hero) .testimonial {
  color: var(--ink);
}

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

.testimonial-star {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1;
}

.testimonial-star.is-on {
  color: #f59e0b;
}

.testimonials-cta {
  margin-top: 1.75rem;
  text-align: center;
}

.testimonials-cta .btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  background: #fff;
}

.testimonials-cta .btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.premium-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.site-loader__spinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.24);
  border-top-color: #e11d48;
  animation: spinLoader 0.8s linear infinite;
}
@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

.district-hero {
  padding: 2.5rem 0 1rem;
  background: radial-gradient(circle at 12% 8%, rgba(225, 29, 72, 0.12), transparent 56%);
}
.district-hero__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}
.district-hero__lead {
  color: var(--ink-muted);
  line-height: 1.7;
}
.district-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.district-hero__media picture,
.district-hero__media img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.district-services,
.district-faq {
  padding: 2rem 0;
}
.district-form-section {
  padding: 1rem 0 2rem;
}
.district-form-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1rem;
}
.district-form-card,
.district-map-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 1rem;
}
.district-quote-form input,
.district-quote-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  margin-bottom: 0.7rem;
  font: inherit;
}
.district-quote-form button {
  border: none;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
}
.district-map-card iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 12px;
}

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.blog-cats a {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
}
.blog-cats a.is-active,
.blog-cats a:hover {
  border-color: var(--red);
  color: var(--red);
}
.blog-card__cat,
.blog-card__read,
.blog-post__meta {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.blog-post__recommended {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #fff;
}
.blog-post__recommended ul {
  margin: 0.5rem 0 0;
}

.home-local-seo {
  padding: 2rem 0;
  background: #f8fafc;
}
.home-local-seo__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}
.home-local-seo iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 12px;
}
.home-local-seo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Müşteri yorumları — hafif kırmızı tonlu bant */
.section--testimonials {
  background: linear-gradient(180deg, #fff5f5 0%, #fef2f2 40%, #f8fafc 100%) !important;
  border-block: 1px solid rgba(225, 29, 72, 0.25) !important;
}

section:not(.hero) > .container > p {
  color: var(--ink-muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

/* ——— Hizmet bölgeleri (şık düzen + SEO sayfası) ——— */
.regions-page .site-footer {
  margin-top: 0;
}

.regions-scene {
  position: relative;
  min-height: calc(100vh - 140px);
  padding: 2.5rem 1rem 4rem;
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(0, 217, 255, 0.12), transparent 55%),
    radial-gradient(900px 500px at 20% 80%, rgba(0, 120, 140, 0.25), transparent 50%),
    radial-gradient(800px 480px at 90% 60%, rgba(30, 60, 80, 0.35), transparent 45%),
    linear-gradient(165deg, #05080c 0%, #0a1218 40%, #061016 100%);
  background-attachment: fixed;
}

.regions-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.25rem 2rem 0;
  border-radius: 22px;
  border: 1px solid rgba(0, 217, 255, 0.12);
  background: rgba(14, 16, 22, 0.88);
  backdrop-filter: blur(14px);
  box-shadow:
    0 4px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 640px) {
  .regions-panel {
    padding: 1.5rem 1.15rem 0;
    border-radius: 16px;
  }
}

.regions-panel__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.regions-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.regions-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(120deg, #fff 0%, #b8e8f5 45%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.regions-accent-line {
  width: 56px;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.regions-seo {
  margin: 0 0 2rem;
  padding: 0 0.25rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
  text-align: center;
  max-width: 72ch;
  margin-inline: auto;
}

.regions-block {
  margin-bottom: 2rem;
}

.regions-block__heading {
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.regions-block__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-dim);
}

.regions-block__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.regions-block--accent .regions-block__title {
  color: #fecaca;
}

.regions-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
}

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

.regions-place {
  margin: 0;
  padding: 0;
}

.regions-tag--rich {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0.85rem 1rem;
}

.regions-tag--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.regions-tag--link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.regions-place__name {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.regions-block--accent .regions-place__name {
  color: #991b1b;
}

.regions-place__note {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  color: #64748b;
}

.regions-map__address {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.regions-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.regions-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.regions-block--neutral .regions-tag::before,
.regions-block--accent .regions-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.regions-block--neutral .regions-tag::before {
  background: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.25);
}

.regions-block--accent .regions-tag::before {
  background: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.regions-tag:hover,
.regions-tag--link:hover {
  border-color: rgba(0, 217, 255, 0.45);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.15);
  transform: translateY(-2px);
  background: #fff;
}

.regions-block--accent .regions-tag:hover,
.regions-block--accent .regions-tag--link:hover {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.18);
  background: #fffbfb;
}

.regions-tag--link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.regions-map-wrap {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.regions-map__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.regions-map__sub {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.regions-map-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  max-height: 380px;
  min-height: 280px;
  background: #e8eef4;
}

.regions-map-frame iframe,
.regions-map-frame__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.regions-map-frame__overlay {
  position: absolute;
  z-index: 3;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
  border: 1px solid #e2e8f0;
}

.regions-map-frame__overlay:hover {
  background: #fff;
  color: var(--red);
}

.regions-google-tip {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.regions-google-tip a {
  color: var(--cyan);
}

.regions-cta-bar {
  margin: 2rem -2rem 0;
  padding: 1.35rem 1.75rem 1.75rem;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(135deg, #1a0a0c 0%, #0f172a 55%, #0c1828 100%);
  border-top: 2px solid var(--red);
  text-align: center;
}

@media (max-width: 640px) {
  .regions-cta-bar {
    margin: 2rem -1.15rem 0;
    border-radius: 0 0 16px 16px;
    padding: 1.2rem 1rem 1.5rem;
  }
}

.regions-cta-bar p {
  margin: 0 0 1rem;
  color: #dce6ec;
  font-size: 0.95rem;
  line-height: 1.55;
}

.regions-cta-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Sabit arama (bölgeler sayfası) */
.fab-call {
  display: none;
}

.fab-call:hover {
  display: none;
}

/* Bölgeler sayfası — açık zemin + kırmızı vurgular (metin net) */
.regions-page .regions-scene {
  background: linear-gradient(165deg, #e8ecf1 0%, #f8fafc 50%, #eef1f5 100%);
  background-attachment: scroll;
}

.regions-page .regions-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.1);
}

.regions-page .regions-kicker {
  color: var(--ink-muted);
}

.regions-page .regions-title {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--red);
}

.regions-page .regions-accent-line {
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.regions-page .regions-seo {
  color: var(--ink-muted);
}

.regions-page .regions-block__heading {
  border-bottom-color: #e2e8f0;
}

.regions-page .regions-block__eyebrow {
  color: var(--red-deep);
}

.regions-page .regions-block__title {
  color: var(--ink);
}

.regions-page .regions-block--accent .regions-block__title {
  color: var(--red);
}

.regions-page .regions-map-wrap {
  border-top-color: #e2e8f0;
}

.regions-page .regions-map__title {
  color: var(--ink);
}

.regions-page .regions-map__sub {
  color: var(--ink-muted);
}

.regions-page .regions-map-frame {
  border-color: #cbd5e1;
}

.regions-page .regions-google-tip {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: var(--ink-muted);
}

.regions-page .regions-google-tip a {
  color: var(--red-deep);
}

.contact-page .regions-map-wrap {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-page .regions-map__title {
  color: var(--ink);
}

.contact-page .regions-map__sub {
  color: var(--muted);
}

.contact-page .regions-map-frame {
  border-color: var(--border);
}

.contact-page .regions-google-tip {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: var(--muted);
}

.contact-page .regions-google-tip a {
  color: var(--red-deep);
}

.contact-footer-note {
  margin-top: 2rem;
}

.contact-service-areas {
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.contact-service-areas__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.contact-service-areas__text {
  margin: 0;
  line-height: 1.65;
}

.contact-service-areas__text small {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.contact-service-areas__link {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
}

.contact-service-areas__link a {
  font-weight: 700;
  color: var(--red-deep);
  text-decoration: none;
}

.contact-service-areas__link a:hover {
  text-decoration: underline;
}

.regions-cta-bar .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
}

.regions-cta-bar .btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* ——— SSS / Blog ——— */
.faq-section {
  padding: 3rem 0;
}

.faq-section--home {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid var(--border);
}

.faq-section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
}

.faq-section__sub {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 52ch;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(185, 28, 28, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.faq-item__q {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--red);
}

.faq-item[open] .faq-item__q::after {
  content: "−";
}

.faq-item__a {
  padding: 0 1.15rem 1rem;
  border-top: 1px solid #f1f5f9;
}

.faq-item__a p {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.faq-section__more {
  margin: 1.5rem 0 0;
  text-align: center;
}

.faq-page-wrap {
  padding-bottom: 3rem;
}

/* SSS sayfası — açık içerik alanı (koyu body üzerinde okunabilirlik) */
.page-faq .faq-page-wrap {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-faq .faq-section__sub {
  color: var(--ink-muted);
}

.faq-page-cta {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.page-faq .faq-page-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.page-faq .faq-page-cta strong {
  color: var(--ink);
}

.page-faq .faq-page-cta .btn--outline {
  background: #fff;
  color: var(--red-deep);
  border: 2px solid var(--red);
}

.page-faq .faq-page-cta .btn--outline:hover {
  background: #fff1f2;
  color: var(--red);
  border-color: var(--red-deep);
}

.faq-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1rem;
}

.blog-hub {
  padding: 2rem 0 3.5rem;
}

.blog-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.15s;
}

.blog-card__inner:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

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

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

.blog-card__body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.blog-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.blog-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--red-deep);
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.blog-card__more {
  align-self: flex-start;
}

.blog-hub__faq {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.blog-hub__faq a {
  color: var(--red-deep);
  font-weight: 600;
}

.blog-post__head {
  padding: 1.5rem 0 1rem;
}

.blog-post__date {
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-post__title {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.blog-post__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 60ch;
}

.blog-post__hero {
  margin: 0;
  max-height: 420px;
  overflow: hidden;
}

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

.blog-post__content {
  padding: 2rem 0 2.5rem;
}

.blog-post__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 3rem;
}

.home-landing .faq-section--home .faq-section__title {
  color: #0f172a;
}

/* Blog yazı detay — açık içerik (alt URL /blog/slug) */
.page-blog-post .blog-post {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-blog-post .blog-post__title,
.page-blog-post .blog-post__lead,
.page-blog-post .blog-post__date {
  color: var(--ink);
}

.page-blog-post .blog-post__lead {
  color: var(--ink-muted);
}

.page-blog-post .rich-content,
.page-blog-post .rich-content p {
  color: var(--ink-muted);
}

.page-blog-post .rich-content__h2,
.page-blog-post .rich-content__h3 {
  color: var(--ink);
}

.page-blog-post .gallery-breadcrumb a {
  color: var(--red-deep);
}

/* ——— Anasayfa landing (referans düzen + Ekinciler) ——— */
.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;
}

body.home-landing .topbar--landing {
  background: var(--red);
  border-bottom: 0;
  color: #fff;
  font-weight: 600;
}

body.home-landing .topbar--landing a {
  color: #fff;
}

body.home-landing .topbar--landing a[href^="tel:"] {
  color: #fff;
  font-weight: 800;
}

body.home-landing .site-header--landing {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

body.home-landing .site-header--landing .logo-link {
  color: var(--ink);
}

body.home-landing .site-header--landing .logo-link__text {
  color: var(--ink-muted);
}

body.home-landing .site-header--landing .nav a {
  color: var(--ink);
}

body.home-landing .site-header--landing .nav a:hover {
  background: #fef2f2;
  color: var(--red);
}

body.home-landing .site-header--landing .nav a.nav-link--active {
  color: #fff;
  background: var(--red);
  box-shadow: none;
}

body.home-landing .site-header--landing .nav-toggle {
  -webkit-appearance: none;
  appearance: none;
  border-color: #94a3b8;
  background: #fff;
  color: var(--red);
}

/* Beyaz header — masaüstü: kırmızı çizgi; mobil ana sayfa: siyah çizgi (beyaz üzerinde net) */
body.home-landing .site-header--landing .nav-toggle span {
  background: var(--red);
  flex-shrink: 0;
  border-radius: 1px;
}

/* Mobil ana sayfa: açılır menü opak beyaz, yazılar siyah (backdrop + önbellek sorunlarına karşı güçlü seçiciler) */
@media (max-width: 899px) {
  body.home-landing header.site-header.site-header--landing {
    background: #ffffff !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid #e2e8f0;
  }

  body.home-landing header.site-header.site-header--landing .header__inner {
    background: #ffffff;
  }

  body.home-landing header.site-header nav.nav,
  body.home-landing header.site-header.site-header--landing nav.nav {
    isolation: isolate;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #ffffff !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  }

  body.home-landing header.site-header nav.nav a,
  body.home-landing header.site-header.site-header--landing nav.nav a {
    color: #0f172a !important;
    font-weight: 600;
  }

  body.home-landing header.site-header nav.nav a:hover,
  body.home-landing header.site-header.site-header--landing nav.nav a:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
  }

  body.home-landing header.site-header nav.nav a.nav-link--active,
  body.home-landing header.site-header.site-header--landing nav.nav a.nav-link--active {
    color: #ffffff !important;
    background: var(--red) !important;
  }

  body.home-landing .site-header--landing .nav-toggle {
    background: #ffffff !important;
    border-color: #cbd5e1;
  }

  body.home-landing .site-header--landing .nav-toggle span {
    background: #0f172a !important;
  }
}

.header__wa {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}

.header__wa:hover {
  filter: brightness(1.06);
  text-decoration: none !important;
}

@media (min-width: 900px) {
  body.home-landing .header__inner {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .header__wa {
    display: inline-flex;
  }
}

.hero--landing {
  min-height: min(88vh, 720px);
}

.hero__kicker {
  margin: 0 0 0.65rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffcc00; /* Şık bir altın/sarı tonu */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 204, 0, 0.5);
}

/* Ana sayfa: slayt tam genişlik, güven kartları hemen altında (dikey akış) */
body.home-landing .home-hero-trust {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

body.home-landing .home-hero-trust > .hero {
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Güven kartları bandı — slaytın altında */
body.home-landing section.home-trust {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
  background: var(--surface);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.home-trust__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

/* Tablet / geniş mobil: üç kart yan yana */
@media (min-width: 600px) {
  body.home-landing .home-trust__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.5rem, 2vw, 1rem);
  }
}

.trust-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.35;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  min-height: 0;
}

@media (min-width: 600px) and (max-width: 899px) {
  body.home-landing .home-trust .trust-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
  }

  body.home-landing .home-trust .trust-card__text {
    align-items: center;
  }

  body.home-landing .home-trust .trust-card__body {
    font-size: 0.75rem;
  }

  body.home-landing .home-trust .trust-card__title {
    font-size: 0.82rem;
  }

  body.home-landing .home-trust .trust-card__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

@media (min-width: 900px) {
  body.home-landing .home-trust .trust-card {
    padding: 1rem 1.1rem;
  }
}

.trust-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-card__title {
  display: block;
  font-weight: 800;
  font-size: clamp(0.9rem, 2.2vw, 1.02rem);
  line-height: 1.25;
}

.trust-card__body {
  margin: 0;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.trust-card--accent .trust-card__title {
  color: #fff;
}

.trust-card--accent .trust-card__body {
  color: rgba(255, 255, 255, 0.92);
}

.trust-card--light {
  background: #fff;
  color: var(--ink);
}

.trust-card--accent {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

.trust-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
}

.trust-card--light .trust-card__icon {
  background: var(--red);
  color: #fff;
}

.trust-card--accent .trust-card__icon {
  background: #fff;
  color: var(--red);
}

.home-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
}

.home-eyebrow--on-dark {
  color: #fecaca;
}

.section--flush {
  padding-top: 2rem !important;
}

.home-intro__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .home-intro__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.home-intro__title {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.home-intro__body {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-intro__body strong {
  color: var(--ink);
}

.home-intro__cta {
  margin: 1.5rem 0 0;
}

.home-intro__media {
  position: relative;
  margin: 0;
}

.home-intro__frame {
  border-radius: 4px;
  overflow: hidden;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 14%);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  border: 3px solid rgba(225, 29, 72, 0.35);
}

.home-intro__frame img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 280px;
  object-fit: cover;
}

.home-badge {
  position: absolute;
  right: 8%;
  top: 8%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--red);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.home-stats {
  background-color: #fff;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 18px 18px;
  border-block: 1px solid #e2e8f0;
}

.home-stats__inner {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.home-stats__big {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
}

.home-stats__caption {
  margin: 0.5rem 0 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}

.home-stats__lead {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.home-stats__metrics {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.home-stats__metrics li {
  text-align: center;
  min-width: 140px;
}

.home-stats__value {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--red);
}

.home-stats__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-muted);
}

section.home-features-dark {
  background: linear-gradient(165deg, #0c1118 0%, #151d2a 50%, #0a0e14 100%) !important;
  color: #e8eef4;
  border-color: transparent !important;
}

.home-features-dark__title {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  color: #fff;
  line-height: 1.25;
}

.home-features-dark__lead {
  margin: 0 auto 2rem;
  max-width: 62ch;
  text-align: center;
  color: #b8c4d0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-features-dark__grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 700px) {
  .home-features-dark__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .home-features-dark__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.home-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fecaca;
}

.home-feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.home-feature-card strong {
  color: #fff;
}

.home-showcase .section-title {
  text-align: center;
}

.home-showcase .section-sub {
  margin-inline: auto;
  text-align: center;
}

.home-showcase__empty {
  margin-top: 0.5rem;
  max-width: 36rem;
}

.home-split__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .home-split__grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.home-split__frame {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid rgba(225, 29, 72, 0.35);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

.home-split__frame img {
  width: 100%;
  display: block;
  min-height: 260px;
  object-fit: cover;
}

.home-split__title {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--ink);
}

.home-split__body {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.home-band {
  background: #f8fafc !important;
  border-block: 1px solid #e2e8f0 !important;
}

.home-band__inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.home-band__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
}

.home-band__body {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-process__grid {
  display: grid;
  gap: 2rem;
}

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

  .home-process__frame--mobile {
    display: none;
  }
}

.home-process__title {
  margin: 0.35rem 0 1rem;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--ink);
}

.home-process__intro {
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.home-process__frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.home-process__frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 899px) {
  .home-process__frame--desktop {
    display: none;
  }
}

.home-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-process__steps li {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.home-process__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-process__steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--ink);
}

.home-process__steps p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

section.home-final-cta {
  background: linear-gradient(135deg, #1a0a0c, #0f172a) !important;
  color: #e8eef4;
  border: none !important;
}

.home-final-cta__inner {
  text-align: center;
}

.home-final-cta .section-title {
  color: #fff;
}

.home-final-cta .section-sub {
  color: #cbd5e1;
  margin-inline: auto;
}

.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.home-final-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: transparent;
}

.home-final-cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Sabit telefon (tüm sayfalar) */
.call-float {
  position: fixed;
  right: 1.25rem;
  bottom: 4.75rem;
  z-index: 198;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.45);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.call-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.call-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
  filter: brightness(1.06);
}

.social-float {
  position: fixed;
  right: 1.25rem;
  z-index: 198;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-float:hover {
  transform: scale(1.1);
  color: #fff;
  text-decoration: none;
}

.social-float--ig {
  bottom: 8.25rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-float--fb {
  bottom: 11.75rem;
  background: #1877f2;
}

.social-float--yt {
  bottom: 15.25rem;
  background: #ff0000;
}

@media (max-width: 899px) {
  .wa-float, .call-float, .social-float {
    transform: scale(0.85); /* Mobilde hepsini eşit oranda biraz daha küçült */
    right: 0.75rem;
  }
  
  .wa-float:hover, .call-float:hover, .social-float:hover {
    transform: scale(0.95);
  }
  
  /* Mobilde butonların yüksekliklerini (bottom) yeniden ayarla */
  .wa-float { bottom: 1rem; }
  .call-float { bottom: 4rem; }
  .social-float--ig { bottom: 7rem; }
  .social-float--fb { bottom: 10rem; }
  .social-float--yt { bottom: 13rem; }
}

.regions-page .call-float {
  /* Removed to fix gap issue */
}

/* Ana sayfa mobil menü — nav--light-mobile (header.php ile eşleşir; harici CSS son sırada tekrar) */
@media (max-width: 899px) {
  nav.nav.nav--light-mobile {
    isolation: isolate;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  }

  nav.nav.nav--light-mobile a {
    color: #111827 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
  }

  nav.nav.nav--light-mobile a:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
  }

  nav.nav.nav--light-mobile a.nav-link--active {
    color: #ffffff !important;
    background: #e11d48 !important;
  }

  header.site-header.site-header--landing:has(.nav--light-mobile) {
    background: #ffffff !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}

/* Instagram embed: tam genişlik; tıklar iframe içinde kalır (sahte overlay yok) */
.home-ig-card__frame {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.home-ig-card__iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

/* Ana sayfa: yatay kaydırma — "Bursa'da uyguladığımız sistemler" + YouTube/Instagram */
.home-showcase-slider.showcase-slider-wrapper,
.home-videos-slider.showcase-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0 1rem;
}

.home-showcase-slider .showcase-slider,
.home-videos-slider .showcase-slider {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary, #e11d48) #e2e8f0;
}

.home-showcase-slider .showcase-slider::-webkit-scrollbar,
.home-videos-slider .showcase-slider::-webkit-scrollbar {
  height: 8px;
}

.home-showcase-slider .showcase-slider::-webkit-scrollbar-track,
.home-videos-slider .showcase-slider::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 4px;
}

.home-showcase-slider .showcase-slider::-webkit-scrollbar-thumb,
.home-videos-slider .showcase-slider::-webkit-scrollbar-thumb {
  background: var(--primary, #e11d48);
  border-radius: 4px;
}

/* Galeri vitrin kartları: yan yana, küçülmez */
.home-showcase-slider a.showcase-slide {
  flex: 0 0 min(78vw, 280px);
  max-width: 300px;
  min-width: 220px;
  flex-shrink: 0;
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-showcase-slider .showcase-slide__figure {
  margin: 0;
}

.home-showcase-slider a.showcase-slide:hover,
.home-showcase-slider a.showcase-slide:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}

.home-showcase-slider a.showcase-slide img {
  height: 250px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.home-showcase-slider a.showcase-slide:hover img,
.home-showcase-slider a.showcase-slide:focus-visible img {
  transform: scale(1.12);
}

@media (prefers-reduced-motion: reduce) {
  .home-showcase-slider a.showcase-slide,
  .home-showcase-slider a.showcase-slide img {
    transition: none;
  }

  .home-showcase-slider a.showcase-slide:hover,
  .home-showcase-slider a.showcase-slide:focus-visible,
  .home-showcase-slider a.showcase-slide:hover img,
  .home-showcase-slider a.showcase-slide:focus-visible img {
    transform: none;
  }
}

/* Videolar: YouTube satırı, hemen altında Instagram satırı */
.home-videos-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-videos-subtitle--yt {
  color: #ef4444;
}

.home-videos-subtitle--ig {
  margin-top: 1.75rem;
  color: #e1306c;
}

.home-video-slide {
  flex: 0 0 min(85vw, 360px);
  max-width: 360px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
}

.home-video-slide--ig {
  flex: 0 0 min(75vw, 280px);
  max-width: 280px;
  flex-shrink: 0;
}

.home-video-aspect--16x9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.home-video-aspect--16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #0f172a;
  display: block;
}

.home-video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-video-facade__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.92);
  color: #fff;
  font-size: 1.1rem;
  line-height: 3.25rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.home-ig-placeholder {
  margin: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  background: #f8fafc;
}

@media (min-width: 640px) {
  .home-showcase-slider a.showcase-slide {
    flex: 0 0 260px;
    min-width: 260px;
  }

  .home-video-slide {
    flex: 0 0 340px;
  }

  .home-video-slide--ig {
    flex: 0 0 260px;
    max-width: 260px;
  }
}

@media (min-width: 1024px) {
  .home-showcase-slider a.showcase-slide {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .home-video-slide {
    flex: 0 0 380px;
  }

  .home-video-slide--ig {
    flex: 0 0 280px;
    max-width: 280px;
  }
}
