/* ============================================================
   MUGAB — Mehmet Usta Gaziantep Baklavacısı
   Main Stylesheet
   Design: Black & Gold Luxury
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Great+Vibes&display=swap');

/* ── CSS Variables ── */
:root {
  --black:        #080808;
  --black-soft:   #111111;
  --black-card:   #161616;
  --black-border: #222222;
  --gold:         #C9A84C;
  --gold-light:   #E8C96B;
  --gold-dark:    #8B6914;
  --gold-muted:   rgba(201, 168, 76, 0.15);
  --cream:        #F5F0E8;
  --cream-muted:  rgba(245, 240, 232, 0.6);
  --white:        #FFFFFF;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --transition:   cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.12);
  --shadow-card:  0 8px 40px rgba(0, 0, 0, 0.6);
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: #FAF8F4;
  color: #1A1410;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #FAF8F4; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Selection ── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1A1410;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

/* Section titles on dark backgrounds */
.about-timeline .section-title,
.about-values .section-title,
.franchise-process .section-title,
.contact-branches-section .section-title {
  color: var(--cream);
}

.gold-line {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s var(--transition);
}

.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(201, 168, 76, 0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s var(--transition);
}

.btn-arrow:hover { gap: 0.9rem; }
.btn-arrow svg { transition: transform 0.3s var(--transition); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: var(--black);
  border-bottom: 1px solid var(--black-border);
  transition: all 0.4s var(--transition);
}

.site-header.scrolled {
  background: var(--black);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--black-border);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links-left {
  justify-content: flex-end;
}

.nav-links-right {
  justify-content: flex-start;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}

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

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.25s;
}

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

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 65% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

/* ── Hero Slider ── */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%) brightness(0.28);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-slide.is-active img { transform: scale(1); }

/* ── Slider dots ── */
.hero-slider-dots {
  position: absolute;
  bottom: 5.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-dot {
  width: 1px;
  height: 1.5rem;
  background: rgba(201,168,76,0.3);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.slider-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  transition: height 5s linear;
}

.slider-dot.is-active::after { height: 100%; }

/* ── Nav logo image ── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.nav-logo-sub {
  font-family: 'Great Vibes', 'Cormorant Garamond', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  margin-top: 2px;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6rem 0 4rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream-muted);
  max-width: 480px;
  margin: 2rem 0 3rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s var(--transition) 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Stats strip ── */
.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  animation: fadeIn 1s var(--transition) 1.2s forwards;
}

.hero-stat-item {
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--black-border);
  text-align: right;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.3rem;
}

/* ============================================================
   PILLARS / ÖZELLIKLER
   ============================================================ */
.pillars {
  padding: 7rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.28);
}

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

.pillar-item {
  padding: 3rem 2.5rem;
  border: 1.5px solid rgba(201,168,76,0.38);
  border-top: 3px solid var(--gold);
  position: relative;
  transition: background 0.4s, box-shadow 0.4s, transform 0.35s var(--transition);
  overflow: hidden;
}

.pillar-item:hover {
  background: rgba(201,168,76,0.03);
  box-shadow: 0 16px 48px rgba(201,168,76,0.12);
  transform: translateY(-5px);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0;
}

.pillar-icon-img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: contrast(1.1) saturate(0.9) brightness(1);
  transition: filter 0.4s, transform 0.35s;
}

.pillar-item:hover .pillar-icon-img {
  filter: contrast(1.15) saturate(1.1) brightness(1.05);
  transform: scale(1.06);
}

.pillar-rule {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0 1.25rem;
  transition: width 0.4s var(--transition);
}

.pillar-item:hover .pillar-rule { width: 4rem; }

.pillar-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1410;
  background: var(--gold);
  padding: 0.35rem 0.85rem 0.4rem;
  line-height: 1.25;
  margin-bottom: 0;
}

.pillar-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  padding: 8rem 0;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: #E5DDD0;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: #F5F0E8;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(201,168,76,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.14);
  transform: translateY(-3px);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.5s var(--transition);
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-card-overlay {
  display: none;
}

.product-card-body {
  padding: 0.8rem 1.1rem 0.9rem;
  background: #fff;
  border-top: 1px solid rgba(201,168,76,0.28);
}

.product-card-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #1A1410;
  line-height: 1.3;
}

