/* Estam Global — Design System */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #121212;
  --bg-elevated: #1e1e1e;
  --bg-elevated-2: #242424;
  --text-primary: #e0e0e0;
  --text-muted: #9a9a9a;
  --text-faint: #6b6b6b;
  --accent-gold: #d4af37;
  --accent-gold-hover: #e5c04a;
  --accent-gold-dim: rgba(212, 175, 55, 0.15);
  --border-subtle: rgba(224, 224, 224, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --header-height: 92px;
  --top-notice-height: 0px;
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-gap: 7rem;
}

::selection {
  background: var(--accent-gold-dim);
  color: var(--text-primary);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ── */

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.85;
}

.section__header .eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent-gold);
  margin-top: 0.85rem;
  opacity: 0.6;
}

.section__header--center .eyebrow::after {
  margin-left: auto;
  margin-right: auto;
}

.heading-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.heading-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.heading-sm {
  font-size: 1.5rem;
}

.text-muted {
  color: var(--text-muted);
}

.text-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 52ch;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn--gold {
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 0.875rem 2rem;
  border-radius: 999px;
}

.btn--gold:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn--outline {
  color: var(--text-primary);
  padding: 0.875rem 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
}

.btn--outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn--link {
  color: var(--text-primary);
  padding: 0.25rem 0;
}

.btn--link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

.btn--link:hover {
  color: var(--accent-gold);
}

.btn--link:hover::after {
  transform: translateX(4px);
}

/* ── Top Notice (homepage) ── */

.page-home {
  --top-notice-height: 2.85rem;
}

.top-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--top-notice-height);
  padding: 0.55rem 1.25rem;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, rgba(14, 14, 14, 0.96) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.top-notice__text {
  margin: 0;
  max-width: var(--container-max);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--text-primary);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.top-notice__text strong,
.top-notice__text em {
  color: var(--accent-gold);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 640px) {
  .page-home {
    --top-notice-height: 3.5rem;
  }

  .top-notice__text {
    font-size: 0.74rem;
    letter-spacing: 0.02em;
  }
}

/* ── Header ── */

.header {
  position: fixed;
  top: var(--top-notice-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
  padding-top: 0.65rem;
}

.header--scrolled {
  padding-top: 0.35rem;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-height) - 0.75rem);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  border: 1px solid rgba(224, 224, 224, 0.1);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  min-width: 0;
}

.header__nav--left {
  justify-content: flex-start;
}

.header__nav--right {
  justify-content: flex-end;
  gap: 1.75rem;
}

.header__link,
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
  line-height: 1;
  min-height: 2rem;
  white-space: nowrap;
}

.header__link::after,
.nav-dropdown__trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.35s ease;
}

.header__link:hover::after,
.header__link--active::after,
.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after {
  width: 100%;
}

.header__link:hover,
.header__link--active,
.nav-dropdown__trigger:hover {
  color: var(--text-primary);
}

.header__link--active,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--accent-gold);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__trigger::before {
  content: '▾';
  margin-left: 0.35rem;
  font-size: 0.55rem;
  opacity: 0.65;
  line-height: 1;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 320px;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}

.nav-dropdown__item:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
}

.header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: auto;
  line-height: 0;
}

.header__logo-img {
  display: block;
  flex-shrink: 0;
  height: calc(var(--header-height) - 0.75rem - 0.35rem);
  width: calc(var(--header-height) - 0.75rem - 0.35rem);
  object-fit: contain;
}

.header__logo-fallback {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  white-space: nowrap;
  color: var(--text-primary);
}

.header__logo:hover .header__logo-fallback {
  color: var(--accent-gold);
}

.header__logo-img.is-hidden {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  flex: 1;
  min-width: 0;
}

.lang-toggle {
  display: flex;
  gap: 0.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.16rem;
  background: rgba(255, 255, 255, 0.02);
}

.lang-toggle__btn {
  padding: 0.24rem 0.4rem;
  border-radius: 999px;
  color: var(--text-faint);
  transition: var(--transition);
  font-size: 0.58rem;
}

.lang-toggle__btn--active {
  color: #111;
  background: var(--accent-gold);
}

.lang-toggle__btn:hover:not(.lang-toggle__btn--active) {
  color: var(--text-muted);
}

