/* ============================================
   HALAL CATERING MÜNCHEN – Premium Stylesheet
   Logo renkleri: Açık yeşil #5FA520, Kırmızı #C41230
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  /* Logo renkleri */
  --green:         #5FA520;
  --green-dark:    #3D6B15;
  --green-light:   #7BC043;
  --green-bg:      #EAF4D7;
  --red:           #C41230;
  --red-dark:      #961029;
  --red-light:     #E8193F;
  --red-bg:        #FDECEA;

  /* Nötr */
  --dark:          #161616;
  --text:          #2A2A2A;
  --text-muted:    #6B6B6B;
  --white:         #FFFFFF;
  --cream:         #FAFAF8;
  --cream-dark:    #EEEDE8;
  --border:        #E5E5E0;

  /* Hero arka plan */
  --hero-bg-from:  #0A1A05;
  --hero-bg-to:    #1A3508;

  /* Genel */
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
  --transition:    0.32s cubic-bezier(0.4,0,0.2,1);
  --font-display:  'Playfair Display', serif;
  --font-body:     'Inter', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION SPACING ---- */
.section { padding: 96px 0; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section-label.light { color: var(--green-light); }
.section-label.light::before { background: var(--green-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--red); font-weight: 600; }
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--green-light); }

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.75;
}

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

.brand-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
  margin: 22px 0;
  border-radius: 3px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn-red,
.btn-outline-white,
.btn-sm { white-space: nowrap; }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,18,48,0.3);
}
.btn-red:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 30px rgba(196,18,48,0.45);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
}

