/* ==========================================================================
   ELIAN GLOBAL LOGISTICS — Design System
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-950: #030f24;
  --navy-900: #041c3f;
  --navy-800: #0a2b52;
  --navy-700: #123863;
  --navy-600: #1c4a7c;
  --charcoal: #1b1e24;
  --charcoal-600: #3a3f4a;
  --slate-500: #64748b;
  --slate-300: #b9c2cf;
  --fog-100: #eef2f6;
  --white: #ffffff;
  --gold-600: #a97e1f;
  --gold-500: #c9a227;
  --gold-400: #dbb944;
  --gold-100: #f5e9c8;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--fog-100);
  --text: var(--charcoal);
  --text-muted: var(--slate-500);
  --line: #e2e6ec;

  /* Type */
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(4, 28, 63, 0.06);
  --shadow-md: 0 12px 32px rgba(4, 28, 63, 0.12);
  --shadow-lg: 0 24px 64px rgba(4, 28, 63, 0.18);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* Skip link for a11y */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 12px 20px;
  z-index: 200;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}
.eyebrow.on-dark { color: var(--gold-400); }

h1, .h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); letter-spacing: -0.01em; }
h2, .h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); letter-spacing: -0.01em; }
h3, .h3 { font-size: 1.35rem; }
.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; }
.section-head { max-width: 700px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(201, 162, 39, 0.35); }
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-navy {
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }
.btn-icon {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4, 28, 63, 0.0);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 22px 0;
}
.site-header.solid,
.site-header.is-open {
  background: var(--navy-950);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  padding: 14px 0;
}
.site-header .container:not(.nav-mobile) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 12px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.site-header.is-open .nav-toggle span { background: transparent; }
.site-header.is-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 4px;
}
.nav-mobile a {
  color: rgba(255, 255, 255, 0.88);
  padding: 13px 4px;
  font-size: 1rem;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-cta { display: flex; flex-direction: column; align-items: stretch; padding-top: 10px; }
.mobile-cta .btn { justify-content: center; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.lang-switch:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.mobile-cta .lang-switch {
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav-mobile { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,15,36,0.75) 0%, rgba(3,15,36,0.55) 38%, rgba(3,15,36,0.9) 100%),
    linear-gradient(100deg, rgba(3,15,36,0.92) 10%, rgba(3,15,36,0.35) 60%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 48px;
  align-items: end;
}
.hero-title { max-width: 720px; color: var(--white); }
.hero-title .accent { color: var(--gold-400); }
.hero-lead { color: rgba(255,255,255,0.82); font-size: 1.12rem; max-width: 54ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-stats {
  display: flex; flex-direction: column; gap: 22px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.hero-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-400);
}
.hero-stat-card span { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.65); font-size: 0.78rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.9), transparent); animation: scrolldown 2s infinite; }
@keyframes scrolldown { 0% { opacity: 0; transform: scaleY(0.3); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: top; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { flex: 1 1 200px; }
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}
.page-hero img.hero-media { opacity: 0.9; }
.page-hero .container { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 64px; }
.breadcrumb { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-400); }
.page-hero .lead { color: rgba(255,255,255,0.82); }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-900);
  color: var(--gold-400);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); margin-bottom: 0; font-size: 0.96rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 600; font-size: 0.9rem; color: var(--navy-900);
}
.card .card-link:hover { color: var(--gold-600); }

/* Service card with image */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card .media { position: relative; height: 220px; overflow: hidden; }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .media img { transform: scale(1.06); }
.service-card .media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,28,63,0) 40%, rgba(4,28,63,0.55) 100%);
}
.service-card .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(4,28,63,0.85); color: var(--gold-400);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.service-card .body { padding: 26px 26px 30px; }

/* ---------- Feature strip / HSE strip ---------- */
.strip {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 15% 20%, rgba(201,162,39,0.14), transparent 60%);
}
.strip .container { position: relative; z-index: 1; }
.strip .section-head h2 { color: var(--white); }
.strip .lead { color: rgba(255,255,255,0.72); }
.feature {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.feature:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.feature .card-icon { background: rgba(255,255,255,0.08); flex-shrink: 0; }
.feature h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.feature p { color: rgba(255,255,255,0.68); margin: 0; font-size: 0.94rem; }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-media .badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(4,28,63,0.88); backdrop-filter: blur(6px);
  color: var(--white); padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 0.88rem; display: flex; align-items: center; gap: 10px;
}
.split-media .badge strong { color: var(--gold-400); font-family: var(--font-display); font-size: 1.1rem; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: -1; }
}

/* Checklist */
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
.check-list .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-list .tick svg { width: 12px; height: 12px; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-bar .grid-4 { text-align: center; }
.stat h3 { font-size: 1.9rem; color: var(--navy-900); margin-bottom: 4px; }
.stat span { color: var(--text-muted); font-size: 0.88rem; }

/* ---------- Product cards ---------- */
.product-category { margin-bottom: 24px; }
.product-category .eyebrow { margin-bottom: 8px; }
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex; align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.product-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.product-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(4,28,63,0.15) 0%, rgba(3,15,36,0.92) 90%);
}
.product-card .body { position: relative; z-index: 2; padding: 28px; }
.product-card .spec-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.product-card .spec {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 11px; border-radius: 999px; color: rgba(255,255,255,0.92);
}
.product-card h3 { color: var(--white); margin-bottom: 6px; }
.product-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Testimonial / trust ---------- */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  padding: 40px 0;
  opacity: 0.9;
}
.trust-bar .item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; }
.trust-bar .item svg { width: 20px; height: 20px; color: var(--gold-500); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 260px at 90% 10%, rgba(201,162,39,0.18), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 640px) { .cta-band { padding: 40px 28px; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--navy-900); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(10, 43, 82, 0.1);
}
.field .error-msg { color: #b3261e; font-size: 0.8rem; min-height: 1em; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }
.form-success {
  display: none;
  background: #eaf6ee; border: 1px solid #bfe3c9; color: #1e5631;
  padding: 16px 18px; border-radius: var(--radius-sm); font-size: 0.94rem; margin-bottom: 20px;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: #fdecea; border: 1px solid #f3c2bd; color: #8c2d24;
  padding: 16px 18px; border-radius: var(--radius-sm); font-size: 0.94rem; margin-bottom: 20px;
}
.form-error.show { display: block; }

.contact-info-card {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}
.contact-info-card .item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-info-card .item:first-child { border-top: none; padding-top: 0; }
.contact-info-card .card-icon { background: rgba(255,255,255,0.08); }
.contact-info-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: rgba(255,255,255,0.72); font-size: 0.94rem; margin: 0; }
.contact-info-card a:hover { color: var(--gold-400); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 36px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--white); font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.94rem; color: rgba(255,255,255,0.68); transition: color .2s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col .item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.68); }
.footer-col .item svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--gold-400); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 24px 0; font-size: 0.84rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--gold-400); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

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

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}

/* ---------- Utilities ---------- */
.text-gold { color: var(--gold-500); }
.bg-alt { background: var(--bg-alt); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
