/* ============ AYÇA KURGAN - ORTAK STİL ============ */
:root {
  --bordo: #8b1a1a;
  --bordo-dark: #5c1010;
  --bordo-light: #a83232;
  --gold: #c9a227;
  --gold-light: #e8c558;
  --gold-soft: #f5e9c4;
  --cream: #fdfaf3;
  --cream-dark: #f7f1e3;
  --ink: #2a1010;
  --ink-soft: #6b4444;
  --navy: #0a1728;
  --navy-2: #121e2d;
  --line: rgba(139, 26, 26, 0.1);
  --line-strong: rgba(139, 26, 26, 0.18);
  --card: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --header-h: 88px;
  --header-h-mobile: 72px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --shadow-sm: 0 2px 8px rgba(42, 16, 16, 0.06);
  --shadow-md: 0 8px 30px rgba(42, 16, 16, 0.08);
  --shadow-lg: 0 20px 50px rgba(42, 16, 16, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(ellipse at top, var(--gold-soft) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #ffffff 40%, var(--cream) 100%);
  background-attachment: fixed;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
  padding-top: var(--header-h);
}
@media (max-width: 768px) { body { padding-top: var(--header-h-mobile); } }
img { max-width: 100%; display: block; }
.handwriting { font-family: 'Caveat', cursive; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  padding-top: var(--safe-top);
}
.site-header.scrolled {
  height: calc(var(--header-h) - 10px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .site-header { height: calc(var(--header-h-mobile) + var(--safe-top)); }
  .site-header.scrolled { height: calc(var(--header-h-mobile) - 6px + var(--safe-top)); }
}
.header-inner {
  max-width: 1280px; height: 100%; margin: 0 auto;
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.header-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink); transition: opacity 0.2s;
}
.header-logo:active { opacity: 0.7; }
.header-logo img { height: 74px; width: auto; transition: height 0.3s ease; }
.site-header.scrolled .header-logo img { height: 62px; }
@media (max-width: 768px) {
  .header-logo img { height: 56px; }
  .site-header.scrolled .header-logo img { height: 48px; }
}
.header-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-brand-name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 19px; color: var(--ink);
}
.header-brand-name .gold { color: var(--bordo); }
.header-brand-tag {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
@media (max-width: 560px) { .header-brand-text { display: none; } }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; padding: 10px 18px;
  border-radius: 50px; font-weight: 600; font-size: 14px;
  white-space: nowrap; min-height: 44px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.header-btn:active { transform: scale(0.95); }
.header-btn.call {
  background: var(--bordo); color: #fff;
  box-shadow: 0 4px 14px rgba(139, 26, 26, 0.25);
}
.header-btn.call:hover { background: var(--bordo-dark); box-shadow: 0 6px 20px rgba(139, 26, 26, 0.35); }
.header-btn.whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.header-btn.whatsapp:hover { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
.header-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 640px) {
  .header-btn .btn-text { display: none; }
  .header-btn { padding: 10px 12px; }
  .header-btn svg { width: 20px; height: 20px; }
}

/* ============ WELCOME ============ */
.welcome {
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
}
@media (max-width: 768px) { .welcome { min-height: calc(100vh - var(--header-h-mobile)); } }
.welcome-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 56px); font-weight: 900;
  color: var(--ink); margin-bottom: 12px;
}
.welcome-title .gold { color: var(--bordo); }
.welcome-sub {
  color: var(--ink-soft); font-size: clamp(14px, 2vw, 17px);
  max-width: 560px; margin: 0 auto 48px;
}
.welcome-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 900px; width: 100%;
}
@media (max-width: 640px) { .welcome-grid { grid-template-columns: 1fr; } }
.welcome-card {
  position: relative; border: none; border-radius: 24px;
  cursor: pointer; overflow: hidden;
  background-size: cover; background-position: center;
  background-color: var(--navy);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
  text-align: left; min-height: 460px; text-decoration: none; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.welcome-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 40, 0.1) 0%, rgba(10, 23, 40, 0.55) 45%, rgba(10, 23, 40, 0.92) 100%);
  z-index: 1;
}
.welcome-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.welcome-card:active { transform: scale(0.98); }
.welcome-card-body { position: relative; z-index: 2; padding: 32px 32px 0; }
.welcome-card-icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.18); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.welcome-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 44px); font-weight: 900;
  color: #fff; margin-bottom: 10px; line-height: 1.05;
}
.welcome-card-sub {
  color: rgba(255, 255, 255, 0.92); font-size: 15px; margin-bottom: 18px;
}
.welcome-card-countries {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 12px; font-weight: 600;
}
.welcome-card-countries span {
  background: rgba(255, 255, 255, 0.16); padding: 5px 12px;
  border-radius: 50px; color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.welcome-card-cta {
  position: relative; z-index: 2;
  margin: 22px 32px 32px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--gold-light);
  padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* ============ TRACK HERO ============ */
.track-hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--navy);
  padding: 60px 24px; text-align: center;
}
.track-hero.tip { background: linear-gradient(135deg, var(--navy) 0%, #1a2a45 100%); }
.track-hero.muhendislik { background: linear-gradient(135deg, var(--navy-2) 0%, #1e3050 100%); }
.track-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.track-hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.track-hero-eyebrow {
  font-family: 'Caveat', cursive; font-size: clamp(28px, 5vw, 44px);
  color: var(--gold-light); line-height: 1; margin-bottom: 8px;
}
.track-hero-title {
  font-size: clamp(32px, 7vw, 64px); font-weight: 900; line-height: 1.05;
  margin-bottom: 16px;
}
.track-hero-title .gold { color: var(--gold-light); }
.track-hero-pill {
  display: inline-block; border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.track-hero-sub {
  font-size: clamp(20px, 4vw, 36px); font-weight: 800; line-height: 1.15;
  margin-bottom: 32px;
}
.track-hero-img {
  position: relative; z-index: 2;
  border-radius: 20px; overflow: hidden; max-width: 600px; margin: 0 auto 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.track-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.track-hero-features {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px; max-width: 800px; margin: 0 auto;
  padding-top: 28px; border-top: 1px dashed rgba(255,255,255,0.2);
}
.track-hero-feature { text-align: center; font-size: 12px; font-weight: 600; }
.track-hero-feature i {
  color: var(--gold-light); font-size: 28px; margin-bottom: 8px;
  background: rgba(255,255,255,0.06); width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}

/* Back button */
.back-bar {
  position: sticky; top: var(--header-h); z-index: 50;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px;
}
@media (max-width: 768px) { .back-bar { top: var(--header-h-mobile); } }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line-strong);
  color: var(--ink); text-decoration: none;
  padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.back-btn:hover { background: var(--cream); }
.back-btn:active { transform: scale(0.96); }

/* ============ COUNTRY CARDS ============ */
.section-wrap { padding: 40px 20px; max-width: 920px; margin: 0 auto; }
.country-card {
  background: var(--card); color: var(--ink);
  border-radius: 24px; margin-bottom: 28px;
  box-shadow: var(--shadow-md); overflow: hidden;
  position: relative;
}
.country-card-top {
  padding: 28px 28px 20px; border-bottom: 4px solid var(--line-strong);
}
.country-card-top.russia { border-color: var(--navy); }
.country-card-top.azer { border-color: #2ecc71; }
.country-card-top.serbia { border-color: #2980b9; }
.country-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 8px;
}
.country-card-name {
  font-size: clamp(24px, 4vw, 36px); font-weight: 900;
  color: var(--ink); display: flex; align-items: center; gap: 12px;
}
.country-card-name img { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); object-fit: cover; }
.country-card-slogan {
  font-family: 'Caveat', cursive; font-size: clamp(22px, 3.5vw, 30px);
  color: var(--bordo); line-height: 1.1;
}
.country-card-top.azer .country-card-slogan { color: #27ae60; }
.country-card-top.serbia .country-card-slogan { color: #2980b9; }
.country-info-strip {
  background: var(--cream-dark); padding: 16px 24px;
  text-align: center; font-size: 14px; font-weight: 700; color: var(--ink);
}
.country-info-strip .gold { color: var(--gold); }
.country-card-body { padding: 28px; }
.feature-list { list-style: none; margin-bottom: 24px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 15px; font-weight: 600;
}
.feature-list li i {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.feature-list.russia li i { background: var(--navy); color: #fff; }
.feature-list.azer li i { background: #2ecc71; color: #fff; }
.feature-list.serbia li i { background: #2980b9; color: #fff; }
.feature-list.dark li i { background: var(--bordo); color: #fff; }

.info-box {
  border-radius: 14px; padding: 18px 20px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 16px;
}
.info-box.navy { background: var(--navy); color: #fff; }
.info-box.navy strong { color: var(--gold-light); }
.info-box.green { background: #2ecc71; color: #fff; text-align: center; flex-direction: column; }
.info-box.green .amount { font-size: 26px; font-weight: 900; margin: 6px 0; }
.info-box i.big { font-size: 36px; }
.info-box .ib-text { font-size: 13px; font-weight: 600; line-height: 1.4; }
.info-box .ib-text strong { font-size: 15px; display: block; margin-bottom: 3px; }

.departments {
  background: var(--cream-dark); border-radius: 14px; padding: 18px 20px;
}
.dep-title {
  font-size: 13px; font-weight: 900; color: var(--ink);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--line);
  text-transform: uppercase; letter-spacing: 1px;
}
.departments ul { list-style: none; }
.departments li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; margin-bottom: 10px;
}
.departments li i { width: 22px; text-align: center; color: var(--ink-soft); }

.ribbon {
  background: var(--ink); color: #fff;
  margin: 0 -28px -28px; padding: 16px 28px;
  text-align: center; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.ribbon i { color: var(--gold-light); font-size: 18px; }

/* ============ LIGHT SECTION ============ */
.light-section {
  background: var(--card); border-radius: 24px;
  padding: 36px 28px; margin: 28px 20px;
  box-shadow: var(--shadow-sm); max-width: 880px; margin-left: auto; margin-right: auto;
}
.section-title {
  font-size: clamp(22px, 4vw, 32px); font-weight: 900;
  color: var(--ink); margin-bottom: 24px; line-height: 1.15;
}
.section-title .bordo { color: var(--bordo); }
.section-title .purple { color: #8e44ad; }
.section-title .gold { color: var(--gold); }
.section-title .navy { color: var(--navy); }
.center { text-align: center; }

.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; font-size: 15px; font-weight: 600;
}
.check-list i { color: var(--bordo); font-size: 20px; }
.check-list.navy i { color: var(--navy); }

.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.why-item { text-align: center; font-size: 13px; font-weight: 600; }
.why-item i { font-size: 32px; color: var(--gold); margin-bottom: 10px; display: block; }
.why-item.full { grid-column: span 2; }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } .why-item.full { grid-column: span 1; } }

.compare-head {
  display: flex; justify-content: space-around; margin-bottom: 16px;
  font-size: 13px; font-weight: 800; text-align: center;
}
.compare-head img { width: 40px; height: 40px; border-radius: 50%; margin-bottom: 6px; border: 2px solid var(--line-strong); }
.compare-table-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm); background: var(--card);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; font-weight: 600; text-align: center;
}
.compare-table tr { border-bottom: 1px solid var(--line); transition: background 0.2s; }
.compare-table tr:last-child { border-bottom: none; }
.compare-table tr:nth-child(odd) { background: var(--cream); }
.compare-table tr:hover { background: var(--gold-soft); }
.compare-table td { padding: 16px 10px; width: 33%; vertical-align: middle; }
.compare-table td:first-child { color: var(--ink); font-size: 12px; text-align: left; font-weight: 800; }
.compare-table td:first-child i { display: block; font-size: 18px; color: var(--bordo); margin-bottom: 4px; }

.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 13px; top: 4px; bottom: 4px; width: 2px; background: var(--line-strong); }
.step { position: relative; margin-bottom: 28px; }
.step:last-child { margin-bottom: 0; }
.step-icon {
  position: absolute; left: -36px; top: 0;
  width: 28px; height: 28px; background: var(--navy); color: var(--gold-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; border: 3px solid var(--card);
}
.step-title { font-size: 15px; font-weight: 900; color: var(--ink); margin-bottom: 4px; }
.step-desc { font-size: 13px; font-weight: 500; color: var(--ink-soft); }

.action-banner {
  background: var(--navy); color: #fff; border-radius: 14px;
  padding: 16px 20px; margin-top: 20px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 12px;
}
.action-banner i { font-size: 22px; color: var(--gold-light); flex-shrink: 0; }

.globe-box { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.globe-circle {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream-dark); display: flex; align-items: center; justify-content: center;
  color: var(--bordo); font-size: 30px;
}
.globe-text {
  background: var(--navy); color: #fff; padding: 16px 20px;
  border-radius: 14px; font-size: 13px; font-weight: 600; flex: 1;
}
.globe-text .handwriting { font-size: 22px; color: var(--gold-light); display: block; margin-top: 4px; }

/* ============ CTA ============ */
.cta-section {
  background: var(--card); border-radius: 24px;
  padding: 40px 28px; margin: 28px 20px; text-align: center;
  box-shadow: var(--shadow-sm); max-width: 880px; margin-left: auto; margin-right: auto;
}
.cta-img {
  border-radius: 18px; overflow: hidden; aspect-ratio: 4/3;
  max-width: 560px; margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
}
.cta-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-desc { color: var(--ink-soft); font-size: 15px; max-width: 480px; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; text-decoration: none;
  padding: 16px 32px; border-radius: 50px;
  font-size: clamp(15px, 2.5vw, 18px); min-height: 56px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:active { transform: scale(0.97); }
.cta-btn svg, .cta-btn i { width: 22px; height: 22px; font-size: 22px; }
.cta-btn.call { background: var(--bordo); color: #fff; box-shadow: 0 8px 24px rgba(139, 26, 26, 0.3); }
.cta-btn.call:hover { background: var(--bordo-dark); box-shadow: 0 12px 32px rgba(139, 26, 26, 0.4); transform: translateY(-2px); }
.cta-btn.whatsapp { background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%); color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
.cta-btn.whatsapp:hover { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); transform: translateY(-2px); }

.contact-box {
  background: var(--navy); color: #fff; border-radius: 16px;
  padding: 24px; text-align: left; margin-top: 24px;
}
.contact-box p { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-align: center; }
.contact-list { list-style: none; }
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px; font-size: 14px; font-weight: 600;
}
.contact-list i { color: var(--gold-light); font-size: 18px; width: 22px; text-align: center; }

/* ============ FAQ ============ */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  text-align: left; padding: 18px 4px;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink);
}
.faq-q i { color: var(--bordo); font-size: 16px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--ink-soft); font-size: 14px; font-weight: 500; line-height: 1.6;
  padding: 0 4px;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 4px 18px; }

/* ============ PRICE TABLE ============ */
.price-table {
  width: 100%; border-collapse: collapse; margin-top: 8px;
  font-size: 14px; font-weight: 600;
}
.price-table th {
  background: var(--ink); color: #fff; padding: 14px 10px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
}
.price-table th:first-child { border-radius: 10px 0 0 0; text-align: left; }
.price-table th:last-child { border-radius: 0 10px 0 0; }
.price-table td { padding: 14px 10px; text-align: center; border-bottom: 1px solid var(--line); }
.price-table td:first-child { text-align: left; color: var(--ink); font-weight: 700; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .amount { color: var(--bordo); font-weight: 800; }
.price-note { font-size: 12px; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--cream-dark); border-radius: 16px; padding: 24px;
  position: relative; border-top: 4px solid var(--gold);
}
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.review-meta { font-size: 12px; color: var(--ink-soft); font-weight: 500; }

/* ============ CLOSED BADGE (kontenjan doldu) ============ */
.closed-badge {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--bordo) 0%, var(--bordo-dark) 100%);
  color: #fff; border-radius: 14px; padding: 18px 20px;
}
.closed-badge i { font-size: 28px; color: var(--gold-light); flex-shrink: 0; }
.closed-badge strong { display: block; font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.closed-badge span { font-size: 13px; opacity: 0.92; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--line-strong);
  margin-top: 40px;
  padding: 48px 24px calc(96px + var(--safe-bottom));
  text-align: center;
}
.footer-logo { height: 42px; margin: 0 auto 16px; display: block; }
.footer-tagline {
  color: var(--ink-soft); font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-bottom: 24px; }
.footer-contact a {
  color: var(--ink); text-decoration: none; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 50px;
  background: var(--card); border: 1px solid var(--line-strong);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.footer-contact a:hover { color: var(--bordo); background: var(--cream); border-color: var(--bordo); }
.footer-contact svg { width: 16px; height: 16px; }
.footer-copy {
  color: var(--ink-soft); font-size: 12px;
  padding-top: 24px; border-top: 1px solid var(--line);
}

/* ============ FAB ============ */
.fab-wrap {
  position: fixed; bottom: calc(20px + var(--safe-bottom)); right: 20px;
  z-index: 90; display: flex; align-items: center; gap: 10px;
}
.fab-label {
  background: #fff; color: var(--ink);
  font-size: 14px; font-weight: 800; white-space: nowrap;
  padding: 10px 16px; border-radius: 50px;
  box-shadow: 0 6px 20px rgba(42, 16, 16, 0.18);
  border: 1px solid var(--line-strong);
}
.fab-whatsapp {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s; animation: fabPulse 2.5s ease-in-out infinite;
}
.fab-whatsapp svg { width: 32px; height: 32px; }
.fab-whatsapp:active { transform: scale(0.9); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