.btn-sm { padding: 10px 20px; font-size: 0.83rem; }
.btn-full { width: 100%; justify-content: center; white-space: normal !important; text-align: center; line-height: 1.4; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(9px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { transform: scale(1.06); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
}

.animate-fade-up { opacity: 0; animation: fadeUp 0.75s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.28s; }
.delay-3 { animation-delay: 0.42s; }
.delay-4 { animation-delay: 0.56s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.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; }

/* ============ HEADER / NAV ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(10,26,5,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

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

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.header.scrolled .nav-logo-img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 13px;
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-link.active { color: var(--green-light); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 600;
  padding: 8px 18px;
  box-shadow: 0 3px 14px rgba(196,18,48,0.35);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* ---- LANG SWITCH ---- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}
.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55) !important;
  padding: 3px 6px;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
}
.lang-btn:hover { color: var(--white) !important; }
.lang-btn.lang-active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.15);
}
.lang-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--hero-bg-from) 0%, var(--hero-bg-to) 60%, #0D1F06 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(95,165,32,0.5) 48px, rgba(95,165,32,0.5) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(95,165,32,0.5) 48px, rgba(95,165,32,0.5) 49px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(95,165,32,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 75%, rgba(196,18,48,0.07) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 36px;
}

.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(95,165,32,0.45);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(95,165,32,0.08);
}
.halal-icon { width: 13px; height: 13px; fill: var(--green-light); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin: 22px 0 18px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-light);
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 14px;
  line-height: 1.8;
}
.hero-subtitle strong { color: var(--green-light); }

.hero-slogan {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-slogan strong { color: var(--white); font-size: 1rem; }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(95,165,32,0.2);
  border-radius: var(--radius);
  padding: 22px 40px;
  margin: 44px 24px 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(95,165,32,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
}
.trust-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.trust-item span {
  display: block;
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--green-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}
.trust-icon svg { width: 19px; height: 19px; }
.trust-divider { width: 1px; height: 44px; background: var(--cream-dark); }

/* ============ ABOUT ============ */
.about { background: var(--white); }

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

.about-visual { position: relative; }

.about-img-frame { position: relative; padding: 20px; }

.about-geometric {
  position: absolute;
  top: 0; left: 0;
  width: 85%;
  height: 85%;
  border: 2px solid rgba(95,165,32,0.2);
  border-radius: var(--radius-lg);
  background: var(--green-bg);
}

.about-img-inner {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  text-align: center;
}

.about-logo-display {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.about-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.about-badge {
  position: absolute;
  bottom: 5px;
  right: -5px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(196,18,48,0.35);
  z-index: 2;
}
.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.about-lead {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.about-text em { font-style: italic; color: var(--red); }

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: var(--green-bg);
  border: 1px solid rgba(95,165,32,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-dark);
}
.feature-tag svg { width: 13px; height: 13px; }

/* ============ SERVICES ============ */
.services {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.services-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image: radial-gradient(circle, var(--green-dark) 1.5px, transparent 1.5px);
  background-size: 38px 38px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(95,165,32,0.2);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon-wrap svg { width: 24px; height: 24px; }
.service-icon-wrap.green { background: var(--green-bg); color: var(--green-dark); }
.service-icon-wrap.red   { background: var(--red-bg);   color: var(--red-dark);   }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: gap var(--transition), color var(--transition);
}
.service-link svg { width: 15px; height: 15px; }
.service-link:hover { gap: 12px; color: var(--red); }

.service-card--cta {
  background: linear-gradient(145deg, var(--dark) 0%, #1A3508 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card--cta::after { background: linear-gradient(90deg, var(--green-light), var(--red)); }
.service-cta-content { position: relative; z-index: 1; }
.service-card--cta h3 { color: var(--white); margin-bottom: 12px; }
.service-card--cta p { color: rgba(255,255,255,0.68); margin-bottom: 22px; }

/* ============ WHY US ============ */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  padding: 36px 24px;
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
  position: relative;
}
.why-card:last-child { border-right: none; }
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover { background: var(--cream); }
.why-card:hover::before { transform: scaleX(1); }

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: 14px;
}
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--green-bg);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.why-icon svg { width: 20px; height: 20px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.81rem; color: var(--text-muted); line-height: 1.7; }

/* ============ MENU ============ */
.menu { background: var(--cream); }

.menu-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.menu-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.menu-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  background: var(--dark);
}
.menu-cat-icon {
  width: 34px;
  height: 34px;
  background: rgba(95,165,32,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
}
.menu-cat-icon svg { width: 16px; height: 16px; }
.menu-cat-header h3 {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
}

.menu-list { padding: 18px 22px; }
.menu-list li {
  padding: 8px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.menu-list li:last-child { border-bottom: none; }

.menu-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 26px;
  background: var(--green-bg);
  border: 1px solid rgba(95,165,32,0.2);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}
.menu-note-icon {
  width: 38px;
  height: 38px;
  background: rgba(95,165,32,0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.menu-note-icon svg { width: 18px; height: 18px; }
.menu-note p { font-size: 0.88rem; color: var(--green-dark); line-height: 1.7; }
.menu-note strong { font-weight: 700; }

/* ============ MENU SLIDER ============ */
.menu-slider-wrap {
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  width: 100%;
  /* aspect-ratio ile yükseklik belirlenir */
  aspect-ratio: 16/9;
  touch-action: pan-y;
}

.menu-slider { position: relative; width: 100%; height: 100%; }

.menu-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.menu-slide.active { opacity: 1; pointer-events: all; }

.menu-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-slide-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}
.menu-slide-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
}

.menu-slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.menu-slider-btn:hover { background: rgba(255,255,255,0.25); }
.menu-slider-btn svg { width: 20px; height: 20px; }
.menu-slider-prev { left: 12px; }
.menu-slider-next { right: 12px; }

.menu-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.menu-slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.menu-slider-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* Thumbnails */
.menu-thumbs {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 36px;
}
.menu-thumb {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  opacity: 0.5;
  transition: opacity var(--transition), outline var(--transition);
  outline: 2px solid transparent;
}
.menu-thumb.active { opacity: 1; outline: 2px solid var(--red); }
.menu-thumb:hover { opacity: 0.85; }
.menu-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .menu-slider-wrap { aspect-ratio: 4/3; border-radius: var(--radius); }
  .menu-slider-btn { width: 40px; height: 40px; }
  .menu-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .menu-thumbs .menu-thumb:nth-child(n+6) { display: none; }
}

@media (max-width: 480px) {
  .menu-slider-wrap { aspect-ratio: 4/3; border-radius: var(--radius); }
  .menu-slider-btn { width: 36px; height: 36px; }
  .menu-slider-btn svg { width: 16px; height: 16px; }
  .menu-thumbs { display: none; }
  .menu-slider-dots { bottom: 12px; }
  .menu-slider-dot { width: 8px; height: 8px; }
}

/* ============ GALERIE ============ */
.galerie { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
/* Eski tall layout kaldırıldı */
.gallery-item--tall { grid-row: auto; }

/* 4 fotoğraf için 2x2 grid */
.gallery-grid--4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,5,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-content {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
}
.gallery-overlay-content svg { width: 18px; height: 18px; }
.gallery-overlay-content span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.93);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease;
}
.lightbox-img.loading { opacity: 0.3; }

.lightbox-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.04em;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover { background: rgba(255,255,255,0.18); transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { background: rgba(255,255,255,0.18); transform: translateY(-50%) translateX(2px); }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

.lightbox-dots {
  position: absolute;
  bottom: 24px;
  display: flex;
  gap: 8px;
}
.lightbox-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.lightbox-dot.active {
  background: var(--green-light);
  transform: scale(1.25);
}

/* Galeri responsive */
@media (max-width: 768px) {
  .gallery-grid--4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
  .gallery-grid--4 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }
}

