/* CSS Reset & Variables (Forest Estate Theme) */
:root {
  --bg-primary: #FAF8F5;
  --bg-secondary: #FFFFFF;
  --bg-dark: #132B17;
  --bg-dark-secondary: #1B3B21;
  
  --text-primary: #1A241B;
  --text-secondary: #4D5A4F;
  --text-light: #FAF8F5;
  --text-muted-light: #A3BCA7;
  
  --gold: #C5A46E;
  --gold-dark: #9A7E51;
  --gold-rgb: 197, 164, 110;
  
  --line: rgba(19, 43, 23, 0.08);
  --line-dark: rgba(197, 164, 110, 0.15);
  
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', 'Outfit', Arial, sans-serif;
  --mono: 'DM Mono', monospace;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 90px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Skip link for accessibility */
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 10px 20px;
  z-index: 9999;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--text-secondary);
  border: 3px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
}

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

.green-text {
  color: var(--bg-dark);
}

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

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

/* Button Component */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  border-radius: 4px;
}

.button-primary {
  background: var(--bg-dark);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(19, 43, 23, 0.15);
}
.button-primary:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 164, 110, 0.25);
}

.button-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.button-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 164, 110, 0.2);
}

.button-outline-green {
  border: 1px solid var(--bg-dark);
  color: var(--bg-dark);
  background: transparent;
}
.button-outline-green:hover {
  background: var(--bg-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
}

/* Header Topbar */
.topbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.topbar.scrolled {
  background: rgba(250, 248, 245, 0.98);
  box-shadow: 0 5px 20px rgba(19, 43, 23, 0.05);
  height: 80px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--bg-dark);
}

.wordmark span {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--gold-dark);
}

.wordmark .tagline {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-top: 4px;
}

.topbar nav {
  display: flex;
  gap: 2rem;
}

.topbar nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

.topbar nav a:hover {
  color: var(--bg-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-dark);
  transition: var(--transition);
}

/* App Container Layout */
.app-container {
  display: block;
  margin-top: var(--header-height);
  width: 100%;
}

/* Main Content Area */
.main-content {
  width: 100%;
}

/* General Section Headings & Badges */
.section-badge {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  display: inline-block;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  text-transform: uppercase;
}

.section-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.section-subtext {
  color: var(--text-secondary);
  max-width: 680px;
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

.section-center-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.representative-disclosure {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-secondary);
  opacity: 0.6;
  margin-top: 1rem;
}

.representative-disclosure-absolute {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--text-light);
  opacity: 0.7;
  text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  padding: 2px 8px;
  border-radius: 2px;
}

/* SECTION 01: HERO */
.hero {
  height: calc(100vh - var(--header-height));
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 43, 23, 0.95) 0%, rgba(19, 43, 23, 0.8) 40%, rgba(19, 43, 23, 0.2) 75%, rgba(19, 43, 23, 0.1) 100%),
              linear-gradient(0deg, rgba(19, 43, 23, 0.7) 0%, transparent 35%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 8%;
  max-width: 820px;
}

.hero-content .eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.hero .subtitle {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.hero .lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* TRUST BAR / FEATURES BANNER */
.trust-bar {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid var(--line);
  padding: 3rem 5%;
  background: var(--bg-secondary);
  gap: 30px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.trust-icon {
  color: var(--bg-dark);
  margin-bottom: 10px;
}

.trust-val {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--bg-dark);
  line-height: 1.1;
  margin-bottom: 4px;
  font-weight: 600;
}

.trust-lbl {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  font-weight: 600;
}

/* SECTION 02: MARKA HİKAYESİ */
.story-section {
  padding: 8vw 8%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.story-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5.5rem;
  align-items: center;
}

.story-media-wrapper {
  position: relative;
  width: 100%;
}

.story-img-frame {
  border: 1px solid var(--line);
  padding: 10px;
  background: var(--bg-secondary);
  box-shadow: 0 20px 45px rgba(19, 43, 23, 0.06);
  border-radius: 4px;
  position: relative;
}

.story-img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.story-badge-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--gold);
  padding: 1.8rem;
  border-radius: 6px;
  box-shadow: 0 15px 30px rgba(18, 28, 19, 0.15);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 5;
  max-width: 180px;
}

