/* ============================================================
  Alsas Vize Deneyimler — paylaşımlı stil
  Renk paleti alsasvize.com görünümüne uyarlanmıştır.
   ============================================================ */
:root {
  --navy: #162052;
  --navy-light: #2d3f77;
  --navy-dark: #0d1435;
  --orange: #c5a44e;
  --orange-light: #dbc47f;
  --orange-dark: #9f8136;
  --crimson: #8b1a2b;
  --crimson-soft: rgba(139, 26, 43, 0.12);
  --crimson-line: rgba(139, 26, 43, 0.24);
  --cream: #f0ebe3;
  --cream-deep: #e6dfd5;
  --surface-dark: rgba(255, 255, 255, 0.08);
  --surface-dark-border: rgba(197, 164, 78, 0.2);

  --ink: #162052;
  --ink-soft: rgba(22, 32, 82, 0.72);
  --ink-faint: rgba(22, 32, 82, 0.5);
  --line: rgba(197, 164, 78, 0.24);
  --line-soft: rgba(139, 26, 43, 0.1);

  --bg: #ebe5dc;
  --surface: #fffaf3;
  --surface-soft: #f6efe5;
  --shadow-sm: 0 14px 34px rgba(22, 32, 82, 0.08), 0 4px 14px rgba(139, 26, 43, 0.05);
  --shadow-md: 0 24px 52px rgba(22, 32, 82, 0.12), 0 10px 22px rgba(139, 26, 43, 0.08);
  --shadow-lg: 0 42px 92px rgba(22, 32, 82, 0.16), 0 18px 34px rgba(139, 26, 43, 0.1);

  --radius: 22px;
  --radius-lg: 30px;
  --maxw: 1180px;

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 16%, rgba(139, 26, 43, 0.1), transparent 20%),
    radial-gradient(circle at 86% 10%, rgba(197, 164, 78, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(22, 32, 82, 0.08), transparent 32%),
    linear-gradient(180deg, #f4efe7 0%, #ebe5dc 48%, #f0ebe3 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

/* Decorative background blobs */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}
body::before {
  top: -12vh;
  right: -10vw;
  width: 42vw;
  height: 42vw;
  min-width: 360px;
  min-height: 360px;
  background: radial-gradient(circle, rgba(197, 164, 78, 0.18), transparent 70%);
}
body::after {
  bottom: -16vh;
  left: -12vw;
  width: 46vw;
  height: 46vw;
  min-width: 380px;
  min-height: 380px;
  background: radial-gradient(circle, rgba(139, 26, 43, 0.14), transparent 70%);
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.site-header.theme-cream {
  background: rgba(255, 253, 250, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px rgba(22, 32, 82, 0.08);
}
.site-header.theme-light {
  background: rgba(22, 32, 82, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(197, 164, 78, 0.18), 0 18px 34px rgba(9, 15, 43, 0.24);
}
.site-header.inner-page {
  background: rgba(22, 32, 82, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(197, 164, 78, 0.18), 0 18px 34px rgba(9, 15, 43, 0.24);
}
.site-header.scrolled {
  background: rgba(255, 253, 250, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px rgba(22, 32, 82, 0.08);
}
.site-header.inner-page.scrolled {
  background: rgba(22, 32, 82, 0.96);
  box-shadow: 0 1px 0 rgba(197, 164, 78, 0.18), 0 18px 34px rgba(9, 15, 43, 0.24);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav-brand img {
  height: 42px;
  width: auto;
}
.nav-brand small {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--orange-dark);
}
.site-header:not(.scrolled) .nav-brand {
  color: rgba(255, 255, 255, 0.96);
}
.site-header:not(.scrolled) .nav-brand small {
  color: var(--orange-light);
}
.site-header.theme-cream .nav-brand {
  color: var(--navy);
}
.site-header.theme-cream .nav-brand small {
  color: var(--orange-dark);
}
.site-header.theme-light .nav-brand {
  color: rgba(255, 255, 255, 0.96);
}
.site-header.theme-light .nav-brand small {
  color: var(--orange-light);
}
.site-header.inner-page .nav-brand {
  color: rgba(255, 255, 255, 0.96);
}
.site-header.inner-page .nav-brand small {
  color: var(--orange-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}
.site-header.theme-cream .nav-links a {
  color: var(--ink-soft);
}
.site-header.theme-light .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}
.site-header.inner-page .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.32rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--navy);
  background: rgba(22, 32, 82, 0.06);
}
.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.site-header.theme-cream .nav-links a:hover,
.site-header.theme-cream .nav-links a.active {
  color: var(--navy);
  background: rgba(22, 32, 82, 0.06);
}
.site-header.theme-light .nav-links a:hover,
.site-header.theme-light .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.site-header.inner-page .nav-links a:hover,
.site-header.inner-page .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-links a.active::after {
  width: 22px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 10px 24px rgba(197, 164, 78, 0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(197, 164, 78, 0.4);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-header:not(.scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}
.site-header.theme-cream .nav-toggle {
  border-color: var(--line);
  background: #fff;
}
.site-header.theme-light .nav-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.site-header:not(.scrolled) .nav-toggle span {
  background: #fff;
}
.site-header.theme-cream .nav-toggle span {
  background: var(--navy);
}
.site-header.theme-light .nav-toggle span {
  background: #fff;
}

/* ============================================================
   Section helpers
   ============================================================ */
.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.page-shell {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(2.4rem, 6vw, 4rem));
  background: linear-gradient(180deg, #ece4d9 0%, #f4efe7 44%, #ece4d9 100%);
}
.page-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(34rem, 66vh);
  background: linear-gradient(135deg, #162052 0%, #1a2660 28%, #1e2d6e 58%, #162052 100%);
}
.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(197, 164, 78, 0.26), transparent 20%),
    radial-gradient(circle at 14% 28%, rgba(139, 26, 43, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 239, 231, 0) 34%, rgba(244, 239, 231, 0.95) 48%, rgba(244, 239, 231, 1) 66%);
  pointer-events: none;
}
.page-shell > .container {
  position: relative;
  z-index: 1;
}
.page-shell .section-head {
  max-width: 760px;
}
.page-shell .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(197, 164, 78, 0.08);
  color: var(--orange-light);
}
.page-shell .section-title {
  color: #fff;
}
.page-shell .section-title em {
  color: var(--orange-light);
}
.page-shell .section-sub {
  color: rgba(255, 255, 255, 0.72);
}
.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 235, 227, 0.9));
  border: 1px solid rgba(197, 164, 78, 0.22);
  box-shadow: inset 0 0 0 1px rgba(139, 26, 43, 0.04);
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section-title {
  margin: 1rem 0 0.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  color: var(--navy);
}
.section-title em {
  font-style: normal;
  color: var(--orange);
}
.section-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.archive-section {
  position: relative;
  overflow: hidden;
  margin-top: -1.15rem;
  background: linear-gradient(135deg, #162052 0%, #1a2660 32%, #1e2d6e 58%, #162052 100%);
}
.archive-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--orange), var(--crimson));
}
.archive-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(139, 26, 43, 0.18), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(197, 164, 78, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.05), transparent 28%);
  pointer-events: none;
}
.archive-section .container {
  position: relative;
  z-index: 1;
}
.archive-section .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(197, 164, 78, 0.08);
  color: var(--orange-light);
}
.archive-section .section-title {
  color: #fff;
}
.archive-section .section-title em {
  color: var(--orange-light);
}
.archive-section .section-sub {
  color: rgba(255, 255, 255, 0.72);
}
.archive-section .feature-card {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border-color: rgba(197, 164, 78, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 36px rgba(0, 0, 0, 0.16);
}
.archive-section .feature-card::before {
  opacity: 1;
  background:
    radial-gradient(circle at top right, rgba(197, 164, 78, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}
.archive-section .feature-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 48px rgba(0, 0, 0, 0.22);
}
.archive-section .feature-icon {
  background: rgba(197, 164, 78, 0.12);
  border-color: rgba(197, 164, 78, 0.16);
  box-shadow: none;
  color: var(--orange);
}
.archive-section .feature-card h3 {
  color: #fff;
}
.archive-section .feature-card p {
  color: rgba(255, 255, 255, 0.66);
}
.archive-section .feature-link {
  color: var(--orange-light);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--crimson), #c4384f);
  box-shadow: 0 14px 30px rgba(139, 26, 43, 0.26), 0 8px 18px rgba(22, 32, 82, 0.14);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(139, 26, 43, 0.34), 0 10px 24px rgba(22, 32, 82, 0.18);
}
.btn-ghost {
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 235, 227, 0.9));
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--crimson-line);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  color: var(--navy);
  margin: 1.1rem 0 1.1rem;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  color: var(--orange);
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.28em;
  background: linear-gradient(90deg, rgba(197, 164, 78, 0.22), rgba(139, 26, 43, 0.14));
  border-radius: 4px;
  z-index: -1;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.hero-trust .stars {
  font-size: 1.1rem;
}
.hero-trust strong {
  color: var(--navy);
}
.avatars {
  display: flex;
}
.avatars span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  box-shadow: var(--shadow-sm);
}
.avatars span:first-child {
  margin-left: 0;
}

