/* ==========================================================================
   Mugem Guzellik - Muge Kavlu | Demo
   Marka sistemi, Instagram gorsel kimligiyle ayni yerden besleniyor:
     - Murekkep (ink)  #14100C : siyah uniforma / tabela zemini. Basliklar,
       koyu bolumler, footer ve ikincil dugmeler bu renk uzerine kurulu.
     - Altin (gold)    #C08A2E : uniformadaki altin biye, tabela isigi ve
       logo halkasi. Eyebrow etiketleri, ikonlar, kategori numaralari ve
       birincil CTA dugmeleri bu renkte.
     - Bal (sand)      #D9AE5A : altinin koyu zemindeki karsiligi; #C08A2E
       murekkep uzerinde sonuk kaldigi icin koyu bolumlerde bu ton gecer.
   Zemin beyaz; ara bolumler sampanya / krem (#FBF7F0 / #F4EDE1) ile ayrilir.
   Tipografi: basliklar Playfair Display (logodaki serif "GUZELLIK" ile ayni
   aile hissi), govde metni Jost.
   ========================================================================== */

:root {
  --font-main: "Jost", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-display: "Playfair Display", "Times New Roman", Georgia, serif;

  /* marka rengi 1 - altin: acik zeminde vurgu */
  --accent: #C08A2E;
  --accent-deep: #9A6C1C;
  --accent-soft: #F7EFDF;
  /* koyu zeminde #C08A2E sonuk kalir; yerine bal tonu kullanilir */
  --sand: #D9AE5A;
  --sand-soft: #EDD5A6;
  /* "Kapali" gunu icin altin ailesinden sicak, kirmizimsi toprak tonu */
  --closed: #D08B72;

  /* marka rengi 2 - murekkep: tum koyu yuzeyler ve basliklar */
  --ink: #14100C;
  --ink-2: #221B12;
  --ink-3: #31271A;

  --color-bg: #FFFFFF;
  --color-bg-alt: #F4EDE1;
  --color-bg-alt-2: #FBF7F0;
  --color-surface: #FFFFFF;

  --color-text: #2A231B;
  --color-muted: #756857;
  --color-border: #E9DFCD;

  --shadow-sm: 0 2px 12px rgba(60, 42, 18, 0.07);
  --shadow-md: 0 14px 34px rgba(60, 42, 18, 0.12);
  --shadow-lg: 0 26px 64px rgba(30, 20, 8, 0.16);

  --radius-btn: 10px;
  --radius-card: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-btn); z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* Basliklar serif (Playfair) -- logodaki "GUZELLIK" satiriyla ayni klasik
   his. Kart basliklari (h3/h4) govde metniyle ayni sans'ta kalir ki uzun
   hizmet adlari listelerde okunakli dursun. */