.product-card-name-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-card-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1410;
  border: 1px solid rgba(201,168,76,0.6);
  padding: 0.15rem 0.5rem;
  flex-shrink: 0;
}


/* Placeholder when no image */
.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
}

.product-card-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--gold-dark);
  opacity: 0.4;
}

/* ============================================================
   ABOUT / HERITAGE SECTION
   ============================================================ */
.heritage {
  padding: 8rem 0;
  background: #F5F0E8;
  position: relative;
  overflow: hidden;
}

.heritage::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.heritage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.heritage-media {
  position: relative;
}

.heritage-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.heritage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.8);
  transition: filter 0.5s;
}

.heritage-img-wrap:hover .heritage-img {
  filter: grayscale(0%) brightness(0.9);
}

.heritage-img-frame {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  left: 1.5rem;
  border: 1px solid var(--gold-dark);
  pointer-events: none;
  z-index: -1;
}

.heritage-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 7rem;
  height: 7rem;
  background: var(--gold);
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.heritage-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.heritage-badge-text {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  font-weight: 600;
}

.heritage-content { padding-right: 1rem; }

.heritage-body {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
}

.heritage-milestones {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.milestone {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.milestone-year {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 3.5rem;
  padding-top: 0.1rem;
}

.milestone-line {
  width: 1px;
  background: #D5C9B5;
  align-self: stretch;
  min-height: 100%;
  position: relative;
}

.milestone-line::before {
  content: '';
  position: absolute;
  top: 0.35rem;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #F5F0E8;
}

.milestone-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* ============================================================
   BRANCHES SECTION
   ============================================================ */
.branches {
  padding: 8rem 0;
}

.branches-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.branches-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.branch-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.28);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.branch-item::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--transition);
}

.branch-item:hover::before,
.branch-item.active::before { transform: scaleY(1); }

.branch-item:hover,
.branch-item.active {
  padding-left: 0.75rem;
}

.branch-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-top: 0.2rem;
  min-width: 2rem;
}

.branch-info { flex: 1; }

.branch-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #1A1410;
  margin-bottom: 0.2rem;
  transition: color 0.3s;
}

.branch-item:hover .branch-name,
.branch-item.active .branch-name { color: var(--gold); }

.branch-addr {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.4;
}

.branch-phone {
  font-size: 0.75rem;
  color: var(--gold-dark);
  margin-top: 0.2rem;
}

.branches-map {
  position: sticky;
  top: 8rem;
  border: 1px solid rgba(201,168,76,0.4);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #F5F0E8;
}

.branches-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) brightness(0.95);
}

/* ============================================================
   FRANCHISE SECTION
   ============================================================ */
.franchise {
  padding: 8rem 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.franchise-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.franchise-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.franchise-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.franchise-title span {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.franchise-body {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.franchise-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.franchise-stat {
  text-align: center;
}

.franchise-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.franchise-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.4rem;
}

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact {
  padding: 8rem 0 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(201,168,76,0.28);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: all 0.3s;
}

.contact-info-item:hover .contact-info-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: #1A1410;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
}

.form-input,
.form-textarea {
  background: #F5F0E8;
  border: 1px solid #E5DDD0;
  color: #1A1410;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(26,20,16,0.3); }

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

/* ── Leaflet custom MUGAB marker ── */
.mugab-map-marker { background: none; border: none; }

.mugab-map-pin {
  width: 40px;
  height: 40px;
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: transform 0.2s;
}

.mugab-map-pin:hover { transform: rotate(-45deg) scale(1.1); }

.mugab-map-pin img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transform: rotate(45deg);
  mix-blend-mode: lighten;
}

.leaflet-popup-content-wrapper {
  border-radius: 0 !important;
  border: 1px solid var(--gold-dark) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.leaflet-popup-tip { background: #fff !important; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 4rem 0;
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--black-border);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand-sub {
  font-family: 'Great Vibes', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--cream-muted);
  transition: color 0.25s;
}

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

.footer-hours p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 2;
}