/* Hero visual card stack */
.hero-visual {
  position: relative;
  min-height: 420px;
}
.float-card {
  position: absolute;
  background:
    radial-gradient(circle at top right, rgba(139, 26, 43, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(240, 235, 227, 0.94));
  border: 1px solid rgba(197, 164, 78, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.2rem;
}
.float-card--main {
  inset: 0 0 auto 0;
  margin: 0 auto;
  width: 86%;
  top: 30px;
  z-index: 2;
}
.float-card--badge {
  top: -10px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.float-card--mini {
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: floaty 6s ease-in-out infinite reverse;
}
.float-card .rev-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.float-card .ava {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.float-card .who b {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}
.float-card .who small {
  color: var(--ink-faint);
  font-size: 0.78rem;
}
.float-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.badge-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(197, 164, 78, 0.18);
  color: var(--orange-dark);
  font-weight: 800;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ============================================================
   Stats strip
   ============================================================ */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.stats::before {
  display: none;
}
.stats::after {
  display: none;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stats .stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 229, 0.94));
  border-color: rgba(197, 164, 78, 0.18);
  box-shadow: 0 14px 30px rgba(22, 32, 82, 0.08), 0 2px 6px rgba(139, 26, 43, 0.05);
}
.stats .stat-card:hover {
  background: #fff;
  box-shadow: 0 20px 36px rgba(22, 32, 82, 0.12), 0 4px 10px rgba(139, 26, 43, 0.06);
}
.stat-num {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--navy);
  line-height: 1;
}
.stats .stat-num {
  color: var(--navy);
}
.stat-num em {
  font-style: normal;
  color: var(--orange);
}
.stat-label {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.stats .stat-label {
  color: var(--ink-soft);
}

/* ============================================================
   Feature / quicklink cards
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 26, 43, 0.08), transparent 28%),
    linear-gradient(160deg, rgba(22, 32, 82, 0.05), transparent 52%),
    linear-gradient(180deg, rgba(197, 164, 78, 0.1), transparent 80%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 239, 229, 0.96));
  border: 1px solid rgba(22, 32, 82, 0.08);
  box-shadow: 0 8px 18px rgba(22, 32, 82, 0.08);
  color: var(--crimson);
  margin-bottom: 1.1rem;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
}
.feature-card h3 {
  position: relative;
  margin: 0 0 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
}
.feature-card p {
  position: relative;
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.feature-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--crimson);
  transition: gap 0.25s var(--ease);
}
.feature-card:hover .feature-link {
  gap: 0.75rem;
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-faint);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.marquee-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Reviews
   ============================================================ */
.stars {
  color: var(--orange);
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1;
}
.stars .empty {
  color: rgba(22, 32, 82, 0.18);
}

.rating-overview {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.4rem;
}
.page-shell .rating-overview,
.page-shell .google-summary,
.page-shell .passport-card,
.page-shell .appt-card,
.page-shell .video-card,
.page-shell .review-card,
.page-shell .result-card {
  box-shadow: 0 18px 40px rgba(22, 32, 82, 0.12), 0 2px 6px rgba(139, 26, 43, 0.05);
}
.rating-score {
  text-align: center;
}
.rating-score .big {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: var(--navy);
}
.rating-score .stars {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}
.rating-score small {
  color: var(--ink-faint);
}
.rating-bars {
  display: grid;
  gap: 0.55rem;
}
.rating-bar {
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.bar-track {
  height: 9px;
  border-radius: 999px;
  background: rgba(22, 32, 82, 0.09);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--crimson));
  width: 0;
  transition: width 1.1s var(--ease);
}

.review-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}
.page-shell .review-toolbar,
.page-shell #countryPills,
.page-shell #passportPills,
.page-shell #apptPills {
  position: relative;
  z-index: 1;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.pill:hover {
  border-color: var(--crimson-line);
  color: var(--navy);
}
.pill.active {
  background: linear-gradient(135deg, var(--navy), var(--crimson));
  border-color: rgba(139, 26, 43, 0.42);
  box-shadow: 0 10px 18px rgba(22, 32, 82, 0.12);
  color: #fff;
}
.search-box {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}
.search-box input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.search-box input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(197, 164, 78, 0.16);
}
.search-box svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-faint);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.3rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.review-who b {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}
.review-who small {
  color: var(--ink-faint);
  font-size: 0.8rem;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.review-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 32, 82, 0.05);
  border: 1px solid rgba(197, 164, 78, 0.2);
  color: var(--navy-light);
}
.review-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}
.review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  padding-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.verified {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  color: var(--crimson);
  font-weight: 600;
}
.verified svg {
  width: 14px;
  height: 14px;
}
.load-more-wrap {
  text-align: center;
  margin-top: 2.4rem;
}
.muted-count {
  text-align: center;
  margin-top: 0.9rem;
  color: var(--ink-faint);
  font-size: 0.88rem;
}

