/* =========================================================
   vitrin.css — YALNIZ vitrin ana sayfası (/)
   Renk/font değişkenleri tenant temasından gelir (ThemePresets.BuildCssVariables).
   ========================================================= */

:root {
  /* Fallback values if variables are not provided by C# dynamic styles */
  --bg: #f5f5f2;
  --surface: #ffffff;
  --surface-2: #f1f2ee;
  --ink: #20221f;
  --muted: #777d76;
  --line: #e7e9e4;
  --brand: #e95c78;
  --brand-hover: #c83f5d;
  --brand-soft: #fff0f3;
  --accent: #f5c928;
  --accent-soft: #fff7d7;
  --bg-glass: color-mix(in srgb, var(--surface) 85%, transparent);
  --border-glass: color-mix(in srgb, var(--ink) 12%, transparent);
  
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-s: 0 4px 14px rgba(28, 18, 12, 0.05);
  --shadow-m: 0 12px 30px rgba(28, 18, 12, 0.06);
  --shadow-l: 0 26px 70px rgba(28, 18, 12, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --gap-section: 60px;
  --gap-inner: 20px;
  --pad-x: 16px;
}

@media (min-width: 900px) {
  :root {
    --pad-x: 32px;
  }
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -.01em;
}

/* --- Bölüm görünürlüğü: panel ayarının karşılığı --- */
@media (min-width: 900px) {
  .desktop-section-off {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .mobile-section-off {
    display: none !important;
  }
}

/* =========================================================
   Başlık (header) — kaydırınca incelir
   ========================================================= */
.public-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  padding: 0 var(--pad-x);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: min-height 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.public-header.is-scrolled {
  min-height: 64px;
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-s);
}

@media (min-width: 1264px) {
  .public-header {
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  min-width: 0;
}

.brand-logo,
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: var(--brand);
  color: #FFF;
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--brand) 30%, transparent);
  display: grid;
  place-items: center;
  object-fit: cover;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  overflow: hidden;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.15;
}

.brand-copy small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-web-nav {
  display: none;
  gap: 32px;
  align-items: center;
}

.home-web-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.home-web-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width 0.3s var(--ease-smooth);
}

.home-web-nav a:hover,
.home-web-nav a.active {
  color: var(--ink);
}

.home-web-nav a:hover::after,
.home-web-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-web-cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 30px;
  background-color: var(--ink);
  color: #FFF;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 12px rgba(28, 18, 12, 0.1);
}

.home-web-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 18, 12, 0.2);
  background-color: var(--brand);
}

.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
}

.language-switch a {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.language-switch a.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-s);
}

@media (min-width: 900px) {
  .home-web-nav {
    display: flex;
  }
  .home-web-cta {
    display: inline-flex;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.home-hero {
  display: grid;
  grid-template-rows: auto auto;
  background: transparent;
  padding: 40px var(--pad-x) 24px;
  gap: 24px;
}

.home-hero-stage {
  grid-row: 1;
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-l);
  border: 1px solid var(--border-light, rgba(28, 18, 12, 0.08));
  transform: rotate(-1deg);
  transition: transform 0.5s var(--ease-spring);
}

.home-hero-stage:hover {
  transform: rotate(0) scale(1.02);
}

.home-hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.home-hero-stage:hover img {
  transform: scale(1.05);
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.home-hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.home-hero-copy {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.home-hero-eyebrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--brand) 15%, transparent);
  margin: 0;
}

.home-hero h1 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.15;
}

.home-hero h1 span {
  color: var(--brand);
}

.home-hero-copy > span {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

.home-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.home-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  background-color: var(--brand);
  color: #FFF;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand) 25%, transparent);
  transition: all 0.3s var(--ease-spring);
  padding: 0 24px;
}

.home-hero-primary:hover {
  transform: translateY(-3px);
  background-color: var(--brand-hover);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand) 35%, transparent);
}

.home-hero-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  background-color: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.3s var(--ease-spring);
  padding: 0 24px;
}

.home-hero-text-link:hover {
  background-color: var(--ink);
  color: #FFF;
  transform: translateY(-2px);
}

.home-hero-panel {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(28, 18, 12, 0.1);
  transform: translateY(0);
  transition: transform 0.3s var(--ease-spring);
  animation: float 4s ease-in-out infinite;
  color: var(--ink);
  z-index: 2;
}

.home-hero-stage:hover .home-hero-panel {
  transform: scale(1.05) translateY(-5px);
}