.lang-toggle__sep {
  color: var(--text-faint);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

.header__burger--open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.header__burger--open span:nth-child(2) {
  opacity: 0;
}

.header__burger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--header-height) + var(--top-notice-height));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: rgba(14, 14, 14, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu--open {
  display: block;
}

.mobile-menu__scroll {
  height: 100%;
  max-height: calc(100dvh - var(--header-height) - var(--top-notice-height));
  max-height: calc(100vh - var(--header-height) - var(--top-notice-height));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 0.75rem 1.25rem max(1.75rem, env(safe-area-inset-bottom));
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.mobile-menu__section {
  margin-bottom: 0.25rem;
}

.mobile-menu__label {
  display: block;
  margin: 1.15rem 0 0.35rem;
  padding: 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.mobile-menu__label--first {
  margin-top: 0.15rem;
}

.mobile-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu .mobile-menu__item {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 0.5rem;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu .mobile-menu__item--sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
  padding-left: 0.85rem;
}

.mobile-menu .mobile-menu__item--active,
.mobile-menu .mobile-menu__item:active {
  color: var(--accent-gold);
}

.mobile-menu__list li:last-child .mobile-menu__item {
  border-bottom: none;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.5) 50%, rgba(18, 18, 18, 0.88) 90%, var(--bg-primary) 100%),
    url('../images/hero.jpg') center / cover no-repeat;
}

@media (min-width: 769px) {
  .hero__bg {
    animation: heroKenBurns 24s ease-in-out infinite alternate;
    transform: scale(1.03);
  }
}

@keyframes heroKenBurns {
  from { transform: scale(1.03); }
  to { transform: scale(1.06); }
}

/* Yan kesik paneller yalnızca çok geniş ekranlarda hafif — mobil hissi bozmaz */
.hero__frame-left,
.hero__frame-right {
  display: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.5) 0%, transparent 30%),
    linear-gradient(to top, rgba(18, 18, 18, 0.85) 0%, transparent 50%),
    radial-gradient(ellipse 75% 55% at 50% 42%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--top-notice-height) + 2rem) 1.5rem 6rem;
}

.hero__content::before {
  content: '';
  position: absolute;
  inset: -2.5rem -1.5rem -2rem;
  background: radial-gradient(ellipse 90% 75% at 50% 48%, rgba(0, 0, 0, 0.45) 0%, transparent 68%);
  z-index: -1;
  pointer-events: none;
}

.hero__eyebrow {
  margin-bottom: 1.75rem;
  color: var(--accent-gold);
  opacity: 1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.hero__eyebrow::after {
  display: block;
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0.85rem auto 0;
  opacity: 0.85;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.hero__title {
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.75),
    0 0 48px rgba(212, 175, 55, 0.12);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.75rem;
  letter-spacing: 0.03em;
  line-height: 1.55;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero__content .hero__eyebrow,
.hero__content .hero__title,
.hero__content .hero__tagline,
.hero__content .hero__cta-group {
  animation: heroTextIn 0.85s ease backwards;
}

.hero__content .hero__title {
  animation-delay: 0.12s;
}

.hero__content .hero__tagline {
  animation-delay: 0.24s;
}

.hero__content .hero__cta-group {
  animation-delay: 0.38s;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content .hero__eyebrow,
  .hero__content .hero__title,
  .hero__content .hero__tagline,
  .hero__content .hero__cta-group {
    animation: none;
  }
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .hero__cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.hero__cta-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}

.hero__cta-text::after {
  content: '→';
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.hero__cta-text:hover {
  color: var(--accent-gold);
}

.hero__cta-text:hover::after {
  transform: translateX(5px);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero__scroll:hover {
  color: var(--accent-gold);
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero__glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── Section ── */

.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section--elevated {
  background: var(--bg-elevated);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Service Cards ── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  margin-bottom: 1.25rem;
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.1) 45%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card__image::after {
  opacity: 0.7;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.88);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
  filter: brightness(1);
}

.service-card__body {
  padding: 0 0.25rem;
}

.service-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.service-card__title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.service-card__duration {
  font-size: 0.72rem;
  color: var(--text-faint);
  white-space: nowrap;
}

.service-card__tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.75;
}

/* ── Split Feature ── */

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-feature__image {
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.split-feature__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.split-feature:hover .split-feature__image::before {
  opacity: 1;
}

.split-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-feature__content .eyebrow {
  margin-bottom: 1rem;
}

.split-feature__content .heading-md {
  margin-bottom: 1.25rem;
}

.split-feature__content .text-body {
  margin-bottom: 2rem;
}

/* ── Featured Slider ── */

.featured-slider {
  position: relative;
}

.featured-slider__viewport {
  overflow: hidden;
}

.featured-slider__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.featured-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.featured-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.featured-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.featured-slider__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.featured-slider__arrow:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--bg-elevated);
}

.featured-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-subtle);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.featured-slider__dot--active {
  width: 1.75rem;
  border-radius: 999px;
  background: var(--accent-gold);
}

@media (prefers-reduced-motion: reduce) {
  .featured-slider__track {
    transition: none;
  }
}

/* ── Stats ── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 2.5rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  opacity: 0.7;
}

.stat-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Process ── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  padding: 2rem 1.5rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
  counter-increment: step;
  transition: border-color 0.3s ease;
}

.process-step:hover {
  border-top-color: var(--border-gold);
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  opacity: 0.5;
  line-height: 1;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Feature Card ── */

.feature-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 4.5rem 3.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), transparent 50%, rgba(212, 175, 55, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--accent-gold);
}