h1, h2, h3, h4 { font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15; overflow-wrap: break-word; }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.1rem, 4vw, 3.35rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; line-height: 1.3; }
p { color: var(--color-muted); overflow-wrap: break-word; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.eyebrow.on-dark { background: transparent; color: var(--sand); border-color: rgba(217,174,90,.35); box-shadow: none; }

.section-pad { padding: 92px 0; }
.bg-alt { background: var(--color-bg-alt); }
.bg-alt-2 { background: var(--color-bg-alt-2); }
.bg-ink { background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-ink p { color: rgba(255,255,255,.72); }

.section-split-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}
.section-split-head p { font-size: 1.02rem; }
.section-head-center { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.section-head-center p { margin-top: 14px; font-size: 1.03rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700; font-size: 0.95rem; white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px rgba(192,138,46,.30); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
/* altin #C08A2E murekkep uzerinde sonuk kalir: koyu bolumlerde birincil dugme bal tonuna gecer */
.bg-ink .btn-primary, .hero-bar .btn-primary, .side-cta .btn-primary,
.contact-panel .btn-primary, .page-head .btn-primary {
  background: var(--sand); color: var(--ink); box-shadow: 0 10px 22px rgba(0,0,0,.28);
}
.bg-ink .btn-primary:hover, .hero-bar .btn-primary:hover, .side-cta .btn-primary:hover,
.contact-panel .btn-primary:hover, .page-head .btn-primary:hover { background: var(--sand-soft); color: var(--ink); }
/* WhatsApp: acik header uzerinde konturlu, dolu CTA ile yarismasin */
.btn-wa { background: #fff; border: 1.5px solid var(--color-border); color: var(--ink); }
.btn-wa:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-ink { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.85rem; }
/* hedefi henuz baglanmamis CTA: gorunur ama tiklanamaz */
.btn.is-disabled { opacity: .5; pointer-events: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.check-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); font-size: 0.96rem; }
.check-list .chk {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-list .chk svg { width: 14px; height: 14px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 1px solid var(--color-border); }
.header-top {
  border-bottom: 1px solid var(--color-border);
  transition: max-height .3s ease, opacity .3s ease, border-color .3s ease;
  overflow: hidden;
}
.header-top-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand img { height: 56px; width: auto; }
.header-infos { display: flex; align-items: center; gap: 34px; }
.header-info-item { display: flex; align-items: center; gap: 10px; }
.header-info-item .ic { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header-info-item .ic svg { width: 15px; height: 15px; }
.header-info-item .txt { display: flex; flex-direction: column; line-height: 1.3; }
.header-info-item .txt strong { font-size: 0.86rem; color: var(--ink); font-weight: 700; }
.header-info-item .txt span { font-size: 0.74rem; color: var(--color-muted); }
.header-info-item a:hover strong { color: var(--accent-deep); }

.site-header.is-scrolled .header-top { max-height: 0; opacity: 0; border-color: transparent; }

.header-nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; font-weight: 600; font-size: 0.95rem;
  color: var(--ink); border-radius: var(--radius-btn);
  transition: background .2s, color .2s;
}
.main-nav a.nav-link:hover, .main-nav li.is-active > a.nav-link { background: var(--color-bg-alt); color: var(--accent-deep); }
/* "Anasayfa" masaustu menude yalniz ev ikonuyla temsil edilir; ceker menude
   dikey liste oldugu icin ikonun yaninda metin de gorunur. */
.main-nav a.nav-link.nav-home { padding-inline: 14px; font-size: 1.02rem; }
.main-nav .nav-home .nav-home-txt { display: none; }
.drawer-panel .nav-home .nav-home-txt { display: inline; }
.drawer-panel .nav-home { justify-content: flex-start; gap: 10px; }
.main-nav .nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.has-dropdown { position: relative; }
.has-dropdown:hover > .nav-link svg, .has-dropdown:focus-within > .nav-link svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 320px;
  background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 8px; font-size: 0.92rem; font-weight: 600; color: var(--color-text); }
.dropdown li a:hover { background: var(--accent-soft); color: var(--accent-deep); }
.dropdown li a .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; background: var(--ink); color: #fff; flex-shrink: 0; }
.nav-toggle svg { width: 20px; height: 20px; }

/* Mobile drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 300; visibility: hidden; pointer-events: none; }
.mobile-drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer-overlay { position: absolute; inset: 0; background: rgba(20,16,12,.6); opacity: 0; transition: opacity .3s ease; }
.mobile-drawer.is-open .drawer-overlay { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; width: min(360px, 88vw); height: 100%;
  background: #fff; padding: 26px 24px 40px; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow-lg);
}
.mobile-drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.drawer-head img { height: 44px; }
.drawer-close { width: 38px; height: 38px; border-radius: 50%; background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 18px; height: 18px; }
.drawer-panel .main-nav { display: block; }
.drawer-panel .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
.drawer-panel .nav-link { justify-content: space-between; width: 100%; }
.drawer-panel .dropdown {
  position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
  background: var(--color-bg-alt); max-height: 0; overflow: hidden; padding: 0 10px; margin-top: 2px;
  transition: max-height .3s ease, padding .3s ease;
}
.has-dropdown.is-open .dropdown { max-height: 480px; padding: 8px; }
.has-dropdown.is-open > .nav-link svg { transform: rotate(180deg); }
.drawer-cta { margin-top: 22px; display: grid; gap: 12px; }
.drawer-info { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--color-border); display: grid; gap: 12px; }
.drawer-info .header-info-item .txt strong { font-size: 0.84rem; }

/* ---------- Hero Slider ----------
   The supplied slider artwork already carries its own headline, so the
   slides are shown intact and the animated copy lives in the bar below. */
.hero { position: relative; background: var(--ink); }
.hero-slider { position: relative; width: 100%; aspect-ratio: 1920 / 780; max-height: 76vh; overflow: hidden; background: var(--ink); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center center); transform: scale(1.06); transition: transform 9s linear; }
.hero-slide.is-active img { transform: scale(1); }

.hero-arrows { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff;
  display: flex; align-items: center; justify-content: center; pointer-events: auto;
  backdrop-filter: blur(6px); transition: background .25s, border-color .25s;
}
.hero-arrow:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }

.hero-dots { position: absolute; right: 30px; bottom: 26px; z-index: 5; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.hero-dot { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.6); font-size: .76rem; font-weight: 700; letter-spacing: .05em; transition: color .25s; }
.hero-dot .bar { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.45); transition: width .35s ease, background .25s; }
.hero-dot.is-active { color: #fff; }
.hero-dot.is-active .bar { width: 50px; background: var(--sand); }

.hero-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.16); z-index: 5; }
.hero-progress span { display: block; height: 100%; width: 0; background: var(--sand); }
.hero-progress.is-running span { animation: heroBar var(--dur, 7s) linear forwards; }
@keyframes heroBar { from { width: 0; } to { width: 100%; } }

/* ---------- Hero caption bar (animated text) ---------- */
.hero-bar { background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; border-bottom: 1px solid rgba(217,174,90,.18); }
.hero-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 32px 24px; }
.hero-caps { display: grid; flex: 1 1 auto; min-width: 0; }
.hero-cap { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .5s ease; }
.hero-cap.is-active { opacity: 1; visibility: visible; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 12px;
  opacity: 0; transform: translateY(14px);
}
.hero-cap.is-active .hero-eyebrow { opacity: 1; transform: none; transition: opacity .6s ease .1s, transform .6s cubic-bezier(.22,1,.36,1) .1s; }
.hero-eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 0 0 rgba(217,174,90,.75); animation: heroPulse 2.4s infinite; }
@keyframes heroPulse { 70% { box-shadow: 0 0 0 10px rgba(217,174,90,0); } 100% { box-shadow: 0 0 0 0 rgba(217,174,90,0); } }

/* word-by-word masked reveal */
.hero-tagline { color: #fff; font-size: clamp(1.2rem, 2.2vw, 1.9rem); font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.hero-tagline .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .1em; }
.hero-tagline .w > i { display: inline-block; font-style: inherit; transform: translateY(115%); }
.hero-cap.is-active .hero-tagline .w > i {
  transform: none;
  transition: transform .85s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--w, 0) * 70ms + 220ms);
}
.hero-tagline .accent { color: var(--sand); }

