/* İkizler — Premium Corporate Design v2 */

:root {
  --brand: #0A5C52;
  --brand-light: #0E7A6E;
  --brand-dark: #064038;
  --accent: #D4922A;
  --accent-light: #E8A838;
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #6B7280;
  --line: #E5E7EB;
  --bg: #F8F9FA;
  --surface: #FFFFFF;
  --dark: #0C1220;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max: 1180px;
  --nav-h: 76px;
  --r: 10px;
  --r-lg: 20px;
  --ease: 0.25s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 8px 30px rgba(0,0,0,0.07);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
body.menu-open { overflow: hidden; position: fixed; width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }
img { display: block; }
svg { flex-shrink: 0; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 28px); }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 32px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__icon { width: 42px; height: 42px; background: var(--brand); border-radius: 10px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em; }
.brand__name { font-weight: 700; font-size: 1.05rem; color: var(--ink); line-height: 1.2; letter-spacing: -0.02em; }
.brand__tag { font-size: 0.68rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { padding: 8px 14px; font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); border-radius: 8px; transition: all var(--ease); }
.main-nav a:hover { color: var(--brand); background: rgba(10,92,82,0.06); }
.main-nav a.is-active { color: var(--brand); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.header-phone svg { color: var(--brand); }
.header-cta { display: inline-flex; align-items: center; padding: 10px 22px; background: var(--brand); color: #fff; font-size: 0.875rem; font-weight: 600; border-radius: 8px; transition: all var(--ease); }
.header-cta:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(10,92,82,0.3); }

.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--ease); }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h);
  background: var(--surface);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 14px 0; font-size: 1.05rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a.is-active { color: var(--brand); }