.feature-card .heading-md {
  margin-bottom: 1rem;
}

.feature-card .text-body {
  margin: 0 auto 2rem;
}

/* ── Info Cards (blog preview) ── */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.info-card {
  padding: 2rem;
  background: var(--bg-elevated-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--border-gold);
}

.info-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.info-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.info-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.info-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.info-card--link:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.info-card__more {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* ── Trust & testimonials ── */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.trust-badge {
  padding: 1.5rem;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.trust-badge__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.trust-badge__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.testimonials__title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-gold);
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.8rem;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.testimonials__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.5;
}

/* ── Contact info fallback ── */

.contact-info__lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.contact-info__cta {
  margin: 1.25rem 0 1.75rem;
}

.contact-info__hours {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

/* ── Team ── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.team-card {
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.team-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-gold);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

/* ── Company legal block ── */

.company-legal {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-gold);
}

.company-legal--page {
  margin-bottom: 2.5rem;
}

.company-legal__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.company-legal__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.company-legal__body span {
  display: block;
}

.company-legal__doc {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-gold);
  transition: var(--transition);
}

.company-legal__doc:hover {
  color: var(--accent-gold-hover);
}

/* ── Credentials (trust) ── */

.credentials {
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.credentials__title {
  margin-bottom: 0.75rem;
}

.credentials__intro {
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  color: var(--text-muted);
}

.credentials__doc {
  margin: 0 auto;
}

/* ── Founder ── */

.founder-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-gold);
}

.founder-card__initials {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--accent-gold);
}

.founder-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

.founder-card__role {
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin: 0 0 0.75rem;
}

.founder-card__body p:last-child {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__company-meta {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.5;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  padding: 1.25rem 0;
  margin-bottom: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.footer__social-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  transition: var(--transition);
}

.footer__social-link:hover {
  color: var(--accent-gold-hover);
}

/* ── Form trust note ── */

.form-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.5;
}

.form-trust-note__icon {
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Testimonials extras ── */

.testimonials__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonials__header .testimonials__title {
  margin-bottom: 0;
}

.testimonials__stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin: 0;
}

.testimonial-card__stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
}

.testimonials__google {
  display: inline-flex;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.testimonials {
  text-align: center;
}

/* ── Contact ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding-top: 0.5rem;
}

.contact-info__item {
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.contact-info__item:hover {
  border-left-color: var(--accent-gold);
}

.contact-form {
  padding: 2.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.contact-info__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.35rem;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--text-primary);
}

.contact-info__value--placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-dim);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9a9a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ── Footer ── */

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 32ch;
}

.footer__heading {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--accent-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── FAB (WhatsApp) ── */

.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
}

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.45);
}

.fab--disabled {
  opacity: 0.85;
}

.fab svg {
  width: 24px;
  height: 24px;
}

/* ── Page (inner pages) ── */

.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

body[data-page='student'] .page-hero,
body[data-page='schengen'] .page-hero,
body[data-page='germanyWork'] .page-hero,
body[data-page='tourist'] .page-hero,
body[data-page='family'] .page-hero,
body[data-page='canada'] .page-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body[data-page='student'] .page-hero {
  background-image:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.94) 100%),
    url('../images/student.jpg');
}

body[data-page='schengen'] .page-hero {
  background-image:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.94) 100%),
    url('../images/schengen.jpg');
}

body[data-page='germanyWork'] .page-hero {
  background-image:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.94) 100%),
    url('../images/germany-work.jpg');
}

