/* ============================================================
   Alekhwan Transport – Stylesheet
   Sections:
   1. Reset & Variables
   2. Base & Typography
   3. Animations & Scroll Reveal
   4. Top Bar
   5. Navigation
   6. Hero
   7. Features Strip
   8. Services
   9. About / Process
   10. Why Us
   11. Reviews
   12. CTA Banner
   13. Contact
   14. Footer
   15. Responsive
============================================================ */

/* ── 1. Reset & Variables ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --transport-main: #1e4a4a;
  --transport-dark: #153333;
  --gold:           #c9a84c;
  --white:          #ffffff;
  --off-white:      #f7f8fc;
  --gray-light:     #f0f2f8;
  --text:           #f7f8fc;
  --text-muted:     #222;
  --radius:         14px;
  --transition:     0.25s ease;
}

/* ── 2. Base & Typography ─────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--off-white);
}

a { text-decoration: none; color: inherit; }
section { padding: 90px 80px; }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--transport-main);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--transport-main);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 560px;
}

/* ── 3. Animations & Scroll Reveal ───────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

/* → animations defined in av-animations.css */
.stagger > *:nth-child(3) { transition-delay: 0.20s; }
.stagger > *:nth-child(4) { transition-delay: 0.30s; }
.stagger > *:nth-child(5) { transition-delay: 0.40s; }
.stagger > *:nth-child(6) { transition-delay: 0.50s; }

/* ── 4. Top Bar ───────────────────────────────────────────── */
.topbar {
  background: var(--transport-main);
  color: #c9a84c;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.topbar a { color: #c9a84c; transition: color var(--transition); }
.topbar a:hover { color: #fff; }

/* ── 5. Navigation ────────────────────────────────────────── */
nav {
  background: var(--transport-main);
  border-bottom: 1px solid rgba(90,45,107,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(90,45,107,0.06);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(90,45,107,0.12); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.nav-brand span { color: var(--off-white); }

.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a {
  color: var(--text);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-back {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.nav-back:hover { color: var(--transport-main); }
.nav-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.nav-cta {
  background: var(--transport-main);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), transform 0.15s;
}
.nav-cta:hover { background: var(--transport-dark); transform: translateY(-1px); }

/* ── 6. Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  background: var(--transport-main);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-shape-1 {
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.03);
  top: -150px; right: -150px;
}
.hero-bg-shape-2 {
  width: 300px; height: 300px;
  background: rgba(201,168,76,0.06);
  bottom: -80px; left: 30%;
}

.hero-text { animation: fadeDown 0.8s ease both; position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  background: var(--gold);
  color: var(--transport-main);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.hero-badge svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeDown 0.8s ease 0.2s both;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 26px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}
.hero-card:hover { background: rgba(255,255,255,0.11); transform: translateX(6px); }
.hero-card:first-child { animation: float 5s ease-in-out infinite; }
.hero-card:nth-child(2) { animation: float 5s ease-in-out 1s infinite; margin-left: 24px; }
.hero-card:nth-child(3) { animation: float 5s ease-in-out 2s infinite; }

.hero-card-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.hero-card-icon svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 2; fill: none; }
.hero-card h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.hero-card p  { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── 7. Features Strip ────────────────────────────────────── */
.features {
  background: var(--white);
  padding: 56px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(90,45,107,0.08);
}

.feature-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(90,45,107,0.08);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--transport-dark); }

.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--transport-main);
  line-height: 1;
  margin-bottom: 6px;
}
.feature-item h4 { font-size: 14px; font-weight: 600; color: var(--transport-main); margin-bottom: 4px; }
.feature-item p  { font-size: 13px; color: var(--text-muted); }

/* ── 8. Services ──────────────────────────────────────────── */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(90,45,107,0.08);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(90,45,107,0.12);
  border-color: var(--transport-main);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--transport-main), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--transport-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon { background: var(--transport-main); transform: scale(1.08) rotate(4deg); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--transport-main); fill: none; stroke-width: 1.8; transition: stroke 0.3s; }