/* ============================================================
   Google reviews
   ============================================================ */
.google-summary {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.4rem;
}
.google-logo {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.google-logo .b {
  color: #4285f4;
}
.google-logo .r {
  color: #ea4335;
}
.google-logo .y {
  color: #fbbc05;
}
.google-logo .g {
  color: #34a853;
}
.google-summary .divider {
  width: 1px;
  height: 46px;
  background: var(--line);
}
.google-card .review-head .gicon {
  margin-left: auto;
}
.gicon {
  width: 22px;
  height: 22px;
}

/* ============================================================
   Passports gallery
   ============================================================ */
.passport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
}
.passport-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.passport-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.passport-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  color: #fff;
  overflow: hidden;
}
.passport-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.passport-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(197, 164, 78, 0.24), transparent 60%);
}
.passport-emoji {
  position: relative;
  font-size: 3.4rem;
  z-index: 1;
}
.passport-stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  transform: rotate(-12deg);
  padding: 0.35rem 0.7rem;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 26, 43, 0.94), rgba(197, 164, 78, 0.82));
  text-transform: uppercase;
}
.passport-body {
  padding: 1.1rem 1.3rem 1.4rem;
}
.passport-body h3 {
  margin: 0 0 0.3rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
}
.passport-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.passport-body .chip {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(197, 164, 78, 0.14);
  color: var(--orange-dark);
}
.privacy-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