.hero-bar-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide img, .hero-eyebrow, .hero-tagline .w > i { transition: none !important; transform: none !important; opacity: 1 !important; }
  .hero-progress span { animation: none !important; }
  .hero-eyebrow .pulse { animation: none !important; }
  .site-header.is-scrolled .brand-compact { animation: none !important; }
}

/* ---------- Why Us (dark bar) ---------- */
.why-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; align-items: start; margin-bottom: 50px; }
.why-head h2 { max-width: 460px; }
.why-head p { font-size: 1.02rem; padding-top: 10px; }
.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 4px; }
.why-card { padding: 26px 22px; border-radius: var(--radius-card); transition: background .25s ease; }
.why-card.is-featured { background: var(--accent); }
.why-card .ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: rgba(217,174,90,.14); color: var(--sand); }
.why-card.is-featured .ic { background: rgba(255,255,255,.18); color: #fff; }
.why-card .ic svg { width: 22px; height: 22px; }
.why-card h3 { color: #fff; font-size: 1.02rem; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,.62); }
.why-card.is-featured p { color: rgba(255,255,255,.82); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: 60px; align-items: center; }
.about-copy p.lead { font-size: 1.03rem; margin-top: 14px; }
.about-visual-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--ink), var(--ink-3));
  min-height: 440px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.about-visual-frame .quote-mark { position: absolute; top: 24px; left: 28px; font-size: 5rem; font-weight: 700; color: rgba(255,255,255,.07); line-height: 1; }
.about-visual-inner { position: relative; z-index: 2; padding: 46px 42px; color: #fff; text-align: center; }
.about-visual-inner .stat-num { font-size: 3.2rem; font-weight: 700; color: var(--sand); line-height: 1; }
.about-visual-inner .stat-lbl { margin-top: 10px; font-size: 1rem; color: rgba(255,255,255,.8); max-width: 260px; margin-inline: auto; }
.about-visual-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); width: 100%; }
.about-visual-stats div strong { display: block; font-size: 1.4rem; color: #fff; }
.about-visual-stats div span { font-size: 0.74rem; color: rgba(255,255,255,.6); }
.about-visual-ring { position: absolute; width: 250px; height: 250px; border: 1px solid rgba(217,174,90,.30); border-radius: 50%; top: -55px; right: -55px; }

/* ---------- Videos (dikey 9:16 kapaklar bir carousel icinde; kapaklar
   simdilik statik, ileride YouTube gomulu oynaticiya baglanacak) ---------- */
.video-carousel { position: relative; --video-gap: 34px; }

/* Oklar basligin altinda, karusel serisinin sag ustunde durur; boylece dar
   ekranlarda kartlarin yanina tasmak zorunda kalmiyorlar. */
.video-carousel-nav { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 18px; }
/* display:flex, [hidden] varsayilanini ezdigi icin ayrica belirtiliyor */
.video-carousel-nav[hidden] { display: none; }
.video-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--color-border); color: var(--ink);
  transition: background .22s, color .22s, border-color .22s, transform .22s, opacity .22s;
}
.video-arrow svg { width: 18px; height: 18px; }
.video-arrow:hover:not(:disabled) { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }
.video-arrow:disabled { opacity: .38; cursor: default; }

.video-viewport { overflow: hidden; }
.video-track {
  display: flex; gap: var(--video-gap, 34px); align-items: stretch;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
/* Bir seferde gorunecek kart sayisi; JS adim genisligini buradan olcer. */
.video-track > .video-card {
  --video-per-view: 3;
  flex: 0 0 calc((100% - (var(--video-per-view) - 1) * var(--video-gap, 34px)) / var(--video-per-view));
  max-width: calc((100% - (var(--video-per-view) - 1) * var(--video-gap, 34px)) / var(--video-per-view));
}

.video-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand-soft); }

.video-thumb { position: relative; overflow: hidden; background: var(--ink); }
.video-thumb img { width: 100%; aspect-ratio: 9 / 13; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-thumb::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,16,12,0) 45%, rgba(20,16,12,.55) 100%);
}

