/* =========================================================
   Malatya Kayısısı — Hüseyin Yüce
   Shared stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --apricot: #F4A340;
  --apricot-deep: #E8852B;
  --apricot-soft: #F9B85A;
  --leaf: #5C7C3A;
  --leaf-soft: #7FA04F;
  --cream: #FBF6EE;
  --cream-deep: #F6E3C5;
  --ink: #3A2A1A;
  --ink-soft: #6B5B49;
  --line: #E8DCC8;
  --white: #ffffff;
  --whatsapp: #25D366;

  --shadow-sm: 0 2px 8px rgba(58, 42, 26, 0.08);
  --shadow-md: 0 10px 30px rgba(58, 42, 26, 0.12);
  --shadow-lg: 0 24px 60px rgba(58, 42, 26, 0.18);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1200px;
  --header-h: 76px;

  --serif: "Georgia", "Times New Roman", serif;
  --sans: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--apricot-deep); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.18; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--cream) 0%, #FFFCF6 100%); }
.section--cream { background: var(--cream-deep); }
.center { text-align: center; }
.grid { display: grid; gap: clamp(18px, 2.5vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: 0.78rem; color: var(--apricot-deep);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--apricot-deep); display: inline-block; }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-head.center { text-align: center; }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: linear-gradient(135deg, var(--apricot-soft), var(--apricot-deep)); color: #fff; box-shadow: 0 8px 20px rgba(232, 133, 43, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(232, 133, 43, 0.45); }
.btn--wa { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--apricot-deep); color: var(--apricot-deep); transform: translateY(-3px); }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand img { height: 46px; width: auto; }
.brand .logo-light { display: none; }
.site-header:not(.scrolled):not(.solid) .nav-link,
.site-header:not(.scrolled):not(.solid) .topbar-phone { color: #fff; }
.site-header.transparent:not(.scrolled) .brand .logo-dark { display: none; }
.site-header.transparent:not(.scrolled) .brand .logo-light { display: block; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-block; padding: 9px 13px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; color: var(--ink); white-space: nowrap;
  transition: color .2s, background .2s;
}
.main-nav ul { flex-wrap: nowrap; }
.nav-link:hover { color: var(--apricot-deep); }
.nav-link.active { color: var(--apricot-deep); background: rgba(244, 163, 64, .14); }

/* dropdown submenu */
.main-nav .has-sub { position: relative; }
.has-sub > .nav-link::after { content: "▾"; margin-left: 5px; font-size: .7em; opacity: .65; }
.subnav { position: absolute; top: 100%; left: 0; margin-top: 6px; min-width: 210px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 101; }
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav .nav-link { display: block; white-space: nowrap; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.topbar-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.topbar-phone svg { width: 18px; height: 18px; }

/* language switch */
.lang-switch { display: inline-flex; background: rgba(58,42,26,.08); border-radius: 999px; padding: 3px; }
.site-header:not(.scrolled):not(.solid) .lang-switch { background: rgba(255,255,255,.2); }
.lang-switch button {
  padding: 6px 12px; border-radius: 999px; font-weight: 700; font-size: 0.82rem;
  color: inherit; opacity: .7; transition: all .2s;
}
.lang-switch button.active { background: var(--apricot-deep); color: #fff; opacity: 1; }
.lang-switch button { padding: 5px 9px; font-size: .78rem; }

/* ---------- RTL (Arapça) ---------- */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .breadcrumb { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .eyebrow::before { margin-left: 8px; }
html[dir="rtl"] .fab-wa { right: auto; left: 20px; }
html[dir="rtl"] .fab-wa .fab-label { right: auto; left: 72px; }
html[dir="rtl"] .center, html[dir="rtl"] .section-head.center, html[dir="rtl"] .cta-band, html[dir="rtl"] .stat, html[dir="rtl"] .value { text-align: center; }

/* mobile menu toggle */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2.5px; border-radius: 3px;
  background: currentColor; transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; padding-top: var(--header-h);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media video { position: absolute; inset: 0; }
.hero__fallback {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(249,184,90,.55), transparent 55%),
    linear-gradient(160deg, #7a4a18 0%, #b5651d 40%, #e8852b 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(40,26,12,.58) 0%, rgba(40,26,12,.3) 13%, rgba(40,26,12,.3) 100%),
    linear-gradient(100deg, rgba(40,26,12,.4) 0%, rgba(40,26,12,.1) 40%, rgba(40,26,12,0) 60%);
}
/* Hero mozaik duvarı (tam ekranı kaplayan kayan tuğla duvarı) */
.wall--hero { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 6px; }
.wall--hero .wall__row { flex: 1; display: flex; gap: 6px; width: max-content; }
.wall--hero .wall__item { flex: none; width: 300px; height: 100%; border-radius: 0; box-shadow: none; }
.wall--hero .wall__item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 600px) { .wall--hero .wall__item { width: 200px; } }
.hero__inner { max-width: 700px; }
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero .lead { color: rgba(255,255,255,.92); margin-top: 18px; }
.hero .btn-row { margin-top: 32px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; }
.hero__badge { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; }
.hero__badge strong { font-family: var(--serif); font-size: 1.6rem; display: block; line-height: 1; }
.hero__badge span { color: rgba(255,255,255,.85); font-weight: 500; font-size: .85rem; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px; color: #fff;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; opacity: .8;
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid #fff; border-radius: 14px; position: relative; }
.scroll-cue .mouse::before { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:4px; height:7px; background:#fff; border-radius:2px; animation: scrollWheel 1.6s infinite; }
@keyframes scrollWheel { 0%{opacity:1; transform:translate(-50%,0);} 100%{opacity:0; transform:translate(-50%,12px);} }

/* floating apricots (decorative parallax) */
.floaty { position: absolute; pointer-events: none; opacity: .9; z-index: -1; will-change: transform; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 64px) 0 64px; color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(249,184,90,.5), transparent 55%),
    linear-gradient(140deg, #5a3a18 0%, #a85f1d 55%, #e8852b 100%);
}
.page-hero::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(40,26,12,.15), rgba(40,26,12,.45)); z-index:0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 640px; margin-top: 14px; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { color: var(--ink); }
.card__body p { font-size: .95rem; flex: 1; }
.card__tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--leaf); background: rgba(92,124,58,.12); padding: 4px 10px; border-radius: 999px; }
.card .btn { margin-top: 6px; align-self: flex-start; }