/* ============================================================
   Videos
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: inherit;
  background: transparent;
  overflow: hidden;
}
.video-frame video {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transform: scale(1.015);
}
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(197, 164, 78, 0.32);
  color: var(--crimson);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(22, 32, 82, 0.26), 0 6px 16px rgba(139, 26, 43, 0.14);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(197, 164, 78, 0.34);
  animation: pulse-ring 2.4s ease-out infinite;
}
.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}
.video-card:hover .play-btn {
  transform: scale(1.08);
}
.video-card.playing .play-btn {
  opacity: 0;
  pointer-events: none;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.video-info {
  padding: 1rem 1.2rem 1.3rem;
}
.video-info h3 {
  margin: 0 0 0.25rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
}
.video-info p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(0, 1, 14, 0.82);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
}
.lightbox.open {
  display: grid;
  animation: fade-in 0.3s var(--ease);
}
.lightbox-inner {
  position: relative;
  width: min(100%, 420px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lightbox-inner video {
  width: 100%;
  display: block;
  background: #000;
}
.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.3rem;
  cursor: pointer;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   Randevular (appointments) + medya yorum kartları
   ============================================================ */
.appt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.appt-card,
.result-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.appt-card:hover,
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.appt-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  overflow: hidden;
  cursor: zoom-in;
}
.appt-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}
.appt-card:hover .appt-visual img {
  transform: scale(1.04);
}
.appt-stamp {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 26, 43, 0.94), rgba(197, 164, 78, 0.8));
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.appt-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.appt-card:hover .appt-zoom {
  opacity: 1;
  transform: scale(1);
}
.appt-zoom svg {
  width: 16px;
  height: 16px;
}