.video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 66px; height: 66px; border-radius: 50%; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--accent-deep); font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(20,16,12,.28);
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s, color .3s;
}
.video-play i { margin-left: 3px; }
.video-card:hover .video-play { transform: translate(-50%,-50%) scale(1.08); background: var(--accent); color: #fff; }

.video-info { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.video-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.video-info h3 { font-size: 1.16rem; }
.video-info p { margin-top: 10px; font-size: .94rem; }

.video-cta { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Services (kategori bloklari + detay sayfasi baglantilari) ---------- */
.services-intro { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.services-intro p { margin-top: 14px; font-size: 1.02rem; }

.cat-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 56px; }
.cat-tabs a {
  padding: 12px 22px; font-weight: 600; font-size: .92rem; color: var(--ink);
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.cat-tabs a:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }
.cat-tabs a .n { color: var(--accent-deep); font-weight: 700; margin-right: 6px; }
.cat-tabs a:hover .n { color: var(--sand); }

/* Alternating category rows: image on one side, copy + sub-links on the
   other (mirrored on every second row via .is-reverse). */
.cat-row {
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px; align-items: center;
  padding: 46px 0; border-top: 1px solid var(--color-border);
  scroll-margin-top: 96px;
}
.cat-row:first-of-type { border-top: 0; padding-top: 8px; }
.cat-row.is-reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.cat-row.is-reverse .cat-media { order: 2; }

.cat-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--ink);
}
.cat-media img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.cat-row:hover .cat-media img { transform: scale(1.04); }
.cat-badge {
  position: absolute; left: 20px; bottom: 20px;
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  color: var(--ink); font-size: .82rem; font-weight: 600;
  padding: 10px 18px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.cat-badge strong { font-size: 1.15rem; font-weight: 700; color: var(--accent-deep); }

.cat-copy .kicker {
  display: flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.cat-copy .kicker::after { content: ""; flex: 0 0 42px; height: 1px; background: var(--accent); opacity: .45; }
.cat-copy h3 { font-size: clamp(1.45rem, 2.4vw, 2.05rem); }
.cat-copy p { margin-top: 14px; font-size: 1rem; max-width: 560px; }

.cat-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 28px; }
.cat-links a {
  display: flex; align-items: center; gap: 10px; height: 100%;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-btn);
  padding: 13px 16px; font-size: .93rem; font-weight: 600; color: var(--ink);
  transition: background .22s, border-color .22s, color .22s, transform .22s, box-shadow .22s;
}
.cat-links a::before {
  content: ""; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); transition: background .22s;
}
.cat-links a::after {
  content: ""; flex-shrink: 0; margin-left: auto; width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(-45deg); opacity: .5; transition: transform .25s ease, opacity .22s;
}
.cat-links a:hover {
  background: var(--ink); border-color: var(--ink); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.cat-links a:hover::before { background: var(--sand); }
.cat-links a:hover::after { opacity: 1; transform: rotate(-45deg) translate(2px, 2px); }

/* ---------- Inner page: banner + title strip ----------
   The inner-page artwork is shown intact (it carries its own copy); the
   page title sits in the navy strip directly underneath it. */
.page-banner { background: var(--ink); line-height: 0; }
.page-banner img { width: 100%; height: auto; max-height: 62vh; object-fit: cover; object-position: center center; }

.page-head { background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%); padding: 40px 0 96px; }
.page-head h1 { color: #fff; font-size: clamp(1.75rem, 3.2vw, 2.7rem); max-width: 840px; }
.page-head .page-lead { color: rgba(255,255,255,.75); max-width: 680px; margin-top: 14px; font-size: 1.02rem; }
.page-head .cat-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sand);
  background: rgba(217,174,90,.12); border: 1px solid rgba(217,174,90,.32); padding: 8px 16px; border-radius: var(--radius-pill);
}

.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.8); transition: color .2s; }
.breadcrumb a:hover { color: var(--sand); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: #fff; font-weight: 600; }

/* ---------- Inner page: spec panel ---------- */
.detail-wrap { padding-bottom: 92px; }
.spec-panel { position: relative; z-index: 5; margin-top: -78px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px; }
.spec-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.spec-item { background: var(--color-bg-alt-2); border-radius: var(--radius-card); padding: 20px 18px; }
.spec-item .ic { width: 36px; height: 36px; border-radius: 10px; background: #fff; color: var(--accent-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.spec-item .ic svg { width: 18px; height: 18px; }
.spec-item .lbl { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); margin-bottom: 6px; font-weight: 600; }
.spec-item .val { font-size: .88rem; font-weight: 700; color: var(--ink); line-height: 1.4; }

/* ---------- Inner page: layout ---------- */
.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 336px; gap: 46px; align-items: start; margin-top: 54px; }
.detail-body > * + * { margin-top: 22px; }
.detail-body h2 { font-size: clamp(1.35rem, 2vw, 1.75rem); margin-top: 42px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { font-size: 1rem; line-height: 1.8; }
.detail-lead { font-size: 1.08rem !important; color: var(--color-text) !important; font-weight: 500; }

.note-card { display: flex; gap: 18px; background: var(--color-bg-alt-2); border: 1px solid var(--color-border); border-left: 3px solid var(--accent); border-radius: var(--radius-card); padding: 24px 26px; }
.note-card.is-warn { background: var(--accent-soft); border-left-color: var(--ink); }
.note-card .ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 12px; background: #fff; color: var(--accent-deep); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.note-card.is-warn .ic { color: var(--ink); }
.note-card .ic svg { width: 20px; height: 20px; }
.note-card h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin-bottom: 8px; }
.note-card p { font-size: .96rem; line-height: 1.75; }

.disclaimer { font-size: .84rem; color: var(--color-muted); background: var(--color-bg-alt); border-radius: var(--radius-card); padding: 18px 22px; line-height: 1.7; }

/* ---------- Inner page: sidebar ---------- */
.detail-side { display: grid; gap: 20px; position: sticky; top: 104px; }
.side-card { background: var(--color-bg-alt); border-radius: var(--radius-lg); padding: 26px 24px; }
.side-card h3 { font-size: 1.02rem; margin-bottom: 16px; }
.side-list { display: grid; }
.side-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; font-size: .91rem; font-weight: 600; color: var(--color-text); border-bottom: 1px solid var(--color-border); transition: color .2s, padding-left .2s; }
.side-list a:last-child { border-bottom: 0; }
.side-list a svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0; transition: opacity .2s; }
.side-list a:hover { color: var(--accent-deep); padding-left: 5px; }
.side-list a:hover svg { opacity: 1; }
.side-list a.is-current { color: var(--accent-deep); }
.side-list a.is-current svg { opacity: 1; }

