/* ============================================================
   GESES DÜĞÜN YEMEKLERİ | Premium traditional Isparta identity
   ============================================================ */

/* ---------- DESIGN TOKENS & VARIABLES ---------- */
:root {
  --primary-dark:   #1c1c1c; /* Coal/Soot - Represents wood fire and luxury contrast */
  --gold-base:      #b88e2f; /* Deep copper/gold */
  --gold-light:     #e6c584; /* Soft warm glow gold */
  --gold-gradient:  linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  --white:          #ffffff;
  --off-white:      #fdfbf7; /* Warm Ivory/Linen background */
  --slate-dark:     #24262b; /* Secondary dark */
  --text-dark:      #2c2c2c; /* High contrast body copy */
  --text-light:     #7a7a7a; /* Subtle secondary text */
  --border-gold:    rgba(184, 142, 47, 0.15);
  --border-light:   rgba(0, 0, 0, 0.05);
  --shadow-sm:      0 4px 15px rgba(0, 0, 0, 0.02);
  --shadow-md:      0 12px 30px rgba(184, 142, 47, 0.05);
  --shadow-lg:      0 20px 50px rgba(0, 0, 0, 0.06);
  --transition-smooth: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast:   0.3s ease;
  --ease-out-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart:    cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration:   0.42s;
}

/* ---------- RESET & BASE STYLES ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  /* Soft linen texture effect */
  background-image: radial-gradient(rgba(184, 142, 47, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4, .serif-font {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-dark);
}

em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-base);
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-base);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.section-header .section-tag,
.section-header .section-title,
.section-header .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              border-color 0.25s ease,
              color 0.25s ease;
  cursor: pointer;
  outline: none;
  gap: 8px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(184, 142, 47, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 142, 47, 0.4);
  filter: brightness(1.05);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-outline-dark {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Nav anchor scroll (sticky header altında kalmaması için) */
#hizmetler,
#garson-temini,
#hakkimizda,
#galeri,
#referanslar,
section[id] {
  scroll-margin-top: 100px;
}

#iletisim,
#showcase {
  scroll-margin-top: 96px;
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.75rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@keyframes top-phone-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(230, 197, 132, 0);
    border-color: rgba(230, 197, 132, 0.35);
    background: rgba(255, 255, 255, 0.06);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(230, 197, 132, 0.12), 0 0 20px rgba(230, 197, 132, 0.35);
    border-color: rgba(230, 197, 132, 0.85);
    background: rgba(255, 255, 255, 0.14);
  }
}

@keyframes top-phone-blink {
  0%, 100% {
    opacity: 1;
    color: var(--white);
  }
  50% {
    opacity: 0.55;
    color: var(--gold-light);
  }
}

@keyframes top-phone-icon-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(184, 142, 47, 0.35);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(230, 197, 132, 0.55);
  }
}

.top-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(230, 197, 132, 0.28);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: top-phone-glow 2s ease-in-out infinite;
}

.top-phone-link:hover {
  animation: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(230, 197, 132, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.top-phone-link:hover .top-phone-number {
  animation: none;
  opacity: 1;
  color: var(--white);
}

.top-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(184, 142, 47, 0.35);
  animation: top-phone-icon-pulse 2s ease-in-out infinite;
}

.top-phone-link:hover .top-phone-icon {
  animation: none;
}

.top-phone-icon svg {
  display: block;
}

.top-phone-number {
  line-height: 1;
  animation: top-phone-blink 2s ease-in-out infinite;
}

/* Mobil: kaydırınca altta sabit arama */
.mobile-phone-dock {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .top-phone-link,
  .top-phone-number,
  .top-phone-icon,
  .mobile-phone-dock,
  .mobile-phone-dock .top-phone-number,
  .mobile-phone-dock .top-phone-icon {
    animation: none;
  }
}

.top-divider {
  opacity: 0.2;
}

.top-social {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-social a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.top-social a:hover {
  color: var(--white);
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: var(--white);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: padding var(--transition-fast), background var(--transition-fast);
}

.navbar.scrolled {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.logo-services {
  font-size: 0.75rem;
  color: var(--gold-base);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-left: 12px;
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 4px 0;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--gold-base);
}

/* Custom underline effect */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: calc(100% - 16px);
  left: 16px;
}

.nav-links li:last-child a::after {
  display: none; /* Hide underline on CTA */
}

/* Navigation CTA button styling */
.nav-links .nav-cta {
  background: var(--gold-gradient);
  color: var(--white) !important;
  padding: 5px 11px;
  font-weight: 700;
  border-radius: 6px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  box-shadow: 0 4px 10px rgba(184, 142, 47, 0.15);
}

.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(184, 142, 47, 0.25);
  filter: brightness(1.05);
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  transition: all 0.3s ease;
}