body[data-page='tourist'] .page-hero {
  background-image:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.94) 100%),
    url('../images/tourist.jpg');
}

body[data-page='family'] .page-hero {
  background-image:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.94) 100%),
    url('../images/family.jpg');
}

body[data-page='canada'] .page-hero {
  background-image:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.94) 100%),
    url('../images/canada.jpg');
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
}

.page-hero .eyebrow {
  margin-bottom: 1rem;
}

.page-hero .heading-lg {
  margin-bottom: 1rem;
}

.page-content {
  padding: 4rem 0 6rem;
}

.page-content .container {
  max-width: 800px;
}

.content-block {
  margin-bottom: 2.5rem;
}

.content-block h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content-block p,
.content-block li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.content-block ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.content-block li {
  margin-bottom: 0.5rem;
}

.content-block li::marker {
  color: var(--accent-gold);
}

.legal-content {
  max-width: 820px;
}

.legal-note {
  font-size: 0.9rem;
  margin: 1rem 0 2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent-gold);
  background: var(--accent-gold-dim);
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.form-group--checkbox {
  margin-top: 0.25rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-checkbox input[type='checkbox'] {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--accent-gold);
  cursor: pointer;
}

.form-checkbox__link {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox__link:hover {
  color: var(--accent-gold-hover);
}

.form-error {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: #e57373;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn--gold:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.page-hero__intro {
  margin: 0 auto;
  text-align: center;
  max-width: 42rem;
}

.content-highlight {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-gold);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
}

.content-highlight h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.content-highlight p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.process-list__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.process-list__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent-gold);
  border-radius: 50%;
}

.service-card__more {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.requirements-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.requirement-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.page-cta {
  text-align: center;
  padding: 3rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  margin-top: 3rem;
}

.page-cta .heading-sm {
  margin-bottom: 0.75rem;
}

.page-cta .text-body {
  margin: 0 auto 1.5rem;
  text-align: center;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb__sep {
  color: var(--text-faint);
}

/* ── Reveal animation ── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Glow bottom ── */

.glow-bottom {
  position: relative;
}

.glow-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 200px;
  background: radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Desktop (mobil ile uyumlu, dengeli düzen) ── */

@media (min-width: 769px) {
  .header {
    background: transparent;
  }

  .header--scrolled .header__inner {
    background: rgba(17, 17, 17, 0.88);
    border-color: rgba(224, 224, 224, 0.14);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.46);
  }

  .hero__title {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    letter-spacing: 0.14em;
  }

  .hero__content {
    max-width: 720px;
    padding-bottom: 7rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card__image {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
  }

  .service-card__title {
    font-size: 0.84rem;
  }

  .section__header {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
  }

  #services .section__header {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  #services .section__header .text-body {
    text-align: center;
    margin: 0 auto;
  }

  #services .section__header .eyebrow::after {
    margin-left: auto;
    margin-right: auto;
  }

  .split-feature {
    max-width: 1100px;
    margin: 0 auto;
    gap: 5rem;
  }

  .stats-grid {
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-grid {
    max-width: 1100px;
    margin: 0 auto;
    gap: 0;
  }

  .contact-grid {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 1400px;
    gap: 1.2rem;
  }

  .service-card__image {
    aspect-ratio: 4 / 5;
  }

  .service-card__title {
    font-size: 0.78rem;
  }
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-feature__image {
    border-radius: var(--radius-md);
    max-height: 400px;
    aspect-ratio: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    padding-top: 0.4rem;
  }

  .header__nav--desktop {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__inner {
    height: calc(var(--header-height) - 0.8rem);
    padding: 0 0.9rem;
  }

  .header__logo {
    position: static;
    transform: none;
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .header__logo-img {
    height: calc(var(--header-height) - 0.8rem - 0.35rem);
    width: calc(var(--header-height) - 0.8rem - 0.35rem);
  }

  .header__actions {
    flex: 0;
    gap: 0.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.4rem;
  }

  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .feature-card {
    padding: 2.5rem 1.5rem;
  }
}

.container--narrow {
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-item__q {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding-right: 2.5rem;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] .faq-item__q::after {
  content: '−';
}

.faq-item__a {
  padding: 0 1.35rem 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.checklist-download {
  margin-top: 1.5rem;
}

.checklist-download__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.map-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.map-section__title {
  margin-bottom: 1.25rem;
}

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-directions {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 0.95rem;
}

.map-directions:hover {
  color: var(--accent-gold-hover);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero__bg {
    animation: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