.side-cta { background: linear-gradient(160deg, var(--ink), var(--ink-3)); border-radius: var(--radius-lg); padding: 28px 24px; color: #fff; }
.side-cta h3 { color: #fff; font-size: 1.08rem; margin-bottom: 10px; }
.side-cta p { color: rgba(255,255,255,.72); font-size: .9rem; margin-bottom: 18px; }
.side-cta .btn { width: 100%; }
.side-cta .btn + .btn { margin-top: 10px; }
.side-hours { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); font-size: .84rem; color: rgba(255,255,255,.7); display: flex; justify-content: space-between; gap: 10px; }

.side-cats { display: grid; gap: 8px; }
.side-cats a { display: block; padding: 12px 16px; background: #fff; border-radius: 12px; font-size: .89rem; font-weight: 600; color: var(--ink); transition: background .2s, color .2s; }
.side-cats a:hover { background: var(--ink); color: #fff; }

/* ---------- Inner page: prev / next ---------- */
.detail-nav { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--color-border); }
.detail-nav a { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border: 1px solid var(--color-border); border-radius: var(--radius-card); transition: border-color .25s, box-shadow .25s, transform .25s; }
.detail-nav a:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.detail-nav a.next { justify-content: flex-end; text-align: right; }
.detail-nav .lbl { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); margin-bottom: 4px; }
.detail-nav .ttl { font-weight: 700; color: var(--ink); font-size: .96rem; }
.detail-nav svg { width: 18px; height: 18px; color: var(--accent-deep); flex-shrink: 0; }
.detail-nav.is-single { grid-template-columns: minmax(0,1fr); }

/* the header-row logo only appears once the top bar collapses */
.brand-compact { display: none; }
.site-header.is-scrolled .brand-compact { display: block; animation: brandReveal .3s ease both; }
.brand-compact img { height: 46px; }
@keyframes brandReveal { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.process-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 28px 24px; transition: transform .25s ease, box-shadow .25s ease; }
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process-card .ic { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.process-card .ic svg { width: 22px; height: 22px; }
.process-card h3 { font-size: 1.04rem; margin-bottom: 8px; }
.process-card p { font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 60px; align-items: start; }
.faq-copy p { margin-top: 14px; font-size: 1.02rem; }
.faq-accordion { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; transition: background .25s, border-color .25s; }
.faq-item.is-open { background: var(--accent-soft); border-color: rgba(192,138,46,.28); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; text-align: left; font-weight: 700; color: var(--ink); font-size: 0.96rem; }
.faq-trigger .chev { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--accent-deep); flex-shrink: 0; transition: transform .3s ease; }
.faq-trigger .chev svg { width: 14px; height: 14px; }
.faq-item.is-open .faq-trigger .chev { transform: rotate(180deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-panel p { padding: 0 22px 20px; font-size: 0.92rem; }

/* ---------- CTA banner ---------- */
.cta-banner { border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; max-width: 560px; }
.cta-banner p { margin-top: 10px; max-width: 500px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.92fr); gap: 40px; align-items: stretch; }
.contact-form-card { background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); border-radius: var(--radius-lg); padding: 38px; }
.contact-form-card h3 { margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--color-border); border-radius: var(--radius-btn);
  background: var(--color-bg-alt-2); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 100px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--color-muted); margin-bottom: 18px; }
.consent input { margin-top: 3px; accent-color: var(--accent); }
.form-success { display: none; align-items: center; gap: 12px; background: var(--accent-soft); color: var(--accent-deep); border-radius: var(--radius-btn); padding: 14px 16px; font-size: 0.88rem; font-weight: 600; margin-top: 16px; }
.form-success.is-visible { display: flex; }
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

.contact-panel { background: var(--ink); background: linear-gradient(160deg, var(--ink), var(--ink-2)); border-radius: var(--radius-lg); padding: 38px; color: #fff; display: flex; flex-direction: column; }
.contact-panel h3 { color: #fff; margin-bottom: 22px; }
.contact-info-list { display: grid; gap: 18px; margin-bottom: 26px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(217,174,90,.16); color: var(--sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .ic svg { width: 18px; height: 18px; }
.contact-info-item h4 { font-size: 0.9rem; color: #fff; margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { color: rgba(255,255,255,.68); font-size: 0.9rem; }
.contact-info-item a:hover { color: var(--sand); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-top: auto; }
.hours-table td { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); }
.hours-table tr:first-child td { border-top: 1px solid rgba(255,255,255,.12); }
.hours-table td:first-child { font-weight: 700; color: #fff; }
.hours-table td:last-child { text-align: right; }
.hours-table tr.is-closed td:last-child { color: var(--closed); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); height: 300px; margin-top: 26px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-top img { height: 54px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .25s; }
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--sand); color: var(--ink); }

.footer-grid { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.1fr); gap: 40px; padding: 54px 0 44px; }
.footer-col h4 { font-size: 0.86rem; text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-bottom: 22px; font-weight: 700; }
.footer-col ul { display: grid; gap: 13px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,.62); font-size: 0.92rem; }
.footer-col a:hover { color: var(--sand); }
.footer-about p { color: rgba(255,255,255,.62); font-size: 0.92rem; max-width: 300px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--sand); flex-shrink: 0; margin-top: 3px; }

.footer-hours-row { display: flex; align-items: baseline; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-hours-row:last-child { border-bottom: 0; }
.footer-hours-row .day { font-weight: 700; color: #fff; font-size: 1rem; }
.footer-hours-row .time { font-size: 0.88rem; color: rgba(255,255,255,.62); }
.footer-hours-row.is-closed .time { color: var(--closed); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,.5);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--sand); }

