/* ================================================================
   İstanbul Mezar Bakım — Premium Design System v2
   ================================================================ */

/* ── Tokens ────────────────────────────────────────────────────── */
:root {
  /* Brand greens */
  --g900: #0d1a0e;
  --g800: #132016;
  --g700: #1a2d1e;
  --g600: #22391f; /* primary */
  --g500: #2e4d30;
  --g400: #3d6640;
  --g200: #c2d4c3;
  --g100: #e8f0e8;

  /* Gold / accent */
  --a600: #9a7020;
  --a500: #c49234; /* accent */
  --a400: #d4a44a;
  --a200: #e8cA84;
  --a100: #f5ead2;
  --a50:  #fdf8ee;

  /* Neutrals */
  --white:  #ffffff;
  --cream:  #fdfaf4;
  --n900:   #1a1a1a;
  --n700:   #3d3d3d;
  --n500:   #6a6a6a;
  --n300:   #b0a99f;
  --n100:   #f0ece5;
  --border: #e3ddd4;

  /* Semantic */
  --color-primary:       var(--g600);
  --color-primary-dark:  var(--g700);
  --color-accent:        var(--a500);
  --color-accent-dark:   var(--a600);
  --color-bg:            var(--cream);
  --color-bg-white:      var(--white);
  --color-text:          var(--n900);
  --color-text-light:    var(--n500);
  --color-border:        var(--border);
  --color-whatsapp:      #25D366;

  /* Typography */
  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Elevation */
  --s0: 0 1px 2px rgba(13,26,14,.06);
  --s1: 0 2px 8px rgba(13,26,14,.08);
  --s2: 0 6px 24px rgba(13,26,14,.11);
  --s3: 0 14px 48px rgba(13,26,14,.15);
  --s4: 0 24px 72px rgba(13,26,14,.20);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Motion */
  --t: .22s ease;
  --t-slow: .38s ease;

  /* Layout */
  --section-py: 5.5rem;
  --sticky-h: 68px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--color-primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--color-accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: .75rem; }
h3 { font-size: 1.2rem; margin-bottom: .65rem; }
p  { margin-bottom: 1rem; }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: .35rem; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.85rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(34,57,31,.28);
}
.btn-primary:hover {
  background: var(--g500);
  color: #fff;
  box-shadow: 0 6px 20px rgba(34,57,31,.38);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(196,146,52,.3);
}
.btn-accent:hover {
  background: var(--a400);
  color: var(--g800);
  box-shadow: 0 6px 20px rgba(196,146,52,.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

.btn-sm  { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg  { padding: 1.05rem 2.1rem; font-size: 1.02rem; }
.btn-xl  { padding: 1.2rem 2.5rem; font-size: 1.08rem; }

/* ── Top bar ───────────────────────────────────────────────────── */
.header-topbar {
  background: var(--g700);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.topbar-phone {
  color: var(--a400);
  font-weight: 700;
  font-size: .88rem;
}
.topbar-phone:hover { color: #fff; }

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--s1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { opacity: .85; }
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g500);
  opacity: .75;
}
.logo-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--g700);
  letter-spacing: .01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.main-nav > a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--n700);
  padding: .4rem .65rem;
  border-radius: var(--r-xs);
  transition: all var(--t);
}
.main-nav > a:hover {
  color: var(--color-primary);
  background: var(--g100);
}
.main-nav > a.active { color: var(--color-primary); font-weight: 600; }

.nav-cta { margin-left: .5rem !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--t);
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: radial-gradient(ellipse 80% 100% at 70% 50%, rgba(34,57,31,.55) 0%, transparent 70%),
              linear-gradient(145deg, #0a1509 0%, var(--g800) 35%, #101e11 100%);
  color: #fff;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  width: 58%;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(196,146,52,.15);
  border: 1px solid rgba(196,146,52,.35);
  color: var(--a400);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .35rem 1rem;
  border-radius: var(--r-xs);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  width: fit-content;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--a400);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  opacity: .88;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--a500), transparent);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--a400);
  line-height: 1;
  white-space: nowrap;
}
.hero-stat-label {
  display: block;
  font-size: .72rem;
  opacity: .6;
  margin-top: .3rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hero visual — botanical illustration side */
.hero-visual {
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 54%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  /* fade in from left so there's zero hard edge */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.25) 18%, rgba(0,0,0,.75) 38%, black 60%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.25) 18%, rgba(0,0,0,.75) 38%, black 60%);
  pointer-events: none;
}