.story-badge-card .badge-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.story-badge-card .badge-lbl {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  opacity: 0.9;
}

.story-content-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-content-new .section-badge {
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.story-content-new h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--bg-dark);
  letter-spacing: -0.01em;
}

.story-cursive {
  font-family: 'Cormorant Garamond', Playfair Display, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.story-body {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.pillar-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.pillar-icon-box {
  background: rgba(19, 43, 23, 0.05);
  color: var(--gold-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.pillar-text h4 {
  font-size: 0.95rem;
  color: var(--bg-dark);
  margin-bottom: 3px;
  font-weight: 600;
}

.pillar-text p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Media Queries for Story Section */
@media (max-width: 1024px) {
  .story-grid-new {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .story-grid-new {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  .story-badge-card {
    right: 15px;
    bottom: -15px;
  }
  .story-content-new {
    order: -1; /* text first on mobile, then the image card */
  }
}

/* SECTION 03: KURBANLIK SÜRECİ */
.process-section {
  padding: 8vw 8%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--line);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2.5rem;
  margin-top: 3.5rem;
}

.timeline-step {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  border-radius: 6px;
  transition: var(--transition);
}

.timeline-step:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(197, 164, 110, 0.12);
}

.timeline-step .step-badge {
  position: absolute;
  top: -20px;
  left: 25px;
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--gold);
}

.timeline-step h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--bg-dark);
  margin-top: 0.5rem;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* SECTION 04: ÜRÜN KATEGORİLERİ */
.categories-section {
  padding: 8vw 8%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.category-card {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(19, 43, 23, 0.06);
}

.category-card .img-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #eae9e5;
}

.category-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover .img-wrapper img {
  transform: scale(1.06);
}

.category-card .card-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-card h3 {
  font-size: 1.5rem;
  color: var(--bg-dark);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.category-card .card-desc {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.category-card .card-actions {
  margin-top: auto;
}

.category-card .card-actions .button {
  width: 100%;
}

/* SECTION 05: NEDEN BEŞEVLER ÇİFTLİĞİ? */
.why-section {
  padding: 8vw 8%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--line);
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  border: 1px solid var(--line);
  background: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
}

.why-left {
  position: relative;
  min-height: 480px;
}

.why-left .video-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.why-left .video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition);
}

.why-left .video-placeholder:hover img {
  transform: scale(1.03);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 43, 23, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.play-btn-overlay:hover {
  background: rgba(19, 43, 23, 0.35);
}

.play-icon {
  width: 76px;
  height: 76px;
  background: var(--bg-secondary);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.play-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--bg-dark);
}

.why-left:hover .play-icon {
  transform: scale(1.1);
  background: var(--gold);
}

.why-right {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-right h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

.grid-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}

.value-item {
  display: flex;
  flex-direction: column;
}

.value-icon {
  width: 32px;
  height: 32px;
  background: rgba(197, 164, 110, 0.15);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.value-item h4 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* SECTION 06: MODERN KESİMHANE SÜRECİ */
.slaughter-section {
  padding: 8vw 8%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.notification-box {
  background: rgba(197, 164, 110, 0.08);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 6px 6px 0;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.bell-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-dark);
}

.notification-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.notification-box strong {
  color: var(--bg-dark);
}

.slaughter-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.flow-card {
  flex: 1;
  min-width: 190px;
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.flow-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.flow-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  background: #eae9e5;
}

.flow-info {
  padding: 1.5rem;
  position: relative;
}

.flow-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid var(--bg-secondary);
}

.flow-card h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-top: 0.5rem;
  margin-bottom: 8px;
}

.flow-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.flow-arrow {
  font-size: 1.8rem;
  color: var(--gold);
  font-family: var(--mono);
  font-weight: 300;
}

/* NUMBERS BANNER */
.stats-section {
  padding: 4rem 5%;
  background: var(--bg-dark);
  color: var(--text-light);
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 220px;
  padding: 1rem;
  border-right: 1px solid var(--line-dark);
}

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

.stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
  font-weight: 500;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted-light);
}

/* SECTION 07: GALLERY SECTION (SLIDER) */
.gallery-section {
  padding: 8vw 8%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--line);
}

.slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.slider-container {
  flex-grow: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 10px;
  background: var(--bg-primary);
  border-radius: 6px;
}

.gallery-slider {
  display: flex;
  position: relative;
  width: 100%;
}

.gallery-slide {
  display: none;
  width: 100%;
  position: relative;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #eae9e5;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(19, 43, 23, 0.95) 0%, transparent 100%);
  color: var(--text-light);
  padding: 2.5rem 2rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.slider-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  color: var(--bg-dark);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.slider-btn:hover {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.prev-btn {
  margin-right: -28px;
}

.next-btn {
  margin-left: -28px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(19, 43, 23, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--bg-dark);
  transform: scale(1.2);
}

/* SECTION 08: FAQ SECTION */
.faq-section {
  padding: 8vw 8%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.faq-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 3.5rem auto 0;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bg-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-icon {
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--gold-dark);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--bg-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-contact-card {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 2.5rem;
  border-radius: 6px;
  border: 1px solid var(--line-dark);
  text-align: center;
  position: sticky;
  top: 120px;
}

.faq-contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.faq-contact-card .phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 2.5rem;
}

.faq-contact-card .phone-link {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.faq-contact-card .phone-link:hover {
  color: var(--text-light);
}

.faq-contact-card .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-secondary);
  color: var(--bg-dark);
  min-height: 52px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.faq-contact-card .whatsapp-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* SECTION 09: CONTACT SECTION WITH MAP AND GATE */
/* SECTION 09: İLETİŞİM & HARİTA */
.contact-section {
  padding: 8vw 8%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.contact-grid-container {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: auto;
  align-items: stretch;
}

/* Details Card Styling */
.contact-details-card {
  background: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid rgba(197, 164, 110, 0.2);
  padding: 4.5rem 3.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(19, 43, 23, 0.15);
}

.contact-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: 2.5rem;
  font-family: var(--serif);
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.contact-intro {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

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

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 164, 110, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(197, 164, 110, 0.25);
}

.contact-info-icon svg {
  display: block;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted-light);
}

.contact-info-value {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-link {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-link:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.contact-verification-tag {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  margin-left: 6px;
}

/* Action buttons inside card */
.contact-actions-row {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.button-gold {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.button-gold:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  border-color: var(--text-light);
}

.button-whatsapp-outline {
  background: transparent;
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.button-whatsapp-outline:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

/* Map Wrapper Styling */
.contact-map-wrapper {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(19, 43, 23, 0.08);
  min-height: 450px;
  position: relative;
}

/* FOOTER */
.footer {
  padding: 6rem 8% 3rem;
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 2px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-brand .wordmark {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.footer-brand .wordmark span {
  color: var(--gold);
}

.footer-brand .tagline {
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
}

.footer-brand .desc {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 2rem;
}

.footer-brand .sister-brand-link {
  font-size: 0.88rem;
  color: var(--text-light);
  background: rgba(197, 164, 110, 0.1);
  border: 1px solid var(--line-dark);
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
}

.footer-brand .sister-brand-link a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

.footer-brand .sister-brand-link a:hover {
  color: var(--text-light);
}

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

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.footer-col a, .footer-col span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-col .addr {
  margin-top: 15px;
  border-top: 1px solid var(--line-dark);
  padding-top: 15px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  border: 1px solid var(--line-dark);
  padding: 6px 14px;
  border-radius: 4px;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .copyright {
  font-size: 0.78rem;
  color: var(--text-muted-light);
  width: 100%;
  text-align: center;
}

.footer-bottom .credit {
  font-size: 0.78rem;
  color: var(--text-muted-light);
  width: 100%;
  text-align: center;
  margin-top: 0.6rem;
}

.footer-bottom .credit-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.footer-bottom .credit-link:hover {
  color: var(--text-light);
}

/* Video Modal styling */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 43, 23, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 2010;
  background: var(--bg-primary);
  width: 90%;
  max-width: 700px;
  border-radius: 6px;
  border: 1px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  padding: 3rem 2.5rem 2.5rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--bg-dark);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--gold);
}

.modal-video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(197, 164, 110, 0.3);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.modal-video-wrapper.vertical {
  aspect-ratio: 9/16;
  max-width: 380px;
  max-height: 70vh;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .contact-grid-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-map-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 960px) {
  .topbar nav {
    display: none; /* Mobile menu handles this */
  }
  .topbar-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  
  /* Mobile Navigation Dropdown */
  .topbar nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--line);
    padding: 2rem 5%;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  .topbar nav.open a {
    font-size: 0.9rem;
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-container {
    grid-template-columns: 1fr;
  }
  .why-left {
    min-height: 300px;
  }
  .why-right {
    padding: 2.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-grid-layout {
    grid-template-columns: 1fr;
  }
  .faq-contact-card {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .timeline-step {
    padding-top: 2rem;
  }
  .timeline-step .step-badge {
    top: 15px;
    left: -20px;
  }
  .slaughter-flow {
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  .flow-card {
    width: 100%;
  }
  .contact-details-card {
    padding: 3rem 2.2rem;
  }
  .contact-title {
    font-size: 2rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .grid-values {
    grid-template-columns: 1fr;
  }
  
  /* Slider Mobile Optimization */
  .gallery-section {
    padding: 8vw 5%;
  }
  .slider-wrapper {
    padding: 0 15px;
  }
  .slider-container {
    padding: 4px;
  }
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .prev-btn {
    left: -5px;
    margin-right: 0;
  }
  .next-btn {
    right: -5px;
    margin-left: 0;
  }
  .slide-caption {
    font-size: 1.1rem;
    padding: 1.5rem 1rem 0.8rem;
  }
}

@media (max-width: 700px) {
  /* Enforce rule checkpoint */
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 5%;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero .subtitle {
    font-size: 1.1rem;
  }
  .hero-actions .button {
    width: 100%;
  }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .scroll-cue, .map-graphic .pin {
    animation: none !important;
  }
}

/* SECTION 07b: REVIEWS SECTION */
.reviews-section {
  padding: 8vw 0 6vw; /* 0 horizontal padding to make marquee full-width */
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.reviews-section .section-center-header {
  padding: 0 8%;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 3.5rem;
  padding: 10px 0;
}

/* Side gradients for fading out on borders */
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.reviews-marquee {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

.review-card {
  width: 380px; /* fixed size for smooth marquee flow */
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  padding: 2rem 2.2rem;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(19, 43, 23, 0.03);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  flex-shrink: 0;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(197, 164, 110, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 2px;
}

.reviewer-meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-secondary);
  opacity: 0.85;
}

.review-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #fbbc04; /* Google star color */
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  flex-grow: 1;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.google-logo-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12.5px)); /* shift exactly half of cards + half of single gap */
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0 5%;
  }
  .review-card {
    width: 100%;
    max-width: 400px;
  }
  .marquee-container::before,
  .marquee-container::after {
    display: none;
  }
}

/* Section Local Topographic Backgrounds */
.section-topo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Sits above solid backgrounds */
  pointer-events: none;
  overflow: hidden;
}

.section-topo-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

/* Light Story Section Topography: Soft forest green lines at 20% opacity for clear visibility */
.topo-svg-story {
  opacity: 0.20;
  transform-origin: top right;
  animation: float-topo-story 28s ease-in-out infinite;
}

.topo-svg-story path {
  stroke: var(--bg-dark) !important; /* Deep forest green #132b17 */
  stroke-width: 1.5px !important;
}

/* Ensure story grid sits above the local backdrop */
.story-grid-new {
  position: relative;
  z-index: 2; /* Above local backdrop */
}

/* Local Topo Float Animation */
@keyframes float-topo-story {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-12px, 15px, 0) rotate(-1deg) scale(1.02);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .topo-svg-story {
    animation: none !important;
  }
}