.mobile-nav .header-cta { display: flex; justify-content: center; margin-top: 24px; width: 100%; padding: 14px; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; font-family: inherit; font-size: 0.9rem; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; transition: all var(--ease); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,92,82,0.25); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { background: #f0fdf4; color: var(--brand-dark); }
.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn--ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn--full { width: 100%; }

/* ---- TYPOGRAPHY ---- */
.eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brand); margin-bottom: 14px; }
.heading-xl { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -0.03em; }
.heading-lg { font-size: clamp(1.75rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--ink); line-height: 1.15; letter-spacing: -0.025em; }
.heading-md { font-size: 1.25rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.lead { font-size: 1.0625rem; color: var(--muted); line-height: 1.75; }

.section { padding: 96px 0; }
.section--bg { background: var(--bg); }
.section--dark { background: var(--dark); color: rgba(255,255,255,0.75); }
.section-head { max-width: 580px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .heading-lg { margin-bottom: 14px; }
.section-head--light .heading-lg { color: #fff; }
.section-head--light .lead { color: rgba(255,255,255,0.6); }
.section-head--light .eyebrow { color: var(--accent-light); }

/* ---- PAGE BANNER ---- */
.page-banner { background: var(--dark); padding: 64px 0 56px; position: relative; overflow: hidden; }
.page-banner::after { content: ''; position: absolute; right: -10%; top: -30%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(10,92,82,0.25) 0%, transparent 70%); pointer-events: none; }
.page-banner__inner { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 520px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; margin-bottom: 20px; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb .current { color: var(--accent-light); }

/* ---- HOME HERO ---- */
.hero-split { padding: 72px 0 88px; background: var(--bg); overflow: hidden; }
.hero-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-split__text .eyebrow { margin-bottom: 18px; }
.hero-split__text .heading-xl { margin-bottom: 22px; }
.hero-split__text .heading-xl span { color: var(--brand); }
.hero-split__text .lead { margin-bottom: 32px; max-width: 480px; }
.hero-split__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-split__meta { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-split__meta div strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.hero-split__meta div span { font-size: 0.8125rem; color: var(--muted); }
.hero-split__visual { position: relative; padding-bottom: 24px; }
.hero-split__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; max-width: 100%; }
.hero-split__img img { width: 100%; height: 100%; object-fit: cover; }
.hero-split__card {
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  max-width: calc(100% - 32px);
  background: var(--surface);
  border-radius: var(--r);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
}
.hero-split__card-icon { width: 44px; height: 44px; background: rgba(10,92,82,0.1); border-radius: 10px; display: grid; place-items: center; color: var(--brand); }
.hero-split__card strong { display: block; font-size: 0.875rem; color: var(--ink); }
.hero-split__card span { font-size: 0.75rem; color: var(--muted); }

/* ---- LOGOS ---- */
.logo-bar { padding: 40px 0; border-bottom: 1px solid var(--line); }
.logo-bar p { text-align: center; font-size: 0.8125rem; color: var(--muted); margin-bottom: 24px; font-weight: 500; }
.logo-bar__items { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; }
.logo-bar__items span { font-size: 0.875rem; font-weight: 600; color: var(--muted); opacity: 0.7; }

/* ---- FEATURES ROW ---- */
.features-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.feature-cell { background: var(--surface); padding: 32px 28px; transition: background var(--ease); }
.feature-cell:hover { background: var(--bg); }
.feature-cell svg { color: var(--brand); margin-bottom: 16px; }
.feature-cell h3 { font-size: 0.9375rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feature-cell p { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }

/* ---- SERVICE CARDS ---- */
.services-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card { display: flex; gap: 24px; padding: 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); transition: all var(--ease); }
.svc-card:hover { border-color: rgba(10,92,82,0.25); box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-card__num { font-size: 2.5rem; font-weight: 800; color: var(--line); line-height: 1; flex-shrink: 0; transition: color var(--ease); }
.svc-card:hover .svc-card__num { color: var(--brand); }
.svc-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.svc-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.svc-card a { font-size: 0.8125rem; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 4px; }
.svc-card a:hover { gap: 8px; }

.svc-card--img { flex-direction: column; padding: 0; overflow: hidden; }
.svc-card--img .svc-card__img { height: 200px; overflow: hidden; }
.svc-card--img .svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card--img:hover .svc-card__img img { transform: scale(1.04); }
.svc-card--img .svc-card__body { padding: 28px; }

/* ---- STATS ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; padding: 36px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); }
.stat-box strong { display: block; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.stat-box span { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

/* ---- ABOUT ---- */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-layout__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-layout__img img { width: 100%; height: 460px; object-fit: cover; }
.check-list li { display: flex; gap: 12px; padding: 10px 0; font-size: 0.9375rem; color: var(--ink-soft); }
.check-list li svg { flex-shrink: 0; color: var(--brand); margin-top: 3px; }

/* ---- WHY ---- */
.why-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-item { padding: 36px 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); transition: all var(--ease); }
.why-item:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.why-item__icon { width: 48px; height: 48px; background: rgba(212,146,42,0.15); border-radius: 10px; display: grid; place-items: center; color: var(--accent-light); margin-bottom: 20px; }
.why-item h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-item p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ---- TESTIMONIAL ---- */
.testimonial-slider-v2 { position: relative; overflow: hidden; border-radius: var(--r-lg); width: 100%; }
.testimonial-slider-v2 .track { display: flex; transition: transform 0.5s ease; will-change: transform; width: 100%; }
.testimonial-slider-v2 .slide { flex: 0 0 100%; width: 100%; min-width: 100%; }

.testimonial-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; min-height: 320px; }
.testimonial-card__body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.testimonial-card__mark { font-size: 3rem; line-height: 1; color: var(--brand); opacity: 0.25; font-weight: 800; margin-bottom: 16px; }
.testimonial-card__body p { font-size: 1.125rem; color: var(--ink); line-height: 1.75; font-weight: 500; margin-bottom: 28px; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial-card__avatar { width: 48px; height: 48px; background: var(--brand); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.testimonial-card__author strong { display: block; font-size: 0.9375rem; color: var(--ink); }
.testimonial-card__author span { font-size: 0.8125rem; color: var(--muted); }
.testimonial-card__media { position: relative; min-height: 320px; background: var(--bg); }
.testimonial-card__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.slider-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: all var(--ease); }
.slider-dot.active { background: var(--brand); width: 24px; border-radius: 4px; }
.slider-nav button { width: 40px; height: 40px; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: all var(--ease); }
.slider-nav button:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---- MENU PACKAGES ---- */
.menu-packages { display: flex; flex-direction: column; gap: 32px; }
.menu-package {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.menu-package__head { margin-bottom: 28px; max-width: 720px; }
.menu-package__badge {
  display: inline-block;
  background: rgba(10,92,82,0.1);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.menu-package__desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; margin-top: 10px; }

@media (max-width: 768px) {
  .menu-package { padding: 24px 18px; }
}
.menu-tab-v2 { padding: 10px 20px; font-family: inherit; font-size: 0.875rem; font-weight: 600; color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; cursor: pointer; transition: all var(--ease); }
.menu-tab-v2:hover { color: var(--brand); border-color: var(--brand); }
.menu-tab-v2.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.menu-day-panel { display: none; }
.menu-day-panel.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.menu-dish-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.menu-dish { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 16px; text-align: center; }
.menu-dish__type { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand); margin-bottom: 8px; }
.menu-dish__name { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }

.menu-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r-lg); }
.menu-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 0.9rem; }
.menu-table thead { background: var(--dark); color: #fff; }
.menu-table th, .menu-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.menu-table th { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.menu-table tbody tr:hover { background: var(--bg); }

/* ---- GALLERY ---- */
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-masonry .g-item { border-radius: var(--r); overflow: hidden; cursor: pointer; position: relative; }
.gallery-masonry .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-masonry .g-item:hover img { transform: scale(1.05); }
.gallery-masonry .g-item::after { content: ''; position: absolute; inset: 0; background: rgba(10,92,82,0); transition: background var(--ease); }
.gallery-masonry .g-item:hover::after { background: rgba(10,92,82,0.25); }
.gallery-masonry .g-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
.g-item__label { position: absolute; bottom: 16px; left: 16px; z-index: 1; color: #fff; font-size: 0.8125rem; font-weight: 600; opacity: 0; transform: translateY(8px); transition: all var(--ease); }
.g-item:hover .g-item__label { opacity: 1; transform: none; }

/* ---- LIGHTBOX ---- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12,18,32,0.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--r); object-fit: contain; }
.lightbox__cap { text-align: center; color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 0.875rem; }
.lightbox__x, .lightbox__arr { position: fixed; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 44px; height: 44px; border-radius: 8px; cursor: pointer; font-size: 1.25rem; display: grid; place-items: center; transition: background var(--ease); }
.lightbox__x:hover, .lightbox__arr:hover { background: var(--brand); }
.lightbox__x { top: 24px; right: 24px; }
.lightbox__arr--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__arr--next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---- PROCESS ---- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: proc; }
.process-item { position: relative; padding: 28px 20px; }
.process-item::before { counter-increment: proc; content: counter(proc, decimal-leading-zero); display: block; font-size: 2rem; font-weight: 800; color: var(--brand); opacity: 0.2; margin-bottom: 16px; letter-spacing: -0.03em; }
.process-item h3 { font-size: 0.9375rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.process-item p { font-size: 0.8125rem; color: var(--muted); }

/* ---- VALUES ---- */
.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-box { padding: 36px 28px; border: 1px solid var(--line); border-radius: var(--r-lg); transition: all var(--ease); }
.value-box:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.value-box__icon { width: 52px; height: 52px; background: rgba(10,92,82,0.08); border-radius: 12px; display: grid; place-items: center; color: var(--brand); margin-bottom: 20px; }
.value-box h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.value-box p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.contact-sidebar { background: var(--dark); border-radius: var(--r-lg); padding: 40px 32px; color: rgba(255,255,255,0.75); }
.contact-sidebar h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 28px; }
.contact-row { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-row__icon { width: 40px; height: 40px; background: rgba(10,92,82,0.3); border-radius: 8px; display: grid; place-items: center; color: var(--accent-light); flex-shrink: 0; }
.contact-row strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.contact-row a, .contact-row p { color: #fff; font-size: 0.9375rem; }
.contact-form-v2 { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; }
.contact-form-v2 h3 { font-size: 1.125rem; font-weight: 700; color: var(--ink); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-field label em { color: #DC2626; font-style: normal; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; font-family: inherit; font-size: 0.9rem; border: 1px solid var(--line); border-radius: 8px; transition: border-color var(--ease), box-shadow var(--ease); background: var(--surface); color: var(--ink); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(10,92,82,0.1); }
.form-field input.err { border-color: #DC2626; }
.form-err { font-size: 0.75rem; color: #DC2626; margin-top: 4px; min-height: 1em; }
.form-ok { margin-top: 16px; padding: 14px; background: #ECFDF5; border: 1px solid #6EE7B7; border-radius: 8px; color: #065F46; font-size: 0.875rem; font-weight: 500; text-align: center; }

/* ---- MAP ---- */
.map-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.area-list-v2 li { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-soft); }
.area-list-v2 li svg { color: var(--brand); flex-shrink: 0; }
.map-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; min-height: 280px; border: 0; }

/* ---- FAQ ---- */
.faq-v2 { max-width: 720px; }
.faq-v2 details { border-bottom: 1px solid var(--line); }
.faq-v2 summary { padding: 20px 0; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 0.9375rem; }
.faq-v2 summary::-webkit-details-marker { display: none; }
.faq-v2 summary::after { content: '+'; font-size: 1.25rem; color: var(--brand); font-weight: 400; transition: transform var(--ease); }
.faq-v2 details[open] summary::after { transform: rotate(45deg); }
.faq-v2 details[open] summary { color: var(--brand); }
.faq-v2 .ans { padding: 0 0 20px; font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ---- CTA ---- */
.cta-strip { background: var(--brand); padding: 72px 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 1rem; }
.cta-strip__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid .brand__name { color: #fff; }
.footer-grid .brand__tag { color: rgba(255,255,255,0.4); }
.footer-desc { margin-top: 16px; font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color var(--ease); }
.footer-col a:hover { color: var(--accent-light); }
.footer-col li { display: flex; gap: 8px; margin-bottom: 12px; font-size: 0.8125rem; line-height: 1.5; }
.footer-col li svg { color: var(--brand-light); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px; display: grid; place-items: center; color: rgba(255,255,255,0.7); margin-bottom: 0; transition: all var(--ease); }
.footer-social a:hover { background: var(--brand); color: #fff; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.8125rem; color: rgba(255,255,255,0.3); }

/* ---- FLOATS ---- */
.wa-btn {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom, 16px));
  right: max(16px, env(safe-area-inset-right, 16px));
  z-index: 90;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--ease);
}
.wa-btn:hover { transform: scale(1.06); color: #fff; }
.top-btn {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom, 16px));
  left: max(16px, env(safe-area-inset-left, 16px));
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.top-btn.show { opacity: 1; visibility: visible; transform: none; }
.top-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 1024px) {
  :root { --nav-h: 72px; }

  .hero-split__grid,
  .about-layout,
  .testimonial-card,
  .contact-layout,
  .map-layout { grid-template-columns: 1fr; gap: 40px; }

  .hero-split__grid { gap: 40px; }
  .hero-split__visual { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-split__text .lead { max-width: none; }

  .testimonial-card__media { min-height: 260px; order: -1; }
  .testimonial-card__body { padding: 32px 28px; }

  .features-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .why-row { grid-template-columns: repeat(2, 1fr); }
  .values-row,
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .services-row { grid-template-columns: 1fr; }
  .menu-dish-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry .g-item:nth-child(1) { grid-row: span 1; min-height: 220px; }
  .gallery-masonry .g-item { min-height: 200px; aspect-ratio: 4/3; }

  .about-layout__img img { height: 360px; }
  .contact-layout { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .page-banner { padding: 48px 0 40px; }

  /* Header */
  .main-nav,
  .header-phone,
  .header-actions .header-cta { display: none; }
  .menu-btn { display: flex; }
  .mobile-nav {
    display: block;
    top: var(--nav-h);
    height: calc(100dvh - var(--nav-h));
    padding: 16px clamp(16px, 4vw, 28px) max(24px, env(safe-area-inset-bottom));
  }
  .header-row { height: var(--nav-h); gap: 12px; }
  .brand { min-width: 0; flex: 1; }
  .brand__name { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand__tag { display: none; }
  .brand__icon { width: 38px; height: 38px; font-size: 0.95rem; flex-shrink: 0; }

  /* Hero */
  .hero-split { padding: 32px 0 48px; }
  .hero-split__text .heading-xl { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .hero-split__actions { flex-direction: column; }
  .hero-split__actions .btn { width: 100%; }
  .hero-split__meta { flex-direction: row; flex-wrap: wrap; gap: 20px 24px; }
  .hero-split__meta div { flex: 1 1 40%; min-width: 120px; }
  .hero-split__img { aspect-ratio: 5/4; max-height: 340px; }
  .hero-split__card { position: relative; left: auto; right: auto; bottom: auto; max-width: 100%; margin-top: 16px; }
  .hero-split__visual { padding-bottom: 0; }

  /* Grids → single column */
  .features-row,
  .stats-row,
  .why-row,
  .values-row,
  .process-row,
  .menu-dish-grid,
  .gallery-masonry,
  .footer-grid { grid-template-columns: 1fr; }

  .feature-cell { padding: 24px 20px; }
  .svc-card { flex-direction: column; gap: 12px; padding: 24px; }
  .svc-card__num { font-size: 2rem; }

  /* Testimonial */
  .testimonial-card { min-height: auto; }
  .testimonial-card__body { padding: 28px 20px; }
  .testimonial-card__body p { font-size: 1rem; }
  .testimonial-card__media { min-height: 220px; }

  /* Menu */
  .menu-tabs-v2 { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; scrollbar-width: none; }
  .menu-tabs-v2::-webkit-scrollbar { display: none; }
  .menu-tab-v2 { flex-shrink: 0; }
  .menu-dish-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .menu-dish { padding: 18px 12px; }
  .menu-table th,
  .menu-table td { padding: 12px 14px; font-size: 0.8125rem; }

  /* Contact & forms */
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-v2 { padding: 24px 20px; }
  .contact-sidebar { padding: 28px 22px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; /* iOS zoom önleme */ }

  /* About */
  .about-layout { gap: 32px; }
  .about-layout__img img { height: 260px; }

  /* CTA & footer */
  .cta-strip { padding: 48px 0; }
  .cta-strip__btns { flex-direction: column; align-items: stretch; padding: 0 8px; }
  .cta-strip__btns .btn { width: 100%; }
  .site-footer { padding-top: 48px; }
  .footer-grid { gap: 28px; padding-bottom: 32px; }

  /* Logo bar */
  .logo-bar { padding: 28px 0; }
  .logo-bar__items { gap: 10px 16px; }
  .logo-bar__items span { font-size: 0.8125rem; }

  /* Lightbox */
  .lightbox__x { top: max(12px, env(safe-area-inset-top)); right: 12px; }
  .lightbox__arr--prev { left: 8px; }
  .lightbox__arr--next { right: 8px; }

  /* Float buttons — avoid overlap */
  .top-btn { bottom: max(80px, calc(env(safe-area-inset-bottom, 16px) + 64px)); }
}

/* Small phones */
@media (max-width: 380px) {
  .brand__name { font-size: 0.82rem; max-width: 160px; }
  .hero-split__meta div { flex: 1 1 100%; }
  .menu-dish-grid { grid-template-columns: 1fr; }
  .stat-box strong { font-size: 1.75rem; }
  .slider-nav button { width: 36px; height: 36px; }
}

/* Desktop-only hero card position */
@media (min-width: 769px) {
  .hero-split__visual { padding-bottom: 32px; }
  .hero-split__card {
    bottom: -8px;
    left: -16px;
    right: auto;
    max-width: 300px;
  }
}

@media (min-width: 1025px) {
  .hero-split__card {
    bottom: -24px;
    left: -24px;
    max-width: 320px;
  }
}