/* ---------- HERO — Tam ekran sinematik giriş ---------- */
.hero-cinema {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-cinema-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cinema-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-cinema-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 10, 8, 0.92) 0%, rgba(12, 10, 8, 0.72) 42%, rgba(12, 10, 8, 0.35) 68%, rgba(12, 10, 8, 0.55) 100%),
    linear-gradient(0deg, rgba(12, 10, 8, 0.85) 0%, transparent 45%);
}

.hero-cinema-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 1fr);
  gap: 40px;
  align-items: end;
  padding: 140px 0 36px;
}

.hero-cinema-copy {
  max-width: 640px;
  padding-bottom: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5d78e;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 215, 142, 0.35);
  backdrop-filter: blur(4px);
}

.hero-badge span {
  font-size: 0.95rem;
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.4rem;
  color: #f5d78e;
  margin-bottom: 8px;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
}

.hero-title span,
.hero-title-accent {
  background: linear-gradient(135deg, #f5d78e 0%, #d4a843 55%, #f0e6c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
  max-width: 540px;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  padding: 0;
}

.hero-pills li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(245, 215, 142, 0.4);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.btn-outline-light {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.hero-cinema-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(28, 28, 28, 0.75);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  border-left: 4px solid var(--gold-base);
  backdrop-filter: blur(8px);
}

.hero-food-badge .badge-icon {
  font-size: 1.4rem;
}

.hero-food-badge strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero-food-badge span:not(.badge-icon) {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-cinema-panel {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-panel-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-base);
  margin-bottom: 14px;
}

.hero-dishes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hero-dish {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--off-white);
}

.hero-dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.hero-dish:hover img {
  transform: scale(1.06);
}

.hero-dish-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.hero-cinema-bar {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid rgba(184, 142, 47, 0.2);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
}

.hero-cinema-bar .hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 22px 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.trust-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border-light);
}

.collage-container {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.collage-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  background-color: var(--white);
  aspect-ratio: 4/5;
  transition: transform var(--transition-smooth);
}

.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-main:hover img {
  transform: scale(1.05);
}

.collage-badge {
  position: absolute;
  bottom: 25px;
  left: -35px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatBadge 6s ease-in-out infinite;
}

.collage-badge .badge-icon {
  font-size: 1.5rem;
}

.collage-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.collage-badge span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
}

.collage-sub {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s;
}

.collage-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-sub-1 {
  top: -20px;
  right: -30px;
  animation: floatSub1 7s ease-in-out infinite;
}

.collage-sub-2 {
  bottom: 80px;
  right: -40px;
  animation: floatSub2 8s ease-in-out infinite;
}

.collage-sub:hover {
  transform: scale(1.1) rotate(5deg);
  z-index: 12;
}

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

@keyframes floatSub1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}

@keyframes floatSub2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}

/* ---------- SERVICES SECTION ---------- */
.services-brief {
  padding: 100px 0 60px 0;
  margin-top: -80px;
  position: relative;
  z-index: 20;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0; width: 100%; height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 24px;
  display: block;
}

.package-card .package-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-base);
  margin-top: 10px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Stats soft glow backgrounds */
.stats-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184, 142, 47, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 10;
}

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  line-height: 1.45;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* ---------- ABOUT SECTION (HAKKIMIZDA) ---------- */
.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 100%;
  max-width: 414px;
  height: auto;
  aspect-ratio: 414 / 577;
  object-fit: cover;
  object-position: center 38%;
  box-shadow: var(--shadow-lg);
  border: 12px solid var(--white);
  border-radius: 6px;
}

.about-img-enhanced {
  /* Orijinal çözünürlükte göster; büyütülünce bulanıklaşmasın */
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.about-badge-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 25px 35px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold-base);
  text-align: center;
}

.badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  display: block;
}

.about-text {
  padding-left: 20px;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.about-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feat {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  padding: 16px 20px;
  border-left: 3px solid var(--gold-base);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.feat:hover {
  transform: translateX(5px);
}

.feat-icon {
  font-size: 1.5rem;
}

.feat span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

/* ---------- SIGNATURE DISHES (SHOWCASE) ---------- */
.showcase {
  padding: 120px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184, 142, 47, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #faf7f1 0%, #f6f3ed 45%, #f0ebe2 100%);
  position: relative;
  overflow: hidden;
}

.showcase-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.showcase-ember {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(230, 197, 132, 0.9);
  opacity: 0.5;
  animation: emberFloat 8s ease-in-out infinite;
}

.showcase-ember--1 { left: 12%; bottom: 18%; animation-delay: 0s; }
.showcase-ember--2 { left: 78%; bottom: 24%; animation-delay: 2.5s; }
.showcase-ember--3 { left: 48%; bottom: 10%; animation-delay: 4.5s; }

@keyframes emberFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50% { transform: translate(12px, -28px) scale(1.2); opacity: 0.75; }
}

.showcase-inner {
  position: relative;
  z-index: 1;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-header .section-title {
  font-size: 3rem;
}

.showcase-stage {
  position: relative;
  padding-top: 12px;
  min-height: 420px;
}

.showcase-hand {
  position: absolute;
  left: var(--hand-x, 6%);
  bottom: 38%;
  width: clamp(76px, 11vw, 118px);
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  transform: translate(-42%, 12px) rotate(-6deg);
  transition:
    left 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-grid.is-presenting .showcase-hand,
.showcase-grid.is-finished .showcase-hand {
  opacity: 1;
  transform: translate(-42%, 0) rotate(-4deg);
}

.showcase-hand-svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.showcase-hand-tray {
  position: absolute;
  left: 58%;
  top: 42%;
  width: 28px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-item.is-current .showcase-hand-tray,
.showcase-grid.is-presenting .showcase-hand-tray {
  opacity: 1;
}

.showcase-grid {
  --scroll-progress: 0;
  --present-step: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.showcase-item {
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition:
    opacity 0.38s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color var(--transition-fast);
  opacity: 0.28;
  transform: translateX(-36px) translateY(16px) scale(0.9);
  overflow: visible;
}

.showcase-grid.is-presenting .showcase-item.is-presented,
.showcase-grid.is-finished .showcase-item {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

.showcase-item.is-current {
  transform: translateX(0) translateY(-10px) scale(1.04);
  box-shadow: 0 22px 48px rgba(184, 142, 47, 0.18);
  border-color: rgba(184, 142, 47, 0.45);
  z-index: 3;
}

.showcase-grid.is-finished .showcase-item:not(:hover) {
  transform: translateY(0) scale(1);
}

.showcase-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(184, 142, 47, 0.14);
  border-color: var(--gold-base);
}

.showcase-img-wrap {
  width: 100%;
  aspect-ratio: 1.1;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid var(--off-white);
  position: relative;
}

.showcase-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.showcase-item:hover .showcase-img {
  transform: scale(1.05);
}

/* Buhar: yemeğin üstünden yukarı (tabaktan değil) */
.showcase-steam {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.food-steam {
  position: absolute;
  bottom: 42%;
  width: 44px;
  height: 36px;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.45) 40%,
    transparent 72%
  );
  filter: blur(6px);
  opacity: 0;
  animation: foodSteamRise 4.5s ease-out infinite;
}

.food-steam--1 {
  left: 36%;
  animation-delay: 0s;
}

.food-steam--2 {
  left: 48%;
  width: 52px;
  height: 40px;
  animation-delay: 1.4s;
}

.food-steam--3 {
  left: 58%;
  width: 38px;
  animation-delay: 2.8s;
}

@keyframes foodSteamRise {
  0% {
    transform: translateY(6px) scale(0.55);
    opacity: 0;
  }
  18% {
    opacity: 0.55;
  }
  70% {
    transform: translateY(-58px) scale(1.05);
    opacity: 0.38;
  }
  100% {
    transform: translateY(-82px) scale(1.15);
    opacity: 0;
  }
}

.showcase-item.is-steaming .food-steam {
  animation-play-state: running;
}

.showcase-item:hover .food-steam {
  filter: blur(7px);
}

/* Mobilde duman her zaman görünsün */
@media (max-width: 768px) {
  .showcase-stage {
    min-height: 0;
    padding-top: 0;
  }

  .showcase-hand {
    left: 4% !important;
    bottom: auto;
    width: 58px;
    opacity: 0;
    transform: translate(-10%, -50%) rotate(-14deg);
    transition:
      top 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .showcase-grid.is-mobile-flow.is-presenting .showcase-hand {
    opacity: 1;
    transform: translate(-10%, -50%) rotate(-11deg);
  }

  .showcase-item {
    opacity: 0.72;
    transform: scale(0.97);
  }

  .showcase-grid.is-mobile-flow:not(.is-presenting) .showcase-item {
    opacity: 0.88;
    transform: none;
  }

  .showcase-grid.is-mobile-flow .showcase-item.is-presented {
    opacity: 1;
    transform: scale(1);
  }

  .showcase-grid.is-mobile-flow .showcase-item.is-current {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 18px 40px rgba(184, 142, 47, 0.16);
  }

  .showcase-steam {
    z-index: 3;
  }

  .food-steam {
    width: 58px;
    height: 46px;
    bottom: 38%;
    filter: blur(9px);
    animation: foodSteamRiseMobile 4s ease-out infinite;
  }

  .food-steam--3 {
    display: block;
    left: 54%;
  }

  .showcase-grid.is-awake .food-steam,
  .showcase-item.is-steaming .food-steam {
    animation-play-state: running;
  }
}

@keyframes foodSteamRiseMobile {
  0% {
    transform: translateY(8px) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 0.72;
  }
  65% {
    transform: translateY(-52px) scale(1.08);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-76px) scale(1.12);
    opacity: 0;
  }
}

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

.showcase-text h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.showcase-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .showcase-ember {
    animation: none !important;
  }
  .showcase-hand {
    display: none;
  }
  .showcase-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .food-steam {
    animation: none !important;
    opacity: 0.5;
    transform: translateY(-20px);
  }
  .showcase-item.is-steaming .food-steam--2 {
    opacity: 0.4;
  }
}

/* ---------- GALLERY SECTION ---------- */
.gallery {
  padding: 120px 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: none;
  padding: 0;
  margin: 0;
  background: var(--dark);
  cursor: pointer;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
  font: inherit;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(28, 28, 28, 0.9) 0%, rgba(28, 28, 28, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 2;
}

.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:focus-visible .gallery-overlay span {
  transform: translateY(0);
}

.gallery-item:focus-visible img {
  transform: scale(1.08);
}

.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

/* ---------- GALLERY LIGHTBOX ---------- */
body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 72px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(12, 10, 8, 0.92);
  cursor: pointer;
}

.lightbox-stage {
  position: relative;
  z-index: 2;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-counter {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: rgba(28, 28, 28, 0.75);
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(201, 169, 98, 0.2);
  border-color: var(--gold);
  color: var(--white);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 4px;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

/* ---------- TESTIMONIALS SECTION (REFERANSLAR) ---------- */
.testimonials {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-google-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

.testi-google-note a {
  color: var(--primary-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 142, 47, 0.35);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.testi-google-note a:hover {
  color: var(--gold-base);
  border-color: var(--gold-base);
}

.testi-google-note-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.testi-card {
  background: var(--off-white);
  padding: 40px;
  border: 1px solid var(--border-gold);
  position: relative;
  transition: all var(--transition-fast);
}

.testi-card--google {
  padding-top: 48px;
}

.testi-google-badge {
  position: absolute;
  top: 14px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(66, 133, 244, 0.22);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5f6368;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testi-google-badge-icon {
  display: block;
  flex-shrink: 0;
}

.testi-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(184, 142, 47, 0.1);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-base);
}

.testi-stars {
  color: var(--gold-base);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testi-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 30px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(184, 142, 47, 0.2);
}

.testi-author strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--primary-dark);
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---------- WHY US SECTION (NEDEN BİZ) ---------- */
.why-us {
  padding: 120px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.why-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.why-item {
  display: flex;
  gap: 24px;
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-base);
  line-height: 1;
  background: rgba(184, 142, 47, 0.08);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.why-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.why-img-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-img-side img {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 12px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.why-quote {
  width: 100%;
  max-width: 480px;
  margin-top: 28px;
  padding: 0 12px;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold-base);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.why-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin: 0;
}

/* ---------- YEREL SEO (Isparta catering / personel) ---------- */
.local-seo {
  padding: 72px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.local-seo-body {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.local-seo-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0 auto 16px;
  max-width: 820px;
}

.local-seo-body p:last-child {
  margin-bottom: 0;
}

.local-seo-areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
  padding: 0;
  max-width: 820px;
}

.local-seo-areas li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary-dark);
  background: var(--white);
  border: 1px solid rgba(184, 142, 47, 0.28);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ---------- CONTACT SECTION (İLETİŞİM) ---------- */
.contact {
  padding: 120px 0;
  background: #f6f3ed;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  min-width: 0;
}

.contact-form {
  background: var(--white);
  padding: 50px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--off-white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-base);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 142, 47, 0.1);
}

.form-whatsapp-hint {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  display: none; /* Hidden by default */
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #4caf50;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 20px;
  align-items: center;
  gap: 12px;
}

.form-success.active {
  display: flex;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  padding: 24px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 3px solid var(--border-gold);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  min-width: 0;
  max-width: 100%;
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: var(--gold-base);
}

.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-icon {
  font-size: 2rem;
  background: rgba(184, 142, 47, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-base);
  flex-shrink: 0;
}

.contact-card-body h4,
.contact-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-card-body span,
.contact-card-body a,
.contact-card span,
.contact-card a {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--gold-base);
}

.legacy-banner {
  background: var(--primary-dark);
  color: var(--white);
  padding: 30px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  box-shadow: var(--shadow-md);
}

.legacy-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gold-gradient);
}