.footer-hours strong { color: var(--cream); }

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.3);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage-inner { grid-template-columns: 1fr; gap: 4rem; }
  .heritage-img-frame { display: none; }
  .branches-inner { grid-template-columns: 1fr; }
  .branches-map { position: static; aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-item { border-top: 3px solid var(--gold); }
  .pillars-grid { gap: 1rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .franchise-stats { gap: 2rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.8rem; }
}

/* ============================================================
   URUNLER PAGE
   ============================================================ */

/* Page Hero (iç sayfa hero) */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--black-border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.page-hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-desc {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.page-hero-stat {
  text-align: right;
  padding-left: 3rem;
  border-left: 1px solid var(--black-border);
}

.page-hero-stat-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.page-hero-stat-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.4rem;
}

/* Filter Bar */
.filter-bar {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--black-border);
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.filter-tabs {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  transition: all 0.25s;
}

.filter-tab:last-child { border-right: none; }

.filter-tab:hover { color: var(--gold); background: var(--gold-muted); }

.filter-tab.active {
  background: var(--gold);
  color: var(--black);
}

.filter-tab-count {
  font-size: 0.62rem;
  opacity: 0.7;
}

.filter-tab.active .filter-tab-count { opacity: 0.6; }

.filter-count-text {
  font-size: 0.78rem;
  color: #aaa;
  letter-spacing: 0.05em;
}

.filter-count-text strong { color: var(--gold); }

/* Products Full Grid */
.products-full {
  padding: 5rem 0 8rem;
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Product Card — Full */
.product-card-full {
  background: #ffffff;
  border: 1.5px solid rgba(201,168,76,0.45);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--transition), box-shadow 0.4s;
  cursor: pointer;
}

.product-card-full[data-hidden="true"] {
  display: none;
}

.product-card-full:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.18), 0 0 0 1px rgba(201,168,76,0.12);
}

/* İç çerçeve — köşe accent */
.product-card-full::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.4s;
}

.product-card-full:hover::before {
  border-color: rgba(201,168,76,0.32);
}

/* Üst gold şerit */
.product-card-full::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--transition);
  z-index: 2;
}

.product-card-full:hover::after { transform: scaleX(1); }

.product-card-full-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-full-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--transition), filter 0.5s;
  filter: brightness(1);
}

.product-card-full:hover .product-card-full-img img {
  transform: scale(1.04);
  filter: brightness(1);
}

.product-card-full-img .ph-icon {
  width: 5rem;
  height: 5rem;
  color: var(--gold-dark);
  opacity: 0.3;
  transition: opacity 0.4s;
}

.product-card-full:hover .ph-icon { opacity: 0.5; }

.product-card-full-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.25rem 0.65rem;
  font-weight: 700;
}

.product-card-full-body {
  padding: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.product-card-full-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.product-card-full-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #1A1410;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.product-card-full-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-card-full-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.product-card-full-ingredients {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ingredient-tag {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.2rem 0.55rem;
  transition: border-color 0.3s, color 0.3s;
}

.product-card-full:hover .ingredient-tag {
  border-color: var(--gold-dark);
  color: var(--gold);
}

.product-card-full-arrow {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
}

.product-card-full:hover .product-card-full-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 0;
  display: none;
}

.no-results.visible { display: block; }

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.no-results p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #888;
}

/* CTA Banner */
.products-cta-banner {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 5rem 0;
  text-align: center;
}

.products-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.products-cta-title span { color: var(--gold); font-style: italic; }

.products-cta-desc {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--cream-muted);
  margin-bottom: 2.5rem;
}

.products-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   HAKKIMIZDA PAGE
   ============================================================ */

/* ── Story Section ── */
.about-story {
  padding: 8rem 0;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-primary {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.82);
  transition: filter 0.5s;
}

.about-img-primary:hover img {
  filter: grayscale(0%) brightness(0.9);
}

.about-img-secondary {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: var(--shadow-card);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.82);
}

.about-img-frame {
  position: absolute;
  top: 2rem;
  left: -2rem;
  right: 2rem;
  bottom: -2rem;
  border: 1px solid var(--gold-dark);
  z-index: -1;
  pointer-events: none;
}

.about-founder-badge {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.25rem 1.5rem;
  text-align: center;
  z-index: 2;
}

.about-founder-badge-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-founder-badge-title {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.25rem;
  opacity: 0.75;
}

.about-story-body {
  font-family: var(--font-elegant);
  font-size: 1.12rem;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
  margin: 1.5rem 0;
}

.about-story-body + .about-story-body {
  margin-top: 0;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.28);
}

.about-signature-line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.about-signature-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
}

/* ── Stats Bar ── */
.about-stats-bar {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat-item {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--black-border);
  text-align: center;
  position: relative;
  transition: background 0.4s;
}