/* ---------- Floating buttons ---------- */
.float-stack { position: fixed; right: 24px; bottom: 24px; z-index: 400; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: transform .25s ease, opacity .25s ease, visibility .25s; }
.float-btn svg { width: 24px; height: 24px; }
/* WhatsApp balonu palet icinde tutuldu; kurumsal yesil istenirse: #25D366 */
.whatsapp-btn { background: var(--accent); color: #fff; }
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.05); }
.top-btn { background: var(--ink); color: #fff; opacity: 0; visibility: hidden; transform: translateY(10px); }
.top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.top-btn:hover { background: var(--accent); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .detail-layout { grid-template-columns: minmax(0,1fr); }
  .detail-side { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .spec-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 1100px) {
  .about-grid, .contact-grid, .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-head, .section-split-head { grid-template-columns: minmax(0, 1fr); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-panel { order: -1; }
  .cat-row, .cat-row.is-reverse { grid-template-columns: minmax(0,1fr); gap: 34px; padding: 40px 0; }
  .cat-row.is-reverse .cat-media { order: 0; }
  .cat-media { max-width: 660px; margin-inline: auto; width: 100%; }
  .cat-media img { aspect-ratio: 16 / 10; }
  .video-track > .video-card { --video-per-view: 2; }
  /* dekoratif halka dar ekranda container disina tasmasin */
  .about-visual-ring { width: 190px; height: 190px; top: -30px; right: -18px; }
  .video-carousel { --video-gap: 26px; }
}
@media (max-width: 1024px) {
  .main-nav, .header-infos { display: none; }
  .nav-toggle { display: flex; }
  .header-top { display: none; }
  .brand-compact { display: block; margin-right: auto; }
  .brand-compact img { height: 46px; }
  .hero-slider { aspect-ratio: 16 / 9; max-height: none; }
  .hero-bar-inner { flex-direction: column; align-items: flex-start; gap: 22px; padding: 26px 24px; }
  .hero-bar-actions { width: 100%; }
  .hero-bar-actions .btn { flex: 1 1 auto; }
  .hero-dots { flex-direction: row; left: 24px; right: auto; bottom: 18px; align-items: center; }
  .hero-arrows { display: none; }
  .spec-panel { margin-top: -58px; padding: 22px; }
  .page-head { padding: 32px 0 82px; }
}
@media (max-width: 780px) {
  /* the full banner is unreadable at phone width - crop to the legible half */
  .page-banner img { aspect-ratio: 16 / 10; max-height: none; object-fit: cover; object-position: 88% center; }
  .spec-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cat-copy p { max-width: none; }
  .detail-nav { grid-template-columns: minmax(0,1fr); }

}
@media (max-width: 640px) {
  .video-track > .video-card { --video-per-view: 1; }
  .about-visual-ring { width: 160px; height: 160px; top: -24px; right: -12px; }
  .video-carousel { --video-gap: 20px; }
  .video-cta .btn { width: 100%; max-width: 420px; }
  .section-pad { padding: 60px 0; }
  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .process-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .cta-banner { padding: 34px 22px; text-align: center; justify-content: center; }
  .cta-banner p { margin-inline: auto; }
  .cat-links { grid-template-columns: minmax(0,1fr); }
  .cat-media img { aspect-ratio: 4 / 3; }
  .detail-side { grid-template-columns: minmax(0,1fr); }
  .spec-grid { grid-template-columns: minmax(0,1fr); }
  .hero-slider { aspect-ratio: 5 / 4; }
  .hero-bar-actions { flex-direction: column; }
  .cat-tabs a { padding: 10px 16px; font-size: .85rem; }
  .header-actions .btn-ink { display: none; }
  .brand-compact img { height: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; gap: 16px; }
  .detail-wrap { padding-bottom: 64px; }
}

/* ==========================================================================
   Mugem Guzellik'e ozel bolumler
   v4 iskeletinde "Videolar" bolumunun yerini "Sertifikalar & Unvanlar"
   aldi; "Hakkimda" gorseli de istatistik kartindan Muge Kavlu'nun kendi
   portresine cevrildi. Asagidaki kurallar yalnizca bu iki bolumu ilgilendirir.
   ========================================================================== */

/* ---------- Hakkimda: portre + istatistik rozeti ---------- */
.about-visual-frame.is-photo { min-height: 0; display: block; background: var(--ink); }
.about-visual-frame.is-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; }
.about-visual-frame.is-photo .quote-mark { z-index: 3; color: rgba(255,255,255,.22); }
/* Portrenin alt kenarina oturan, okunurlugu kendi gradyaniyla saglanan serit */
.about-photo-caption {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 90px 28px 26px;
  background: linear-gradient(180deg, rgba(20,16,12,0) 0%, rgba(20,16,12,.55) 42%, rgba(20,16,12,.92) 100%);
  color: #fff;
}
.about-photo-caption .nm { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.2; }
.about-photo-caption .rl { display: block; margin-top: 4px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sand); }
.about-photo-caption .about-visual-stats { margin-top: 20px; padding-top: 18px; }
.about-photo-caption .about-visual-stats div strong { font-size: 1.25rem; color: var(--sand); font-family: var(--font-display); }

/* ---------- Sertifikalar & unvanlar ---------- */
.cert-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 60px; align-items: center; }
.cert-copy p.lead { font-size: 1.03rem; margin-top: 14px; }

.title-list { display: grid; gap: 12px; margin-top: 28px; }
.title-list li {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.title-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sand-soft); }
.title-list .ic {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
}
.title-list .ic svg { width: 20px; height: 20px; }
.title-list h3 { font-size: 1.02rem; margin-bottom: 4px; }
.title-list p { font-size: .9rem; }