.home-hero-panel-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.home-hero-panel-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-hero-panel strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}

.home-hero-panel span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

.home-hero-controls {
  display: none !important;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 900px) {
  .home-hero {
    width: min(calc(100% - (var(--pad-x) * 2)), 1200px);
    min-height: 560px;
    grid-template-rows: auto;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    margin: 120px auto 40px;
    padding: 0;
  }
  .home-hero-copy {
    grid-row: auto;
  }
  .home-hero h1 {
    font-size: 56px;
    letter-spacing: -1.5px;
  }
  .home-hero-actions {
    flex-direction: row;
  }
  .home-hero-primary, .home-hero-text-link {
    width: auto;
  }
  .home-hero-stage {
    grid-row: auto;
    height: 500px;
  }
  .home-hero-panel {
    left: -20px;
    bottom: 30px;
  }
}

/* =========================================================
   Hızlı bilgi şeridi
   ========================================================= */
.home-web-quick-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(calc(100% - (var(--pad-x) * 2)), 1200px);
  margin: 40px auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.home-web-quick-strip .info-card {
  background: var(--surface);
  border: 1px solid var(--border-light, rgba(28, 18, 12, 0.08));
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(28, 18, 12, 0.02);
  transition: all 0.3s var(--ease-spring);
}

.home-web-quick-strip .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(28, 18, 12, 0.06);
  border-color: var(--brand);
}

.home-web-quick-strip .info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: all 0.3s ease;
}

.home-web-quick-strip .info-icon svg {
  width: 24px;
  height: 24px;
}

.home-web-quick-strip .info-card:hover .info-icon {
  background: var(--brand);
  color: #FFF;
}

.home-web-quick-strip .info-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-web-quick-strip strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-web-quick-strip span {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-top: 0;
  overflow-wrap: anywhere;
}

.home-web-quick-strip span a {
  color: inherit !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

a[href^="tel"] {
  color: inherit !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

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

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

/* =========================================================
   Bölüm kabuğu ve başlıkları
   ========================================================= */
.home-popular,
.showcase-gallery,
.showcase-testimonials {
  width: min(calc(100% - (var(--pad-x) * 2)), 1200px);
  margin: 0 auto;
  padding: 60px 0 0;
}

.home-popular-title,
.showcase-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 40px;
}

.showcase-section-title p {
  margin: 0;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.home-popular-title h2,
.showcase-section-title h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
}

.showcase-section-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  text-wrap: balance;
  line-height: 1.6;
  margin-top: 4px;
}

.btn-all-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 30px;
  background-color: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s var(--ease-spring);
  border: 1px solid color-mix(in srgb, var(--brand) 10%, transparent);
}

.btn-all-menu:hover {
  background-color: var(--brand);
  color: #FFF;
  transform: translateY(-2px);
}

/* =========================================================
   İmza lezzetler
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light, rgba(28, 18, 12, 0.08));
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 18, 12, 0.02);
  transition: all 0.3s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(28, 18, 12, 0.08);
  border-color: color-mix(in srgb, var(--brand) 20%, transparent);
}

.product-card > img,
.product-logo-fallback {
  width: 100%;
  height: 220px;
  object-fit: cover;
  aspect-ratio: auto;
  transition: transform 0.6s var(--ease-smooth);
}

.product-card:hover > img,
.product-card:hover .product-logo-fallback img {
  transform: scale(1.08);
}

.product-logo-fallback {
  display: grid;
  place-items: center;
  background: var(--surface-2);
}

.product-logo-fallback img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: .6;
}

.product-logo-fallback span {
  color: var(--brand);
  font-family: var(--display);
  font-size: 40px;
  font-weight: 800;
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.product-card-body h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  transition: color 0.2s ease;
  color: var(--ink);
}

.product-card:hover .product-card-body h3 {
  color: var(--brand);
}

.product-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
  white-space: normal;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.product-card-footer strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}

.product-card-action {
  width: 38px;
  height: 38px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s var(--ease-spring);
  font-size: 16px;
  flex-shrink: 0;
}

.product-card:hover .product-card-action {
  background: var(--brand);
  color: #FFF;
}

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

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

/* =========================================================
   Mekan galerisi (Bento Grid)
   ========================================================= */
.showcase-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 20px;
  height: auto;
  overflow: visible;
  background: transparent;
}

.showcase-gallery-grid figure {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 18, 12, 0.02);
  border: 1px solid var(--border-light, rgba(28, 18, 12, 0.08));
  transition: all 0.5s var(--ease-spring);
  margin: 0;
  opacity: 1;
  pointer-events: auto;
  height: 100%;
}