/* Pasaport sonuç kartları: video + yorum gövdesi */
.result-card.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
}
.result-card .video-frame {
  border-radius: 0;
}

/* Bir medyanın altındaki ortak yorum bloğu */
.media-comment {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.media-comment .review-text {
  font-size: 0.9rem;
}

/* Görsel için lightbox varyantı */
.lightbox-inner--img {
  width: auto;
  max-width: min(100%, 880px);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.lightbox-inner--img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.feature-card,
.rating-overview,
.google-summary,
.review-card,
.passport-card,
.appt-card,
.result-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 164, 78, 0.2);
  background:
    radial-gradient(circle at top right, rgba(197, 164, 78, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 229, 0.94));
  box-shadow: 0 4px 40px rgba(22, 32, 82, 0.08), 0 1px 3px rgba(139, 26, 43, 0.06);
}

/* ============================================================
   CTA band + Footer
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.4rem);
  background: linear-gradient(135deg, #162052 0%, #1b2968 42%, #21316f 58%, #8b1a2b 140%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 164, 78, 0.34), transparent 70%);
}
.cta-band h2 {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 0.8rem;
}
.cta-band p {
  position: relative;
  margin: 0 auto 1.6rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
}
.cta-band .btn-ghost {
  color: var(--navy);
}

.site-footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #162052 0%, #10183d 72%, #0d1435 100%);
  border-top: 1px solid rgba(197, 164, 78, 0.18);
  color: rgba(255, 255, 255, 0.72);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 26, 43, 0.2), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}
.footer-brand img {
  height: 52px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  margin: 0;
  max-width: 26rem;
  font-size: 0.92rem;
}
.footer-col h4 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  margin: 0 0 1rem;
}
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.footer-col a:hover {
  color: var(--orange-light);
  padding-left: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal][data-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal][data-delay="3"] {
  transition-delay: 0.24s;
}
[data-reveal][data-delay="4"] {
  transition-delay: 0.32s;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 360px;
    order: -1;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: grid;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    z-index: 55;
  }
  .nav.open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }
  .nav-links a {
    padding: 0.8rem 0.9rem;
    color: var(--ink);
  }
  .nav.open .nav-links a,
  .site-header:not(.scrolled) .nav.open .nav-links a,
  .site-header.theme-light .nav.open .nav-links a,
  .site-header.inner-page .nav.open .nav-links a {
    color: var(--ink);
  }
  .nav.open .nav-links a:hover,
  .nav.open .nav-links a.active,
  .site-header:not(.scrolled) .nav.open .nav-links a:hover,
  .site-header:not(.scrolled) .nav.open .nav-links a.active,
  .site-header.theme-light .nav.open .nav-links a:hover,
  .site-header.theme-light .nav.open .nav-links a.active,
  .site-header.inner-page .nav.open .nav-links a:hover,
  .site-header.inner-page .nav.open .nav-links a.active {
    color: var(--navy);
    background: rgba(22, 32, 82, 0.06);
  }
  .nav .nav-cta {
    width: 100%;
    justify-content: center;
  }
  .nav-toggle {
    display: flex;
  }
  .nav.open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .rating-overview {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   3D Parallax Hero
   ============================================================ */
.hero-parallax-container {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #000;
  margin-top: -80px;
  padding-top: 80px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

/* Arka plan ve çoklu görsel geçişi */
.bg-layer {
  z-index: 1;
  transform: scale(1.1);
}
.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.bg-slide.active {
  opacity: 1;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(10, 16, 53, 0.88), rgba(22, 32, 82, 0.54) 48%, rgba(139, 26, 43, 0.42) 100%);
  z-index: 2;
}

/* Yazı katmanı */
.text-layer {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.text-wrapper {
  text-align: center;
  color: #fff;
  margin-top: -5%;
}
.eyebrow-text {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 4px;
  margin-bottom: 1rem;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
}
.main-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Ön plan (karakterler) */
.fg-layer {
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}
.fg-layer img {
  height: 75vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: -2%;
}

@media (max-width: 768px) {
  .hero-parallax-container {
    height: 70vh;
    clip-path: none;
  }
  .fg-layer img {
    height: 55vh;
  }
}