.about-stat-item:last-child { border-right: none; }

.about-stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--transition);
}

.about-stat-item:hover::before { width: 40%; }
.about-stat-item:hover { background: var(--gold-muted); }

.about-stat-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.6rem;
  line-height: 1.5;
}

/* ── Timeline ── */
.about-timeline {
  padding: 8rem 0;
  background: var(--black);
}

.about-timeline-inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0 0;
  position: relative;
}

.timeline-spine {
  background: linear-gradient(180deg, transparent, var(--gold-dark) 15%, var(--gold-dark) 85%, transparent);
  position: relative;
  justify-self: center;
}

.timeline-events {
  display: contents;
}

.tl-event {
  padding: 2.5rem 4rem 2.5rem 0;
  position: relative;
}

.tl-event.right {
  padding: 2.5rem 0 2.5rem 4rem;
  grid-column: 3;
}

.tl-event::after {
  content: '';
  position: absolute;
  top: 3.2rem;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  transform: translateX(50%);
  transition: background 0.3s, box-shadow 0.3s;
}

.tl-event.right::after {
  right: auto;
  left: -1px;
  transform: translateX(-50%);
}

.tl-event:hover::after {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
}

.tl-year {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tl-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.tl-text {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ── Values ── */
.about-values {
  padding: 8rem 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.about-values::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--font-serif);
  font-size: 20rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-values-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 5rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black-border);
}

.about-value-card {
  background: var(--black-soft);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--transition);
}

.about-value-card:hover::before { transform: scaleX(1); }
.about-value-card:hover { background: rgba(22, 22, 22, 0.9); }

.about-value-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.about-value-card:hover .about-value-num { color: rgba(201,168,76,0.2); }

.about-value-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.about-value-text {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.75;
}

/* ── Quote Block ── */
.about-quote {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.28);
  border-bottom: 1px solid rgba(201,168,76,0.28);
}

.about-quote-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.about-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.4;
  display: block;
  margin-bottom: 2rem;
}

.about-quote-text {
  font-family: var(--font-elegant);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: #1A1410;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.about-quote-author {
  margin-top: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ── Responsive Hakkimizda ── */
@media (max-width: 1024px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-frame { display: none; }
  .about-img-secondary { display: none; }
  .about-founder-badge { top: 1rem; right: 1rem; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-timeline-inner { grid-template-columns: 1fr; }
  .timeline-spine { display: none; }
  .tl-event, .tl-event.right {
    padding: 0 0 2.5rem 2rem;
    grid-column: 1;
    border-left: 1px solid var(--gold-dark);
  }
  .tl-event::after, .tl-event.right::after {
    right: auto; left: -1px;
    transform: translateX(-50%);
  }
  .about-values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat-item { padding: 2.5rem 1.5rem; }
  .about-stat-num { font-size: 2.5rem; }
  .tl-year { font-size: 1.8rem; }
}

/* Responsive — Urunler */
@media (max-width: 1024px) {
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-stat { text-align: left; border-left: none; border-top: 1px solid var(--black-border); padding-left: 0; padding-top: 1.5rem; }
}

@media (max-width: 640px) {
  .products-full-grid { grid-template-columns: 1fr; }
  .filter-tabs { width: 100%; overflow-x: auto; }
  .filter-tab { white-space: nowrap; }
  .filter-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FRANCHISE PAGE
   ============================================================ */

/* ── Why Cards ── */
.franchise-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black-border);
  margin-top: 4rem;
}

.franchise-why-card {
  background: var(--black-card);
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.franchise-why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
}

.franchise-why-card:hover::after { transform: scaleX(1); }
.franchise-why-card:hover { background: var(--gold-muted); }

.franchise-why-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.franchise-why-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.franchise-why-text {
  font-size: 0.87rem;
  color: var(--cream-muted);
  line-height: 1.75;
}

/* ── Process Steps ── */
.franchise-process {
  padding: 8rem 0;
  background: var(--black-soft);
  position: relative;
}

.franchise-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.franchise-steps::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-dark), transparent);
}

.franchise-step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}

.franchise-step-num {
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--black-soft);
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.franchise-step:hover .franchise-step-num {
  background: var(--gold);
  border-color: var(--gold);
}

.franchise-step-num span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.4s;
}

.franchise-step:hover .franchise-step-num span { color: var(--black); }

.franchise-step-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.franchise-step-text {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.65;
}