/* Iki belge, hafifce ust uste binen bir yigin olarak duruyor. */
.cert-stack { position: relative; display: grid; gap: 22px; }
.cert-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 14px; box-shadow: var(--shadow-lg);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.cert-card img { width: 100%; border-radius: 10px; }
.cert-card figcaption {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 6px 4px; font-size: .84rem; font-weight: 600; color: var(--ink);
}
.cert-card figcaption .yr { font-size: .76rem; font-weight: 600; color: var(--accent-deep); letter-spacing: .06em; }
.cert-card:first-child { transform: rotate(-1.4deg); }
.cert-card:last-child { transform: rotate(1deg); }
.cert-card:hover { transform: rotate(0deg) translateY(-4px); }

/* PhiAcademy rozet seridi */
.phi-strip {
  display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-top: 52px; padding: 24px 28px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.phi-strip .lbl { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-muted); }
.phi-strip .item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.phi-strip .item::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

@media (max-width: 1100px) {
  .cert-grid { grid-template-columns: minmax(0,1fr); gap: 44px; }
  .cert-stack { max-width: 620px; margin-inline: auto; width: 100%; }
}
@media (max-width: 640px) {
  .about-photo-caption { padding: 70px 20px 22px; }
  .about-photo-caption .nm { font-size: 1.3rem; }
  .phi-strip { gap: 14px; flex-direction: column; align-items: flex-start; }
}

/* Tek hizmetli kategoride (Lazer Epilasyon) satirin sag sutunu bos kalmasin
   diye uygulama bolgeleri rozet olarak listeleniyor. */
.cat-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.cat-areas .lbl {
  width: 100%; font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--color-muted); margin-bottom: 2px;
}
.cat-areas span:not(.lbl) {
  display: inline-flex; align-items: center;
  padding: 8px 15px; border-radius: var(--radius-pill);
  background: var(--accent-soft); color: var(--accent-deep);
  font-size: .85rem; font-weight: 600;
}

/* Portre varyantinda dekoratif halka yuzun uzerine binmesin diye gizleniyor. */
.about-visual-frame.is-photo .about-visual-ring { display: none; }

/* ==========================================================================
   .NET surumuyle gelen bolumler
   Uzman Gorusu (blog), editor icerigi tipografisi, iletisim formu captcha /
   hata kutusu. Yukaridaki bilesenlerin degiskenlerini kullanir.
   ========================================================================== */

/* ---------- Editor'den gelen HTML (CKEditor cikti sinifsizdir) ---------- */
.icerik-yazisi > * + * { margin-top: 1.15rem; }
.icerik-yazisi h2 { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.7rem); margin-top: 2.4rem; }
.icerik-yazisi h3 { font-size: 1.16rem; margin-top: 1.9rem; }
.icerik-yazisi p, .icerik-yazisi li { color: var(--color-muted); line-height: 1.8; font-size: 1rem; }
.icerik-yazisi ul { list-style: disc; padding-left: 1.35rem; display: grid; gap: 8px; }
.icerik-yazisi ol { list-style: decimal; padding-left: 1.35rem; display: grid; gap: 8px; }
.icerik-yazisi strong { color: var(--ink); font-weight: 700; }
.icerik-yazisi a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.icerik-yazisi a:hover { color: var(--ink); }
.icerik-yazisi blockquote {
  margin: 0; padding: 20px 24px; background: var(--accent-soft);
  border-left: 3px solid var(--accent); border-radius: var(--radius-card);
}
.icerik-yazisi blockquote p { color: var(--ink); font-style: italic; }
.icerik-yazisi img { border-radius: var(--radius-card); margin-inline: auto; }
.icerik-yazisi table { width: 100%; display: block; overflow-x: auto; border-collapse: collapse; }
.icerik-yazisi th, .icerik-yazisi td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--color-border); font-size: .95rem; }
.icerik-yazisi th { color: var(--ink); font-weight: 700; background: var(--color-bg-alt-2); }
/* detail-lead sarmalayicisi: ilk paragraf biraz daha belirgin */
.detail-lead.icerik-yazisi > p:first-child { font-size: 1.08rem; color: var(--color-text); font-weight: 500; }
/* note-card icindeki editor metni kutunun kendi olcegine uyar */
.note-card .icerik-yazisi p { font-size: .96rem; line-height: 1.75; }
.note-card .icerik-yazisi > * + * { margin-top: .8rem; }

.bos-uyari {
  background: var(--color-bg-alt); border: 1px dashed var(--color-border);
  border-radius: var(--radius-card); padding: 26px; text-align: center; font-size: .95rem;
}

/* ---------- Uzman Gorusu: kart izgarasi ---------- */
.gorus-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }

.gorus-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
}
.gorus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand-soft); }
.gorus-thumb { display: block; overflow: hidden; background: var(--ink); }
.gorus-thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.gorus-card:hover .gorus-thumb img { transform: scale(1.05); }

.gorus-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.gorus-tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--accent-deep);
  background: var(--accent-soft); padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 12px;
}
.gorus-body h3 { font-size: 1.12rem; line-height: 1.35; }
.gorus-body h3 a { transition: color .2s; }
.gorus-body h3 a:hover { color: var(--accent-deep); }
.gorus-body p { margin-top: 10px; font-size: .93rem; }
.gorus-meta {
  display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 16px;
  font-size: .8rem; color: var(--color-muted);
}
.gorus-meta > * + *::before { content: "\00B7"; margin-right: 14px; opacity: .6; }