.service-card:hover .service-icon svg { stroke: #fff; }

.service-card h3 { font-size: 18px; font-weight: 700; color: var(--transport-main); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--transport-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── 9. Process ───────────────────────────────────────────── */
.process {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(90,45,107,0.08);
  transition: background var(--transition);
  cursor: default;
}
.process-step:last-child { border-bottom: none; }

.step-num {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--transport-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--transport-main);
  transition: background 0.3s, color 0.3s;
  margin-top: 2px;
}
.process-step:hover .step-num { background: var(--transport-main); color: #fff; }

.step-content h4 { font-size: 16px; font-weight: 700; color: var(--transport-main); margin-bottom: 4px; }
.step-content p  { font-size: 14px; color: var(--text-muted); }

.process-visual {
  background: var(--transport-main);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process-visual::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  top: -60px; right: -60px;
}
.process-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-visual p { font-size: 15px; opacity: 0.7; margin-bottom: 32px; }

.process-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.process-stat:last-child { margin-bottom: 0; }
.p-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 70px;
}
.p-stat-label { font-size: 14px; opacity: 0.75; }

/* ── 10. Why Us ───────────────────────────────────────────── */
.why { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(90,45,107,0.08);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(90,45,107,0.1); }

.why-icon {
  width: 48px; height: 48px;
  background: var(--transport-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: var(--transport-main); }
.why-icon svg { width: 22px; height: 22px; stroke: var(--transport-main); fill: none; stroke-width: 2; transition: stroke 0.3s; }
.why-card:hover .why-icon svg { stroke: #fff; }

.why-card h3 { font-size: 16px; font-weight: 700; color: var(--transport-main); margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── 11. Reviews ──────────────────────────────────────────── */
.reviews { background: var(--transport-main); }
.reviews .section-tag   { color: var(--gold); }
.reviews .section-title { color: #fff; }
.reviews .section-sub   { color: rgba(255,255,255,0.6); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: rgba(201,168,76,0.2);
  line-height: 1;
}

.stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; }
.review-card p { font-size: 14px; color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.review-author { font-size: 13px; font-weight: 700; color: #fff; }
.review-role   { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── 12. CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c060 100%);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--transport-main);
  margin-bottom: 10px;
}
.cta-banner p { font-size: 16px; color: rgba(61,29,74,0.75); }

.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-dark {
  background: var(--transport-main);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(61,29,74,0.3); }

.btn-light {
  background: rgba(255,255,255,0.4);
  color: var(--transport-main);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-light:hover { background: rgba(255,255,255,0.65); }

/* ── 13. Contact ──────────────────────────────────────────── */
.contact {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--transport-main); margin-bottom: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
  transition: transform var(--transition);
}
.contact-item:hover { transform: translateX(4px); }

.contact-ic {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--transport-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.contact-item:hover .contact-ic { background: var(--transport-main); }
.contact-ic svg { width: 18px; height: 18px; stroke: var(--transport-main); stroke-width: 2; fill: none; transition: stroke var(--transition); }
.contact-item:hover .contact-ic svg { stroke: #fff; }

.contact-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--transport-main); }
.contact-text span   { font-size: 13px; color: var(--text-muted); }

.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--transport-main); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); display: block; margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid rgba(90,45,107,0.15);
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-muted);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--transport-main);
  box-shadow: 0 0 0 3px rgba(90,45,107,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  background: var(--transport-main);
  color: #fff;
  padding: 13px 32px;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition), transform 0.15s;
  font-family: inherit;
}
.btn-submit:hover { background: var(--transport-dark); transform: translateY(-2px); }

/* ── 14. Footer ───────────────────────────────────────────── */
footer {
  background: var(--transport-dark);
  color: #000000;
  padding: 64px 80px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand span { color: var(--gold); }

footer p   { font-size: 13px; color: #f7f8fc; line-height: 1.9; }
footer h4  { font-size: 12px; font-weight: 700; color: #c9a84c; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
footer ul  { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer a   { font-size: 13px; color: #f7f8fc; transition: color 0.2s; }
footer a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #fff;
}

/* ── 15. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .features      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .cta-banner    { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  section        { padding: 60px 24px; }
  .hero          { grid-template-columns: 1fr; padding: 60px 24px; min-height: auto; }
  .hero-visual   { display: none; }
  .services-grid,
  .why-grid,
  .reviews-grid  { grid-template-columns: 1fr; }
  .process       { grid-template-columns: 1fr; }
  .contact       { grid-template-columns: 1fr; }
  .features      { padding: 40px 24px; grid-template-columns: repeat(2, 1fr); }
  .feature-item  { border-right: none; border-bottom: 1px solid rgba(90,45,107,0.08); }
  nav            { padding: 12px 20px; }
  .nav-links     { display: none; }
  .footer-grid   { grid-template-columns: 1fr; }
  footer         { padding: 48px 24px 24px; }
  .cta-banner    { padding: 48px 24px; }
}


/* ── Animation additions ──────────── */
/* ============================================================
   Alekhwan – Scroll Animation Additions
   Appended to each page's style.css
============================================================ */

/* ── Reveal: scale-in (hero cards) ──────────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Reveal: flip-in (stats) ─────────────────────────────── */
.reveal-flip {
  opacity: 0;
  transform: perspective(600px) rotateX(18deg) translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-flip.visible {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg) translateY(0);
}

/* ── Reveal: tag slide-in (section labels) ───────────────── */
.reveal-tag {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s;
}
.reveal-tag.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Stronger base reveal (override if already defined) ──── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Stagger delays (up to 8 children) ──────────────────── */
.stagger > *:nth-child(1) { transition-delay: 0.00s; }
.stagger > *:nth-child(2) { transition-delay: 0.10s; }
.stagger > *:nth-child(3) { transition-delay: 0.20s; }
.stagger > *:nth-child(4) { transition-delay: 0.30s; }
.stagger > *:nth-child(5) { transition-delay: 0.40s; }
.stagger > *:nth-child(6) { transition-delay: 0.50s; }
.stagger > *:nth-child(7) { transition-delay: 0.60s; }
.stagger > *:nth-child(8) { transition-delay: 0.70s; }

/* ── Mobile nav open state ────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: inherit;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 300;
    gap: 12px;
    animation: fadeDown 0.25s ease both;
  }
}