/* ── Application Form ── */
.franchise-apply {
  padding: 8rem 0;
}

.franchise-apply-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.franchise-apply-info {
  position: sticky;
  top: 8rem;
}

.franchise-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.franchise-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.28);
}

.franchise-info-item:last-child { border-bottom: none; }

.franchise-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.franchise-info-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.franchise-info-value {
  font-size: 0.9rem;
  color: #1A1410;
  line-height: 1.5;
}

/* ── Franchise Form ── */
.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-section-title {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.28);
  margin-bottom: 0.5rem;
}

.form-select {
  background: #F5F0E8;
  border: 1px solid #E5DDD0;
  color: #1A1410;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-select:focus { border-color: var(--gold); }
.form-select option { background: #F5F0E8; color: #1A1410; }

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox-item input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox-item span {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* ── Franchise Responsive ── */
@media (max-width: 1024px) {
  .franchise-why-grid { grid-template-columns: repeat(2, 1fr); }
  .franchise-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .franchise-steps::before { display: none; }
  .franchise-apply-inner { grid-template-columns: 1fr; }
  .franchise-apply-info { position: static; }
}

@media (max-width: 640px) {
  .franchise-why-grid { grid-template-columns: 1fr; }
  .franchise-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ILETISIM PAGE
   ============================================================ */

/* ── Contact Hero Banner ── */
.contact-hero-strip {
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  padding: 2rem 0;
}

.contact-hero-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-hero-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-hero-strip-icon {
  color: var(--gold);
}

.contact-hero-strip-text {
  font-size: 0.88rem;
  color: var(--cream-muted);
}

.contact-hero-strip-text a {
  color: var(--cream);
  transition: color 0.25s;
}

.contact-hero-strip-text a:hover { color: var(--gold); }

/* ── Contact Main Grid ── */
.contact-page-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  padding: 8rem 0;
  border-bottom: 1px solid var(--black-border);
}

/* ── Map Section ── */
.contact-map-section {
  padding: 0 0 8rem;
}

.contact-map-wrap {
  border: 1px solid rgba(201,168,76,0.4);
  overflow: hidden;
  height: 480px;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(88%) brightness(0.78);
}

/* ── All Branches Full List ── */
.contact-branches-section {
  padding: 8rem 0;
  background: var(--black-soft);
}

.contact-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black-border);
  margin-top: 4rem;
}

.contact-branch-card {
  background: var(--black-soft);
  padding: 2rem 1.75rem;
  position: relative;
  transition: background 0.3s;
}

.contact-branch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--transition);
}

.contact-branch-card:hover::before { height: 100%; }
.contact-branch-card:hover { background: var(--gold-muted); }

.contact-branch-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.contact-branch-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.contact-branch-card:hover .contact-branch-name { color: var(--gold); }

.contact-branch-addr {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gold-dark);
  transition: color 0.25s;
  margin-top: 0.25rem;
}

.contact-branch-phone:hover { color: var(--gold); }

/* ── Social Strip ── */
.contact-social-strip {
  padding: 5rem 0;
  border-top: 1px solid rgba(201,168,76,0.28);
  text-align: center;
}

.social-links-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.social-link-large {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: #555;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.social-link-large:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Iletisim Responsive ── */
@media (max-width: 1024px) {
  .contact-page-inner { grid-template-columns: 1fr; gap: 4rem; }
  .contact-branches-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-hero-strip-inner { flex-direction: column; align-items: flex-start; }
}

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

/* ============================================================
   SUBELER PAGE
   ============================================================ */
.subeler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sube-card {
  border: 1.5px solid rgba(201,168,76,0.35);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--transition), box-shadow 0.3s, border-color 0.3s;
  background: #fff;
}

.sube-card:hover,
.sube-card.active {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(201,168,76,0.14);
  transform: translateY(-4px);
}

.sube-card-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.sube-card.active .sube-card-num,
.sube-card:hover .sube-card-num {
  color: rgba(201,168,76,0.22);
}

.sube-card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1410;
  margin-bottom: 0.5rem;
}

.sube-card-addr {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.sube-card-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.sube-card-phone:hover { color: var(--gold-dark); }

.sube-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.sube-card-district {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}

.sube-card-action {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  transition: letter-spacing 0.3s;
}

.sube-card:hover .sube-card-action { letter-spacing: 0.05em; }

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

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