/* Ambient background glow */
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,52,.10) 0%, rgba(46,77,48,.12) 45%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%,-50%) scale(1.08); }
}

.hero-botanical {
  width: 90%;
  height: auto;
  max-width: 500px;
  position: relative;
  z-index: 1;
  animation: botanical-sway 9s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(196,162,52,.12));
}

@keyframes botanical-sway {
  0%   { transform: translateY(0)     rotate(0deg); }
  30%  { transform: translateY(-10px) rotate(.4deg); }
  60%  { transform: translateY(-5px)  rotate(-.3deg); }
  100% { transform: translateY(0)     rotate(0deg); }
}

/* Floating trust cards */
.hero-float-card {
  position: absolute;
  background: rgba(15,31,16,.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(196,162,52,.22);
  border-radius: 16px;
  padding: .85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 200px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-float-card .hfc-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(196,162,52,.25), rgba(196,162,52,.1));
  border: 1px solid rgba(196,162,52,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-card strong {
  display: block;
  font-size: .825rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.hero-float-card span {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.52);
  margin-top: .12rem;
}

/* Accent line on left edge */
.hero-float-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(196,162,52,.7), transparent);
  border-radius: 2px;
}

.hero-float-1 {
  top: 12%;
  right: 3%;
  animation: float-a 7s ease-in-out infinite;
}

.hero-float-2 {
  top: 50%;
  transform: translateY(-50%);
  right: 6%;
  animation: float-b 8.5s ease-in-out infinite;
}

.hero-float-3 {
  bottom: 12%;
  right: 4%;
  animation: float-c 6.8s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-10px); }
}

/* ── Page hero (inner pages) ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--g700), var(--g800));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; font-size: clamp(1.5rem, 4vw, 2.4rem); }
.page-hero p  { opacity: .88; max-width: 580px; margin: 0 auto; }
.breadcrumb   { font-size: .82rem; margin-bottom: .9rem; opacity: .7; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }

/* ── Section utilities ─────────────────────────────────────────── */
.section     { padding: var(--section-py) 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--g700);
  color: rgba(255,255,255,.88);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { opacity: .85; }

.section-title {
  text-align: center;
  margin-bottom: .6rem;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto 3rem;
  font-size: .98rem;
}
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .65rem;
}

/* ── Trust cards ───────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}
.trust-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: var(--s3);
  text-align: center;
  border-top: 3px solid var(--color-accent);
  transition: transform var(--t), box-shadow var(--t);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s4);
}
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--a100);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto .9rem;
}
.trust-card h3 { font-size: .98rem; margin-bottom: .4rem; color: var(--g700); }
.trust-card p  { font-size: .85rem; color: var(--color-text-light); margin: 0; }

/* ── Steps ─────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--a500), var(--a200), var(--a500));
  z-index: 0;
}
.step-card {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--g600), var(--g500));
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: var(--s2);
  border: 3px solid var(--white);
}
.step-card h3 { font-size: 1.05rem; color: var(--g700); }
.step-card p  { font-size: .875rem; color: var(--color-text-light); margin: 0; }

/* ── Service cards ─────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--a500), var(--a200));
  opacity: 0;
  transition: opacity var(--t);
}
.card:hover {
  box-shadow: var(--s3);
  transform: translateY(-3px);
  border-color: var(--a200);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--g100), var(--a100));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.1rem; color: var(--g700); }
.card p  { font-size: .9rem; color: var(--color-text-light); line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-weight: 600;
  font-size: .875rem;
  color: var(--color-primary);
  margin-top: 1rem;
  transition: gap var(--t);
}
.card-link:hover { gap: .55rem; color: var(--a600); }

/* ── Why us section ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s4);
  position: relative;
}
.why-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.why-photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--s2);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.why-photo-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--a100);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.why-photo-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--g700);
  font-family: var(--font-serif);
}
.why-photo-badge span {
  font-size: .78rem;
  color: var(--n500);
}

.why-content { padding-right: 1rem; }
.why-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-item-icon {
  width: 48px;
  height: 48px;
  background: var(--g100);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid var(--g200);
}
.why-item h4 { font-size: 1rem; color: var(--g700); margin-bottom: .3rem; font-family: var(--font-serif); }
.why-item p  { font-size: .875rem; color: var(--n500); margin: 0; line-height: 1.6; }

/* ── Photo proof gallery ───────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: .75rem;
}
.proof-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  background: var(--n100);
  cursor: pointer;
}
.proof-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.proof-item:hover img { transform: scale(1.06); }
.proof-item-large img { height: 455px; }

.proof-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,26,14,.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.proof-item:hover .proof-overlay { opacity: 1; }
.proof-overlay span {
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(196,146,52,.85);
  padding: .3rem .8rem;
  border-radius: var(--r-xs);
}

.proof-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Packages ──────────────────────────────────────────────────── */
.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  text-align: center;
  position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}