/* One cikan yazi: genis, iki sutunlu kart */
.gorus-one {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0; overflow: hidden; margin-bottom: 34px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.gorus-one-thumb { display: block; overflow: hidden; background: var(--ink); height: 100%; }
.gorus-one-thumb img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.gorus-one:hover .gorus-one-thumb img { transform: scale(1.04); }
.gorus-one-body { padding: 40px 42px; display: flex; flex-direction: column; justify-content: center; }
.gorus-one-body h2 { font-size: clamp(1.5rem, 2.4vw, 2.05rem); line-height: 1.22; }
.gorus-one-body h2 a { transition: color .2s; }
.gorus-one-body h2 a:hover { color: var(--accent-deep); }
.gorus-one-body p { margin-top: 14px; font-size: 1rem; }
.gorus-one-body .gorus-meta { margin-top: 18px; padding-top: 0; }
.gorus-one-body .btn { align-self: flex-start; margin-top: 24px; }

.blog-wrap { padding-top: 54px; }

/* ---------- Yazi detayi ---------- */
.yazi-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: .86rem; color: rgba(255,255,255,.7);
}
.yazi-meta .yazar { display: flex; align-items: center; gap: 12px; }
.yazi-meta .yazar img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: center 18%; }
.yazi-meta .yazar > span { display: flex; flex-direction: column; line-height: 1.35; }
.yazi-meta .yazar strong { color: #fff; font-size: .92rem; }
.yazi-meta .yazar small { color: var(--sand); font-size: .74rem; }

.yazi-kapak {
  position: relative; z-index: 5; margin: -78px 0 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink);
}
.yazi-kapak img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.yazi-kapak + .detail-layout { margin-top: 48px; }

/* ---------- Iletisim formu: captcha ve hata kutusu ---------- */
.captcha-row { display: flex; align-items: center; gap: 10px; }
.captcha-row .captcha-soru {
  font-weight: 700; color: var(--ink); font-size: 1.02rem;
  background: var(--accent-soft); border-radius: var(--radius-btn);
  padding: 12px 16px; white-space: nowrap; user-select: none;
}
.captcha-row input { max-width: 130px; }
.captcha-yenile {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--radius-btn);
  border: 1.5px solid var(--color-border); background: #fff; color: var(--color-muted);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s, transform .3s;
}
.captcha-yenile svg { width: 17px; height: 17px; }
.captcha-yenile:hover { border-color: var(--accent); color: var(--accent-deep); transform: rotate(-90deg); }

.form-error {
  display: none; align-items: center; gap: 12px;
  background: #FBEDE8; color: #9A3B1C; border-radius: var(--radius-btn);
  padding: 14px 16px; font-size: .88rem; font-weight: 600; margin-top: 16px;
}
.form-error.is-visible { display: flex; }
.form-error svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 1100px) {
  .gorus-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gorus-one { grid-template-columns: minmax(0,1fr); }
  .gorus-one-thumb img { min-height: 0; aspect-ratio: 16 / 9; }
  .gorus-one-body { padding: 30px 28px 34px; }
}
@media (max-width: 640px) {
  .gorus-grid { grid-template-columns: minmax(0,1fr); }
  .yazi-kapak { margin-top: -58px; }
  .yazi-kapak img { aspect-ratio: 16 / 10; }
  .captcha-row { flex-wrap: wrap; }
  .captcha-row input { max-width: none; flex: 1 1 120px; }
}

/* ---------- Hizmet kategorisi sayfasi ---------- */
.kategori-kapak {
  position: relative; z-index: 5; margin: -78px 0 48px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink);
}
.kategori-kapak img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.kategori-kapak figcaption {
  position: absolute; left: 22px; bottom: 22px;
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  color: var(--ink); font-size: .82rem; font-weight: 600;
  padding: 10px 18px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.kategori-kapak figcaption strong { font-size: 1.15rem; font-weight: 700; color: var(--accent-deep); }

.hizmet-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }

.hizmet-karti {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hizmet-karti:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand-soft); }
.hizmet-karti h3 { font-size: 1.12rem; line-height: 1.35; }
.hizmet-karti h3 a { transition: color .2s; }
.hizmet-karti h3 a:hover { color: var(--accent-deep); }
.hizmet-karti > p { margin-top: 10px; font-size: .94rem; }

.hizmet-ozet { display: grid; gap: 10px; margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--color-border); }
.hizmet-ozet > div { display: flex; align-items: baseline; gap: 10px; }
.hizmet-ozet dt {
  flex: 0 0 62px; font-size: .72rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--color-muted);
}
.hizmet-ozet dd { margin: 0; font-size: .88rem; font-weight: 600; color: var(--ink); line-height: 1.45; }

.hizmet-link {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  margin-top: auto; padding-top: 18px;
  font-size: .88rem; font-weight: 700; color: var(--accent-deep);
  transition: gap .22s ease;
}
.hizmet-link svg { width: 15px; height: 15px; }
.hizmet-link:hover { gap: 13px; }

/* Anasayfadaki kategori bloklarindan kategori sayfasina gecis */
.cat-copy h3 a { transition: color .2s; }
.cat-copy h3 a:hover { color: var(--accent-deep); }
a.cat-media { display: block; }
.cat-tumu {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 22px;
  font-size: .9rem; font-weight: 700; color: var(--accent-deep);
  transition: gap .22s ease;
}
.cat-tumu svg { width: 16px; height: 16px; }
.cat-tumu:hover { gap: 14px; }

@media (max-width: 1100px) {
  .hizmet-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 640px) {
  .kategori-kapak { margin-top: -58px; margin-bottom: 34px; }
  .kategori-kapak img { aspect-ratio: 16 / 10; }
  .hizmet-karti { padding: 22px 20px 20px; }
}