.showcase-gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.showcase-gallery-grid figure:hover img {
  transform: scale(1.06);
}

.showcase-gallery-grid figure:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.showcase-gallery-grid figure:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.showcase-gallery-grid figure:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.showcase-gallery-grid figure:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

/* Bento fallback grid styling if fewer than 4 elements */
.showcase-gallery-grid.fallback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.showcase-gallery-grid.fallback-grid figure {
  flex: 1 1 calc(50% - 10px);
  height: 250px;
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.gallery-more {
  display: none !important;
}

@media (max-width: 1024px) {
  .showcase-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .showcase-gallery-grid figure:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .showcase-gallery-grid figure:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .showcase-gallery-grid figure:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .showcase-gallery-grid figure:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
}

@media (max-width: 768px) {
  .showcase-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .showcase-gallery-grid figure {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
  }
  .showcase-gallery-grid.fallback-grid figure {
    flex: 1 1 100%;
  }
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: rgba(12, 13, 11, .93);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-frame {
  max-width: min(1100px, 100%);
  max-height: 84vh;
  margin: 0;
}

.gallery-lightbox-frame img {
  max-width: 100%;
  max-height: 84vh;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 16px;
}

/* =========================================================
   Müşteri yorumları
   ========================================================= */
.showcase-testimonials {
  width: min(calc(100% - (var(--pad-x) * 2)), 1200px);
  padding: 60px 0;
}

.showcase-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.showcase-testimonial-grid blockquote {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  margin: 0;
  padding: 32px;
  border: 1px solid var(--border-light, rgba(28, 18, 12, 0.08));
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(28, 18, 12, 0.02);
  transition: all 0.3s var(--ease-spring);
}

.showcase-testimonial-grid blockquote:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(28, 18, 12, 0.06);
  border-color: color-mix(in srgb, var(--brand) 15%, transparent);
}

.showcase-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  font-size: 18px;
}

.showcase-testimonial-grid blockquote > p {
  flex: 1;
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.showcase-testimonial-grid footer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: none;
  padding-top: 0;
}

.showcase-testimonial-grid footer span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
}

.showcase-testimonial-grid footer strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

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

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

/* =========================================================
   Menüye yönlendirme (CTA)
   ========================================================= */
.showcase-cta {
  background: var(--ink);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(28, 18, 12, 0.15);
  width: min(calc(100% - (var(--pad-x) * 2)), 1200px);
  margin: 60px auto;
}

.showcase-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 12%, transparent) 0%, rgba(0, 0, 0, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.showcase-cta h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 600px;
  line-height: 1.1;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.showcase-cta > span {
  display: block;
  font-size: 16px;
  opacity: 0.8;
  max-width: 480px;
  margin: 20px auto 12px;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
}

.showcase-cta > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background-color: var(--brand);
  color: #FFF;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--brand) 40%, transparent);
  transition: all 0.3s var(--ease-spring);
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.showcase-cta > a:hover {
  transform: translateY(-3px);
  background-color: var(--brand-hover);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand) 50%, transparent);
}

/* =========================================================
   Alt bilgi (footer)
   ========================================================= */
.public-footer {
  background: #110A07;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  gap: 22px;
  width: min(calc(100% - (var(--pad-x) * 2)), 1200px);
  margin: 0 auto;
  padding: 0 0 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-logo-text {
  color: #FFF;
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  margin: 0;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-icon-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  color: var(--brand);
}

.footer-contact-info a:hover {
  color: #FFF;
}

.footer-col h4 {
  color: #FFF;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 24px;
  letter-spacing: normal;
  text-transform: none;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.footer-col ul a:hover {
  color: #FFF;
}

.hours-val {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(calc(100% - (var(--pad-x) * 2)), 1200px);
  margin: 0 auto;
  padding: 30px 0 0;
}

.footer-bottom-container p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.powered-by a {
  color: var(--brand);
  font-weight: 700;
}

@media (min-width: 900px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
  }
}

/* =========================================================
   Animasyonlar (Intersection Observer)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}

.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

.home-hero-stage.scale-in {
  transform: scale(0.9) rotate(-1deg);
}

.home-hero-stage.scale-in.active {
  transform: scale(1) rotate(-1deg);
}

.home-hero-stage.scale-in.active:hover {
  transform: scale(1.02) rotate(0deg);
}