.package-card:hover {
  border-color: var(--a200);
  box-shadow: var(--s2);
}
.package-card.featured {
  border-color: var(--a500);
  box-shadow: var(--s3);
}
.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--a500), var(--a400));
  color: var(--g800);
  font-size: .72rem;
  font-weight: 800;
  padding: .3rem 1.1rem;
  border-radius: var(--r-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.package-type {
  font-size: .8rem;
  color: var(--n500);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}
.package-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--g700);
  margin: 1rem 0;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}
.package-features li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  font-size: .875rem;
  border-bottom: 1px solid var(--n100);
  color: var(--n700);
}
.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--a600);
  font-weight: 800;
}

/* ── Cemetery links ────────────────────────────────────────────── */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.25rem;
  color: var(--n700);
  transition: all var(--t);
}
.link-card:hover {
  border-color: var(--a500);
  box-shadow: var(--s1);
  color: var(--g700);
  transform: translateY(-2px);
}
.link-card h3 { font-size: .95rem; margin-bottom: .2rem; }
.link-card span { font-size: .8rem; color: var(--n500); }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--t);
}
.testimonial-card:hover { box-shadow: var(--s2); }
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--a200);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: .5rem;
}
.testimonial-stars {
  color: var(--a500);
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: .9rem;
}
.testimonial-text {
  font-size: .925rem;
  line-height: 1.75;
  color: var(--n700);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid var(--n100);
  padding-top: 1rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g100), var(--a100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: .875rem;
  color: var(--g700);
}
.testimonial-location {
  font-size: .775rem;
  color: var(--n500);
  margin-top: .1rem;
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: .6rem;
  overflow: hidden;
  transition: box-shadow var(--t);
}
.faq-item:hover { box-shadow: var(--s1); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--g700);
  cursor: pointer;
  text-align: left;
}
.faq-question-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--a100);
  color: var(--a600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--t), background var(--t);
}
.faq-item.open .faq-question-icon {
  transform: rotate(45deg);
  background: var(--a500);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--n500);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA Band ──────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--g700) 0%, var(--g800) 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 100%, rgba(196,146,52,.12), transparent);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .75rem; font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
.cta-band p  { opacity: .88; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Content layouts ───────────────────────────────────────────── */
.content-page   { padding: 3rem 0 5rem; }
.content-narrow { max-width: 780px; margin: 0 auto; }
.content-wide   { max-width: 920px; margin: 0 auto; }
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.sidebar-box h3 { font-size: 1.05rem; margin-bottom: 1rem; }

/* ── Info box / check list / price table ──────────────────────── */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: .45rem 0 .45rem 1.75rem;
  position: relative;
  font-size: .925rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--a600);
  font-weight: 800;
}
.info-box {
  background: var(--a50);
  border-left: 4px solid var(--a500);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.75rem 0;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--s1);
}
.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.price-table th {
  background: var(--g700);
  color: #fff;
  font-weight: 600;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--a50); }