/* ============ ANFRAGE / CONTACT ============ */
.anfrage {
  background: linear-gradient(150deg, #0A1A05 0%, #1A3508 55%, #0D1F06 100%);
  position: relative;
  overflow: hidden;
}
.anfrage-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(60deg,
      rgba(95,165,32,0.8) 0, rgba(95,165,32,0.8) 1px,
      transparent 0, transparent 50%);
  background-size: 22px 22px;
}

.anfrage-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.anfrage-desc {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.anfrage-highlight {
  color: var(--green-light) !important;
  font-weight: 600;
  font-style: italic;
}

.anfrage-contacts { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(95,165,32,0.12);
  border: 1px solid rgba(95,165,32,0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
}
.contact-icon svg { width: 17px; height: 17px; }
.contact-icon.whatsapp-icon { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.22); color: #25D366; }

.contact-item > div span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.contact-item > div a {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
}
.contact-item > div a:hover { color: var(--green-light); }

/* ---- FORM ---- */
.anfrage-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cream-dark);
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 7px;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(95,165,32,0.1);
}
.form-input.error { border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 84px; }

.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-option { display: flex; align-items: center; cursor: pointer; }
.radio-option input { display: none; }
.radio-option span {
  padding: 7px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  font-size: 0.81rem;
  color: var(--text-muted);
  background: var(--cream);
  transition: var(--transition);
  cursor: pointer;
}
.radio-option input:checked + span {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.radio-option:hover span { border-color: var(--green); color: var(--green-dark); }

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
  font-size: 0.81rem;
  color: var(--text-muted);
}
.checkbox-option input { margin-top: 2px; accent-color: var(--green); }
.form-link { color: var(--green-dark); text-decoration: underline; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--green-bg);
  border: 1px solid rgba(95,165,32,0.2);
  border-radius: 8px;
  margin-top: 14px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--green-dark); flex-shrink: 0; }
.form-success p { font-size: 0.87rem; color: var(--green-dark); font-weight: 600; }

/* ============ FOOTER ============ */
.footer { background: #0A1A05; color: var(--white); }
.footer-top { padding: 64px 0 44px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  align-items: start;
}

.footer-logo-link { display: inline-block; margin-bottom: 18px; }
.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-links h4, .footer-contact-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-light); }

.footer-contact-items { display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--green-light); flex-shrink: 0; margin-top: 2px; }

.footer-halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(95,165,32,0.3);
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.06em;
}
.footer-halal-badge svg { width: 13px; height: 13px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--green-light); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,0.4);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg { width: 27px; height: 27px; fill: var(--white); }
.whatsapp-float:hover { animation: none; transform: scale(1.1); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-card:nth-child(3) { border-right: none; }
  .why-card:nth-child(4), .why-card:nth-child(5) {
    border-top: 1px solid var(--border);
    border-right: none;
  }
  .why-card:nth-child(4) { border-right: 1px solid var(--border); }
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-categories { grid-template-columns: repeat(2, 1fr); }
  .anfrage-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 100vw);
    height: 100vh;
    background: #0A1A05;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 36px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-link { padding: 12px 14px; width: 100%; font-size: 0.97rem; }
  .nav-cta { margin-top: 14px; justify-content: center; }

  .hero-stats {
    flex-direction: column;
    gap: 18px;
    padding: 24px 28px;
  }
  .hero-stat-divider { width: 70px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { border-right: none !important; border-bottom: 1px solid var(--border); border-top: none !important; }
  .menu-categories { grid-template-columns: 1fr; }
  .anfrage-form-wrap { padding: 22px 16px; border-radius: var(--radius); }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-title { font-size: 1.15rem; margin-bottom: 20px; padding-bottom: 14px; }
  .form-input { font-size: 0.875rem; padding: 10px 12px; }
  .radio-option span { padding: 6px 11px; font-size: 0.78rem; }
  .btn-full { font-size: 0.82rem; padding: 13px 16px; }
  .anfrage-grid { gap: 32px; }
  .contact-item > div a { font-size: 0.88rem; }
  .trust-inner { flex-direction: column; gap: 4px; align-items: flex-start; }
  .trust-divider { width: 70px; height: 1px; align-self: flex-start; margin-left: 16px; }
  .trust-item { padding: 8px 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
  .section { padding: 48px 0; }
  .anfrage-form-wrap { padding: 18px 14px; }
  .anfrage-grid { gap: 24px; }
  .anfrage-desc { font-size: 0.88rem; }
  .anfrage-contacts { gap: 12px; margin-top: 20px; }
  .contact-icon { width: 38px; height: 38px; }
}