/* image placeholder */
.ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; gap: 8px; text-align: center; padding: 14px;
  color: #fff; overflow: hidden;
  background: #f3c98a url("../assets/il-apricots.svg") center / cover no-repeat;
}
.ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(58,42,26,.5), rgba(58,42,26,0) 55%); }
.ph svg { display: none; }
.ph span { position: relative; z-index: 1; font-size: .82rem; font-weight: 600; text-shadow: 0 1px 5px rgba(0,0,0,.45); }
.ph--leaf { background-color: #cfe0b6; }
.ph--small span { font-size: .72rem; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.gallery .g-item img { width: 100%; display: block; object-fit: cover; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }

/* ---------- Feature / value items ---------- */
.value { text-align: center; padding: 28px 22px; }
.value__icon { width: 64px; height: 64px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, var(--apricot-soft), var(--apricot-deep)); color:#fff; box-shadow: var(--shadow-sm); }
.value__icon svg { width: 30px; height: 30px; }
.value h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 16px; background:#fff; border-radius: var(--radius); border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--apricot-deep); display:block; line-height:1; }
.stat span { display:block; margin-top:8px; color: var(--ink-soft); font-weight:600; font-size:.92rem; }

/* ---------- Split (text + media) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; position: relative; box-shadow: var(--shadow-md); }
.split__text h2 { margin-bottom: 16px; }
.split__text ul.ticks { margin-top: 20px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.ticks li svg { flex: none; width: 22px; height: 22px; color: var(--leaf); margin-top: 2px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin-inline: auto; }
.timeline::before { content:""; position:absolute; left: 18px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 34px 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:""; position:absolute; left:10px; top:4px; width:18px; height:18px; border-radius:50%; background: var(--apricot-deep); box-shadow: 0 0 0 5px rgba(244,163,64,.2); }
.tl-item h3 { color: var(--apricot-deep); font-family: var(--sans); font-size: 1.05rem; }
.tl-item .year { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }

/* ---------- Geographical indication badge ---------- */
.gi-badge { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--leaf-soft), var(--leaf)); color: #fff; padding: 11px 22px; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow-sm); }
.gi-badge svg { width: 22px; height: 22px; flex: none; }
.stats--gi .stat strong { font-size: clamp(1.25rem, 2.4vw, 1.85rem); }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border:1px solid var(--line); }
table.cmp { width: 100%; border-collapse: collapse; background:#fff; min-width: 560px; }
table.cmp th, table.cmp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th { background: var(--ink); color:#fff; font-family: var(--sans); font-size:.92rem; }
table.cmp thead th:nth-child(2) { background: var(--apricot-deep); }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp td:first-child { font-weight: 700; color: var(--ink); }
table.cmp .yes { color: var(--leaf); font-weight: 700; }
table.cmp .no { color: #b94b3a; }
table.cmp tbody tr:nth-child(even) { background: #FFFCF6; }

/* ---------- Variety spec list ---------- */
.spec-list { display: grid; gap: 0; margin-top: 22px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.spec-list li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 18px; background: #fff; }
.spec-list li:nth-child(even) { background: #FFFCF6; }
.spec-list li > span { color: var(--ink-soft); }
.spec-list li > strong { color: var(--ink); text-align: right; }
.year-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.45); color: #fff; padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: .9rem; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 18px; }
.gallery .g-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery .g-item .ph { position: relative; }
.g-tall { aspect-ratio: 3/4; } .g-wide { aspect-ratio: 4/3; } .g-sq { aspect-ratio: 1/1; }
.gallery .g-item img { transition: transform .6s var(--ease); }
.gallery .g-item:hover img { transform: scale(1.07); }
.g-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; margin: 0; padding: 26px 14px 12px; color: #fff; font-size: .82rem; font-weight: 600; text-shadow: 0 1px 5px rgba(0,0,0,.5); background: linear-gradient(to top, rgba(58,42,26,.6), transparent); }

/* ---------- Marquee (auto-scrolling image strip) ---------- */
.marquee { position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee-scroll 180s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: none; height: 240px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--cream-deep); }
.marquee__item img { height: 100%; width: auto; display: block; object-fit: cover; transition: transform .4s var(--ease); }
.marquee__item:hover img { transform: scale(1.05); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) { .marquee__item { height: 165px; } }

/* ---------- Brick-wall marquee (çok satırlı kayan foto duvarı) ---------- */
.wall { display: flex; flex-direction: column; gap: 10px; }
.wall__row { display: flex; gap: 8px; width: max-content; animation: wall-left 110s linear infinite; will-change: transform; }
.wall__row--rev { animation: wall-right 110s linear infinite; }
.marquee:hover .wall__row, .wall:hover .wall__row { animation-play-state: paused; }
.wall__item { flex: none; width: 240px; height: 160px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); background: #e9dcc8; }
.wall__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.wall__item:hover img { transform: scale(1.05); }
@keyframes wall-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes wall-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (max-width: 900px) { .wall__item { width: 200px; height: 130px; } }
@media (max-width: 600px) { .wall__item { width: 150px; height: 104px; border-radius: 6px; } .wall { gap: 6px; } .wall__row { gap: 6px; } }

/* ---------- Video ---------- */
.video-frame {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #1c140c;
}
.video-frame iframe, .video-frame video { position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-ph {
  position: absolute; inset: 0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  color:#fff; text-align:center; padding: 24px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(249,184,90,.4), transparent 60%),
    linear-gradient(160deg, #2a1c10, #5a3a18);
}
.video-ph .play { width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.16); border:2px solid #fff; display:grid; place-items:center; backdrop-filter: blur(4px); transition: transform .3s, background .3s; }
.video-ph:hover .play { transform: scale(1.08); background: rgba(255,255,255,.28); }
.video-ph .play svg { width: 34px; height: 34px; color:#fff; margin-left:5px; }
.video-ph small { color: rgba(255,255,255,.7); font-size:.82rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; color:#fff; text-align:center;
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(249,184,90,.55), transparent 60%),
    linear-gradient(135deg, #b5651d, #e8852b);
}
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 600px; margin: 14px auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px,4vw,48px); align-items:start; }
.info-list { display:grid; gap:18px; }
.info-item { display:flex; gap:16px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:18px 20px; box-shadow: var(--shadow-sm); }
.info-item .ic { flex:none; width:46px; height:46px; border-radius:13px; background: linear-gradient(135deg, var(--apricot-soft), var(--apricot-deep)); color:#fff; display:grid; place-items:center; }
.info-item .ic svg { width:22px; height:22px; }
.info-item h4 { font-family: var(--sans); font-size:.85rem; text-transform:uppercase; letter-spacing:1px; color: var(--ink-soft); margin-bottom:3px; }
.info-item a, .info-item p { color: var(--ink); font-weight:600; }

form.contact-form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,3vw,36px); box-shadow: var(--shadow-md); display:grid; gap:16px; }
.field { display:grid; gap:6px; }
.field label { font-size:.85rem; font-weight:700; color: var(--ink); }
.field input, .field textarea {
  width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:12px;
  font-family:inherit; font-size:.98rem; color:var(--ink); background:#FFFDF9; transition: border .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline:none; border-color: var(--apricot-deep); box-shadow: 0 0 0 3px rgba(244,163,64,.18); }
.field textarea { resize: vertical; min-height: 130px; }

.map-embed { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); border:1px solid var(--line); aspect-ratio: 16/7; }
.map-embed iframe { width:100%; height:100%; border:0; display:block; }

/* ---------- Certificate (PDF) frame ---------- */
.cert-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: #fff; height: min(78vh, 760px); }
.cert-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d9cbb8; padding-top: clamp(50px,7vw,84px); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,48px); }
.site-footer .brand img { height:42px; }
.site-footer p { color: #b9a98f; font-size:.94rem; margin-top:16px; max-width: 32ch; }
.site-footer h4 { color:#fff; font-family: var(--sans); font-size:.95rem; letter-spacing:.5px; margin-bottom:16px; }
.footer-links { display:grid; gap:10px; }
.footer-links a { color:#cbbca5; font-size:.94rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--apricot-soft); padding-left: 4px; }
.footer-contact { display:grid; gap:12px; }
.footer-contact a { display:flex; gap:10px; align-items:center; color:#cbbca5; }
.footer-contact a:hover { color:#fff; }
.footer-contact svg { width:18px; height:18px; color: var(--apricot-soft); flex:none; }
.socials { display:flex; gap:10px; margin-top:16px; }
.socials a { width:40px; height:40px; border-radius:11px; background:rgba(255,255,255,.08); display:grid; place-items:center; color:#cbbca5; transition: all .25s; }
.socials a:hover { background: var(--apricot-deep); color:#fff; transform: translateY(-3px); }
.socials svg { width:19px; height:19px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top: clamp(36px,5vw,56px); padding: 22px 0; text-align:center; font-size:.86rem; color:#9c8d75; }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed; right: 20px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color:#fff; display:grid; place-items:center;
  box-shadow: 0 10px 28px rgba(37,211,102,.5);
  animation: fabPulse 2.6s infinite;
}
.fab-wa svg { width: 32px; height: 32px; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa .fab-label {
  position:absolute; right: 72px; white-space:nowrap; background:#fff; color: var(--ink);
  padding:8px 14px; border-radius:10px; font-weight:700; font-size:.85rem; box-shadow: var(--shadow-md);
  opacity:0; transform: translateX(8px); pointer-events:none; transition: all .25s;
}
.fab-wa:hover .fab-label { opacity:1; transform: translateX(0); }
@keyframes fabPulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Reveal animations (JS fallback-safe) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
.tilt { transition: transform .3s var(--ease); transform-style: preserve-3d; }

/* ---------- Language visibility ---------- */
[data-lang-only]{ display:none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--cream);
    transform: translateX(100%); transition: transform .35s var(--ease);
    padding: 24px; overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  .nav-open .main-nav { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav .nav-link,
  .site-header:not(.scrolled):not(.solid) .main-nav .nav-link { color: var(--ink); padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .main-nav .nav-link.active { color: var(--apricot-deep); background: rgba(244,163,64,.14); }
  .nav-toggle { display: block; color: var(--ink); }
  .main-nav .has-sub { display: block; }
  .has-sub > .nav-link::after { display: none; }
  .subnav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 6px 14px; margin-top: 0; min-width: 0; }
  .site-header:not(.scrolled):not(.solid) .nav-toggle { color:#fff; }
  .topbar-phone span { display:none; }
  .cols-2, .cols-3, .cols-4, .stats { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}
@media (max-width: 560px) {
  .cols-2, .cols-3, .cols-4, .stats { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__badges { gap: 16px; }
  .btn { width: 100%; }
  .hero .btn-row .btn, .cta-band .btn { width: auto; }
  .header-actions .topbar-phone { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; }
  /* Kayan görsel şeridi/duvarı, "animasyonları azalt" açık olsa da akmaya devam etsin */
  .wall__row { animation: wall-left 110s linear infinite !important; }
  .wall__row--rev { animation: wall-right 110s linear infinite !important; }
  .marquee__track { animation: marquee-scroll 180s linear infinite !important; }
}