/* ── Forms ─────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .45rem;
  color: var(--g700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--n900);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--g500);
  box-shadow: 0 0 0 3px rgba(46,77,48,.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 400;
  cursor: pointer;
  font-size: .875rem;
}
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error   { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ── Gallery ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.gallery-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  background: var(--n100);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── Blog ──────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.blog-card:hover { box-shadow: var(--s2); transform: translateY(-2px); }
.blog-card-body { padding: 1.5rem; }
.blog-date { font-size: .78rem; color: var(--n500); margin-bottom: .5rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .65rem; }
.blog-card p  { font-size: .875rem; color: var(--n500); margin-bottom: 1rem; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--g900);
  color: rgba(255,255,255,.72);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h3, .footer-col h4 {
  color: #fff;
  font-size: .975rem;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a  {
  color: rgba(255,255,255,.62);
  font-size: .875rem;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--a400); }
.footer-desc { font-size: .875rem; opacity: .6; line-height: 1.7; }
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: .82rem;
  opacity: .5;
}

/* ── Floating actions (desktop) ────────────────────────────────── */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 200;
}
.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: var(--s3);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
}
.fab:hover { transform: scale(1.1); box-shadow: var(--s4); }
.fab-whatsapp { background: var(--color-whatsapp); color: #fff; }
.fab-phone    { background: var(--g600); color: #fff; }

/* ── Sticky call bar (mobile) ──────────────────────────────────── */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(13,26,14,.12);
  padding: .65rem .75rem;
  gap: .6rem;
  align-items: center;
}
.sticky-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem .5rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: opacity var(--t);
}
.sticky-call-bar a:active { opacity: .8; }
.scb-phone    { background: var(--g600); color: #fff; }
.scb-whatsapp { background: var(--color-whatsapp); color: #fff; }

/* ── Contact strip ─────────────────────────────────────────────── */
.contact-strip {
  background: var(--a50);
  border-top: 2px solid var(--a500);
  border-bottom: 2px solid var(--a500);
  padding: 1.75rem 0;
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-strip-items {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--g700);
  font-weight: 500;
}
.contact-strip-item a {
  color: var(--g700);
  font-weight: 700;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-photos       { display: none; }
  .why-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .why-photo         { order: -1; }
  .why-photo img     { height: 360px; }
  .proof-grid        { grid-template-columns: repeat(3, 1fr); }
  .proof-item-large img { height: 220px; }
  .proof-item-large  { grid-row: auto; }
  .footer-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .trust-grid        { grid-template-columns: repeat(2, 1fr); }
  .steps-grid        { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps-grid::before { display: none; }
  .cards-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-grid        { grid-template-columns: repeat(2, 1fr); }
  .two-col           { grid-template-columns: 1fr; }
  .sidebar-box       { position: static; }
}

@media (max-width: 768px) {
  :root { --section-py: 3rem; }

  .header-topbar { display: none; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--s3);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    z-index: 150;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav > a {
    padding: .85rem .5rem;
    width: 100%;
    border-bottom: 1px solid var(--n100);
    border-radius: 0;
  }
  .nav-cta { margin-top: .75rem !important; text-align: center; }

  /* Hero — mobilde tek sütun, visual gizli */
  .hero { min-height: auto; }
  .hero-container {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .hero-text {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .hero-visual { display: none; }
  .hero-float-1,
  .hero-float-2,
  .hero-float-3 { display: none; }
  .hero h1   { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  .trust-grid  { grid-template-columns: repeat(2, 1fr); margin-top: 1.5rem; gap: 1rem; }
  .steps-grid  { grid-template-columns: 1fr; }
  .cards-grid  { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .proof-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .floating-actions { display: none; }
  .sticky-call-bar  { display: flex; }
  body { padding-bottom: var(--sticky-h); }

  .why-photo img { height: 260px; }

  /* İletişim haritası mobilde tam genişlik */
  .istanbul-map-wrap svg { width: 100% !important; height: auto !important; }

  /* Teklif / iletişim CTA kartları mobilde dikey */
  .cta-cards-grid { grid-template-columns: 1fr !important; }
  .contact-btns   { flex-direction: column; gap: .75rem; }
  .contact-btns .btn { width: 100%; justify-content: center; }
}

@media (max-width: 520px) {
  .trust-grid  { grid-template-columns: 1fr; }
  .proof-grid  { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badge  { font-size: .7rem; }
  .hero-stats  { gap: 1rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }

  /* Paketler sayfası mobilde */
  .packages-grid { grid-template-columns: 1fr !important; }
}