.legacy-year {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.legacy-arrow {
  display: block;
  font-size: 1.2rem;
  color: var(--gold-base);
  margin: 2px 0;
}

.legacy-now {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 12px;
}

.legacy-banner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 90px 0 50px 0;
  border-top: 4px solid var(--gold-base);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 45px;
}

.footer-brand .logo-icon {
  font-size: 2.2rem;
  margin-bottom: 2px;
}

.footer-brand .logo-title {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.footer-brand .logo-sub {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(230, 197, 132, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-base);
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 45px;
  margin-bottom: 50px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  width: 100%;
}

/* ---------- REVEAL (hızlı, blur yok) ---------- */
.reveal, .reveal-left, .reveal-right, .scale-up {
  opacity: 0;
  transition:
    opacity var(--reveal-duration) var(--ease-out-expo),
    transform var(--reveal-duration) var(--ease-out-expo);
}

.reveal {
  transform: translateY(18px);
}

.reveal-left {
  transform: translateX(-22px);
}

.reveal-right {
  transform: translateX(22px);
}

.scale-up {
  transform: scale(0.97);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .scale-up.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.stagger-1.reveal.active { transition-delay: 0.04s; }
.stagger-2.reveal.active { transition-delay: 0.08s; }
.stagger-3.reveal.active { transition-delay: 0.12s; }
.stagger-4.reveal.active { transition-delay: 0.16s; }
.stagger-5.reveal.active { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal, .reveal-left, .reveal-right, .scale-up {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(14px);
  }

  .reveal-left.active,
  .reveal-right.active {
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */

@media (max-width: 1200px) {
  .container {
    padding: 0 32px;
  }
}

@media (max-width: 992px) {
  .hero-cinema {
    overflow-x: clip;
  }
  .hero-cinema-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0 16px;
    max-width: 100%;
  }
  .hero-cinema-layout.container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-cinema-copy {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge {
    margin: 0 auto 20px auto;
  }
  .hero-actions,
  .hero-pills {
    justify-content: center;
  }
  .hero-cinema-chip {
    margin: 0 auto;
  }
  .hero-cinema-panel {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .collage-container {
    margin-top: 30px;
    max-width: 380px;
  }

  /* Services to 2x2 grid */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Stats to 2x2 grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* About to single column */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-img-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
  .about-text {
    padding-left: 0;
  }
  
  /* Signature dishes grid to 2x2 */
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Gallery grid to 2 columns */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* Testimonials grid to single column */
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Why Us to single column */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .why-img-side {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  /* Contact to single column */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .about-text h2, .why-text h2 {
    font-size: 2.2rem;
  }

  /* Top bar — telefon + sosyal (mobil) */
  .top-bar {
    padding: 10px 0 12px;
  }
  .top-inner {
    flex-direction: column;
    gap: 10px;
  }
  .top-phone-link {
    font-size: 0.78rem;
    padding: 5px 12px 5px 6px;
    gap: 8px;
    transition: opacity 0.35s ease, visibility 0.35s ease, max-height 0.35s ease, margin 0.35s ease;
    max-height: 48px;
  }
  body.phone-dock-active .top-bar .top-phone-link {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    pointer-events: none;
    animation: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, max-height 0.25s ease;
  }
  .top-phone-icon {
    width: 26px;
    height: 26px;
  }

  .mobile-phone-dock {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 9995;
    padding: 10px 20px 10px 12px;
    border-radius: 999px;
    background: var(--primary-dark);
    border: 1px solid rgba(230, 197, 132, 0.55);
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, calc(100% + 24px));
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.35s ease;
    animation: none;
  }

  body.phone-dock-active .mobile-phone-dock {
    transform: translate(-50%, 0);
    visibility: visible;
    pointer-events: auto;
  }

  body.phone-dock-active {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-phone-dock .top-phone-icon,
  .mobile-phone-dock .top-phone-number {
    animation: none;
    opacity: 1;
    color: var(--white);
  }

  .mobile-phone-dock .top-phone-icon {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    box-shadow: none;
  }
  .top-social {
    display: flex;
    position: static;
    transform: none;
    justify-content: center;
    gap: 18px;
  }
  .top-social a {
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(230, 197, 132, 0.3);
    background: rgba(255, 255, 255, 0.06);
  }

  /* Navbar — küçük logo, görünür hamburger */
  .navbar {
    padding: 6px 0;
  }
  .nav-inner {
    padding: 0 12px;
    gap: 10px;
  }
  .nav-logo {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 44px);
  }
  .logo-img {
    height: 52px;
    max-width: 100%;
    width: auto;
  }
  .hamburger {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
  }

  /* Mobil menü + kapat */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(28, 28, 28, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 999;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  body.nav-open {
    overflow: hidden;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 0 32px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 12px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border-light);
    list-style: none;
  }

  .nav-drawer-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-base);
  }

  .nav-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--off-white);
    color: var(--primary-dark);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
  }

  .nav-drawer-close:hover {
    background: var(--white);
    border-color: var(--gold-base);
  }

  /* Hamburger X animasyonu kapalı — kapatma sadece "Kapat" ile */
  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    transform: none;
    opacity: 1;
  }

  .nav-links li:not(.nav-drawer-header) {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links li:not(.nav-drawer-header) + li:not(.nav-drawer-header) {
    margin-top: 8px;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 1.05rem;
    padding: 12px 20px;
    width: 100%;
  }

  .nav-links .nav-cta {
    margin: 16px 20px 0;
    width: calc(100% - 40px);
    text-align: center;
  }

  .nav-links a::after {
    display: none;
  }

  /* Hero — mobilde ilk ekrana sığsın */
  .hero-cinema {
    min-height: 0;
    overflow-x: clip;
  }
  .hero-cinema-layout {
    padding: 14px 0 10px;
    gap: 12px;
  }
  .hero-cinema-layout.container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-cinema-shade {
    background:
      linear-gradient(180deg, rgba(12, 10, 8, 0.9) 0%, rgba(12, 10, 8, 0.78) 50%, rgba(12, 10, 8, 0.92) 100%);
  }
  .hero-badge {
    margin-bottom: 8px;
    padding: 6px 12px;
    font-size: 0.68rem;
    max-width: 100%;
    text-align: center;
    line-height: 1.3;
  }
  .hero-script {
    font-size: 1.45rem;
    margin-bottom: 4px;
  }
  .hero-title {
    font-size: 1.85rem;
    margin-bottom: 8px;
    line-height: 1.12;
  }
  .hero-desc {
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: 10px;
    max-width: 100%;
    display: block;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
  }
  .hero-pills {
    display: none;
  }
  .hero-cinema-chip {
    display: none;
  }
  .hero-cinema-copy {
    padding-bottom: 0;
  }
  .hero-cinema-panel {
    padding: 10px 10px 8px;
    border-radius: 14px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-panel-tag {
    margin-bottom: 8px;
    font-size: 0.65rem;
  }
  .about,
  .services-brief,
  .showcase,
  .gallery,
  .testimonials,
  .why-us,
  .local-seo,
  .contact {
    padding: 72px 0;
  }

  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 10px;
  }
  .hero-actions .btn {
    flex: 1;
    min-width: 0;
    padding: 11px 8px;
    font-size: 0.78rem;
    justify-content: center;
  }
  .hero-actions .btn-arrow {
    display: none;
  }
  .btn-outline,
  .btn-outline-dark,
  .btn-outline-light {
    margin-left: 0;
  }
  .hero-dishes {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    max-width: 100%;
  }
  .hero-dish {
    flex: 0 0 68px;
    width: 68px;
    min-width: 68px;
    aspect-ratio: 1;
    scroll-snap-align: start;
  }
  .hero-dish-label {
    font-size: 0.5rem;
    padding: 6px 2px;
    letter-spacing: 0.02em;
  }
  .hero-cinema-bar .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-cinema-bar .hero-trust {
    gap: 8px;
    padding: 10px 0;
    justify-content: space-between;
  }
  .hero-cinema-bar .trust-item strong {
    font-size: 1.1rem;
  }
  .hero-cinema-bar .trust-item span {
    font-size: 0.62rem;
  }
  body {
    overflow-x: clip;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    flex: 1 1 30%;
    min-width: 90px;
  }
  .collage-badge {
    left: 8px;
    bottom: 12px;
    padding: 10px 14px;
  }
  .collage-sub {
    width: 80px;
    height: 80px;
  }
  .collage-sub-1 {
    top: 8px;
    right: 8px;
  }
  .collage-sub-2 {
    bottom: 64px;
    right: 8px;
  }

  /* Hakkımızda rozeti */
  .about-badge-float {
    right: 12px;
    bottom: -16px;
    padding: 18px 22px;
  }

  /* Galeri iki sütun + lightbox */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-lightbox {
    padding: 16px 12px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .lightbox-img {
    max-height: calc(100vh - 100px);
  }

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

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

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

  .showcase-item:hover {
    transform: translateY(-6px) scale(1.01);
  }

  .contact {
    overflow-x: clip;
  }

  .contact .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-grid,
  .contact-form,
  .contact-info {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-form {
    padding: 24px 16px;
    box-sizing: border-box;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group input,
  .form-group textarea,
  .btn-full {
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-card {
    padding: 16px 14px;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-card:hover {
    transform: none;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .contact-card-body span,
  .contact-card-body a {
    font-size: 1rem;
    line-height: 1.35;
  }

  .legacy-banner {
    padding: 22px 16px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .stat-num {
    font-size: 2.6rem;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 0 8px;
  }

  .stat-card {
    padding: 16px 8px;
  }

  .form-whatsapp-hint {
    font-size: 0.78rem;
    padding: 0 4px;
  }

  .footer-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .footer-brand .logo-services {
    max-width: 100%;
    text-align: center;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    padding: 0 8px;
    letter-spacing: 0.08em;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    max-width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .footer-links a {
    font-size: 0.78rem;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .footer-social a {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(50% - 8px);
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .footer-copy {
    padding-left: 8px;
    padding-right: 8px;
    overflow-wrap: break-word;
  }
}

/* Masaüstünde mobil menü öğeleri görünmez */
@media (min-width: 769px) {
  .nav-overlay,
  .nav-drawer-header {
    display: none !important;
  }
}

/* Centering contact section headers */
.contact .section-header {
  text-align: center !important;
}
.contact .section-header .section-tag,
.contact .section-header .section-title,
.contact .section-header .section-desc {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Logo image sizing */
.logo-img { height: 108px; width: auto; object-fit: contain; display: block; }
.footer-logo-img { height: 150px; width: auto; object-fit: contain; margin-bottom: 8px; }

@media (max-width: 768px) {
  .logo-img {
    height: 52px;
    max-width: 100%;
  }
}
