/* =========================================================
   VİZYONLOG LOJİSTİK — Kurumsal Web Sitesi
   ========================================================= */

:root {
  --navy-950: #061627;
  --navy-900: #0a2540;
  --navy-800: #0f3358;
  --navy-700: #16436f;
  --navy-600: #1f5586;
  --gold-500: #f5a623;
  --gold-400: #f7b74d;
  --gold-050: #fff6e8;
  --ink: #16212e;
  --ink-soft: #4a5768;
  --paper: #ffffff;
  --paper-alt: #f5f7fa;
  --line: #e4e9f0;
  --success: #1c8a5a;
  --shadow-sm: 0 2px 10px rgba(10, 37, 64, .08);
  --shadow-md: 0 10px 30px rgba(10, 37, 64, .12);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, .18);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }

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

section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--navy-900); }
.section-head p { font-size: 17px; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(245, 166, 35, .35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245, 166, 35, .45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-navy {
  background: var(--navy-900);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn-ghost-navy {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-ghost-navy:hover { background: var(--navy-900); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950);
  color: #cfe0f0;
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: #cfe0f0; }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 14px; height: 14px; opacity: .85; }
.topbar-right { display: flex; gap: 16px; align-items: center; color: #92a7bd; }
@media (max-width: 720px) {
  .topbar-left span:nth-child(2) { display: none; }
  .topbar-right { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 19px; color: var(--navy-900); letter-spacing: -.02em; }
.brand-text span { font-size: 11px; color: var(--gold-500); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  border-radius: 999px;
  transition: all .2s ease;
}
.main-nav a:hover { background: var(--paper-alt); color: var(--navy-800); }
.main-nav a.active { background: var(--navy-900); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone .icon-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-050); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.header-phone .icon-badge svg { width: 19px; height: 19px; }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone-text small { font-size: 11.5px; color: var(--ink-soft); }
.header-phone-text strong { font-size: 15px; color: var(--navy-900); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy-900); }

@media (max-width: 980px) {
  .header-phone-text { display: none; }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    padding: 20px 24px 40px;
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
    border-top: 1px solid var(--line);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 17px; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 600px at 85% -10%, #123a63 0%, transparent 60%), linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--gold-400);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero p.lead {
  color: #c3d3e3;
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 34px;
}
.hero-stats .stat strong { display: block; font-size: 30px; color: #fff; font-weight: 800; }
.hero-stats .stat span { font-size: 13.5px; color: #9fb4c9; }
@media (max-width: 560px) { .hero-stats { grid-template-columns: repeat(2, auto); } }

.hero-art { position: relative; }
.hero-panel {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel svg { width: 100%; height: auto; display: block; }
.hero-float-card {
  position: absolute;
  bottom: -22px; left: -22px;
  background: #fff;
  color: var(--navy-900);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero-float-card .icon-badge {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-050); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-card .icon-badge svg { width: 20px; height: 20px; }
.hero-float-card strong { display: block; font-size: 14px; }
.hero-float-card span { font-size: 12.5px; color: var(--ink-soft); }
@media (max-width: 560px) { .hero-float-card { display: none; } }

/* ---------- Marquee / partners strip ---------- */
.strip {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  justify-content: space-between;
  align-items: center;
}
.strip-item { display: flex; align-items: center; gap: 10px; color: var(--navy-800); font-weight: 700; font-size: 14.5px; }
.strip-item svg { width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0; }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s ease;
  height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.icon-tile {
  width: 58px; height: 58px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-tile svg { width: 28px; height: 28px; color: var(--gold-400); }
.card h3 { font-size: 19px; color: var(--navy-900); margin-bottom: 10px; }
.card p { margin-bottom: 14px; font-size: 15px; }
.card .card-link { font-weight: 700; font-size: 14px; color: var(--navy-800); display: inline-flex; align-items: center; gap: 6px; }
.card .card-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.service-page-card { display: flex; gap: 20px; align-items: flex-start; }
.service-page-card .icon-tile { flex-shrink: 0; margin-bottom: 0; }
.service-page-card h3 { margin-bottom: 8px; }

/* ---------- Why us ---------- */
.why {
  background: var(--navy-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.16), transparent 70%);
}
.why .section-head h2 { color: #fff; }
.why .section-head p { color: #b7c7d8; }
.why-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.why-card .icon-tile {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(245,166,35,.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card .icon-tile svg { width: 26px; height: 26px; color: var(--gold-400); }
.why-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.why-card p { color: #aebfd1; margin-bottom: 0; font-size: 14.5px; }

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse { grid-template-columns: 1.05fr .95fr; }
@media (max-width: 940px) { .split.reverse { grid-template-columns: 1fr; } }
.split.reverse .split-art { order: 2; }
@media (max-width: 940px) { .split.reverse .split-art { order: -1; } }

.split-art svg { width: 100%; height: auto; }
.split-body ul.checklist { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.split-body ul.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 600; font-size: 15px; }
.split-body ul.checklist svg { width: 22px; height: 22px; color: var(--success); flex-shrink: 0; margin-top: 1px; }

.stat-row { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.stat-row .stat strong { display: block; font-size: 34px; font-weight: 800; color: var(--navy-900); }
.stat-row .stat span { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Values ---------- */
.value-card { text-align: center; padding: 30px 22px; }
.value-card .icon-tile { margin: 0 auto 18px; background: var(--gold-050); }
.value-card .icon-tile svg { color: var(--gold-500); }
.value-card h3 { font-size: 17px; }
.value-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 34px; border-left: 2px solid var(--line); display: flex; flex-direction: column; gap: 34px; }
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute; left: -42px; top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold-500);
}
.timeline-item h3 { font-size: 17px; color: var(--navy-900); margin-bottom: 6px; }
.timeline-item p { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.cta-band p { color: #c3d3e3; margin-bottom: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 720px) { .cta-band { padding: 40px 28px; text-align: center; justify-content: center; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px), repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px);
  mask-image: radial-gradient(circle at 30% 30%, rgba(0,0,0,.7), transparent 65%);
}
.page-hero .container { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #9fb4c9; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold-400); }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); color: #fff; margin-bottom: 10px; }
.page-hero p { color: #c3d3e3; max-width: 620px; margin-bottom: 0; font-size: 16.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  display: flex; gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  align-items: flex-start;
}
.contact-card .icon-tile { flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px; margin-bottom: 0; }
.contact-card .icon-tile svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 15.5px; margin-bottom: 6px; color: var(--navy-900); }
.contact-card a, .contact-card span.line { display: block; font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.contact-card a:hover { color: var(--gold-500); }

.form-panel {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(245,166,35,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; margin-bottom: 0; }
.form-success {
  display: none;
  align-items: center; gap: 10px;
  background: #eafaf1; border: 1px solid #b9ecd0; color: var(--success);
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14.5px; margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 26px; height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Service detail sections ---------- */
.service-detail {
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  scroll-margin-top: calc(var(--header-h) + 42px + 20px);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail .split { align-items: flex-start; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag {
  background: var(--gold-050);
  color: #a3690b;
  border: 1px solid #f0d6a0;
  font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
}

/* ---------- Services quick list (home) ---------- */
.mini-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .mini-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mini-list { grid-template-columns: 1fr; } }
.mini-list li {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14.5px; font-weight: 600; color: var(--navy-900);
}
.mini-list svg { width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #b7c7d8; padding-top: 76px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand img { height: 42px; margin-bottom: 14px; }
.footer-brand p { color: #8fa3b8; font-size: 14.5px; max-width: 300px; }
.footer h4 { color: #fff; font-size: 15.5px; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #94a9bd; font-size: 14.5px; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14.5px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #b7c7d8; }
.footer-contact a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px; color: #7b90a6; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: #7b90a6; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Floating action buttons ---------- */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; }
.fab-whatsapp { background: #25d366; color: #fff; }
.fab-call { background: var(--navy-900); color: #fff; }
.fab-top {
  background: #fff; color: var(--navy-900);
  border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s ease;
}
.fab-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.bg-alt { background: var(--paper-alt); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
