/* =========================================================================
   Pravex Holdings — Trade & Infrastructure
   Brand Stylesheet
   ----------------------------------------------------------------------------
   Palette (from brand guidance):
     --paper     #F4F6FF   off-white surface
     --gold      #F3C623   gold accent
     --amber     #F3C623   gold accent (alias of --gold; no orange in palette)
     --navy      #10375C   primary navy
   ========================================================================= */

/* --------- 1. Design tokens ---------------------------------------------- */
:root {
  --paper:     #F4F6FF;
  --gold:      #F3C623;
  --amber:     #F3C623;
  --navy:      #10375C;
  --navy-700:  #0D2E4E;
  --navy-900:  #0A2440;
  --navy-950:  #071B31;

  --ink-0:   #ffffff;
  --ink-50:  #f6f8fd;
  --ink-100: #e5e9f2;
  --ink-300: #93a1b5;
  --ink-500: #52657e;
  --ink-700: #23374e;
  --ink-900: #10233a;

  --shadow-sm: 0 1px 2px rgba(7,27,49,.06), 0 1px 2px rgba(7,27,49,.04);
  --shadow-md: 0 6px 20px rgba(7,27,49,.10), 0 2px 6px rgba(7,27,49,.06);
  --shadow-lg: 0 24px 60px rgba(7,27,49,.18), 0 6px 16px rgba(7,27,49,.08);
  --shadow-glow: 0 0 0 1px rgba(243,198,35,.30), 0 10px 40px rgba(243,198,35,.22);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1240px;
  --section-y: clamp(64px, 9vw, 128px);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* --------- 2. Base ------------------------------------------------------- */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--amber); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink-900);
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3.4rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.4rem, 1vw + 1rem, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--ink-500); margin: 0 0 1rem; }

::selection { background: var(--gold); color: var(--navy-950); }

/* --------- 3. Utility ---------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--gold);
}
.section { padding: var(--section-y) 0; position: relative; }
.section--dark { background: var(--navy-950); color: var(--ink-100); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.7); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }
.section--tint { background: #fff; }

.text-brand { color: var(--navy); }
.text-brand-light { color: var(--gold); }

/* --------- 4. Buttons ---------------------------------------------------- */
.btn-px {
  --bg: var(--gold);
  --fg: var(--navy-950);
  --bd: transparent;
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .9rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 1.5px solid var(--bd);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  text-decoration: none;
}
.btn-px:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--fg);
}
.btn-px .icon { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease-out); }
.btn-px:hover .icon { transform: translateX(3px); }

.btn-px--ghost {
  --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.3);
}
.btn-px--ghost:hover { --bg: rgba(255,255,255,.1); color: #fff; }
.btn-px--outline {
  --bg: transparent; --fg: var(--navy); --bd: var(--navy);
}
.btn-px--outline:hover { --bg: var(--navy); --fg: #fff; color: #fff; }
.btn-px--navy { --bg: var(--navy); --fg: #fff; }
.btn-px--navy:hover { color: #fff; box-shadow: 0 10px 36px rgba(16,55,92,.35); }

/* --------- 5. Navbar ----------------------------------------------------- */
/* Light navbar — the navy/gold wordmark needs a light surface to read.
   White (not off-white) so the logo's own white background blends in. */
.px-navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1040;
  padding: 14px 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s;
}
.px-navbar--solid {
  padding: 8px 0;
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(16,55,92,.08), var(--shadow-sm);
}
/* Wordmark: gold Africa-icon mark + "PRAVEX / HOLDINGS" set in type
   (the master logo file we have on hand is icon-only, so the wordmark
   is reconstructed in CSS to match the brand brief). */
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { height: 34px; width: auto; flex-shrink: 0; transition: height .35s var(--ease-out); }
.brand-text { display: flex; flex-direction: row; align-items: baseline; gap: .4rem; line-height: 1; white-space: nowrap; }
.brand-text strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; letter-spacing: .01em; color: var(--navy);
}
.brand-text em {
  font-style: normal; font-weight: 600; font-size: 1.05rem;
  letter-spacing: .02em; text-transform: uppercase; color: #c2a662;
}
.px-navbar--solid .brand-mark { height: 30px; }
.px-navbar .nav-link {
  color: var(--ink-500);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1rem !important;
  position: relative;
  transition: color .2s;
}
.px-navbar .nav-link:hover,
.px-navbar .nav-link.active { color: var(--navy); }
.px-navbar .nav-link.active::after {
  content: '';
  position: absolute; left: 1rem; right: 1rem; bottom: 4px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.px-navbar .navbar-toggler {
  border: 1px solid rgba(16,55,92,.25);
  padding: .35rem .55rem;
}
.px-navbar .navbar-toggler:focus { box-shadow: none; }
.px-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(16,55,92,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 991.98px) {
  .px-navbar .navbar-collapse {
    background: rgba(244,246,255,.98);
    backdrop-filter: blur(14px);
    margin-top: 14px;
    padding: 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
}

/* --------- 6. Hero ------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: -2;
  animation: heroZoom 18s var(--ease-in-out) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(243,198,35,.14), transparent 60%),
    linear-gradient(180deg, rgba(7,27,49,.82) 0%, rgba(7,27,49,.96) 100%);
  z-index: -1;
}
.hero__content { padding-block: 150px 80px; max-width: 920px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 3.8vw + 1rem, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  max-width: 20ch;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(1.05rem, .6vw + .9rem, 1.3rem);
  color: rgba(255,255,255,.8);
  max-width: 620px;
  margin: 1.5rem 0 2.5rem;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__meta-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.hero__meta-item .label {
  display: block;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .35rem;
}

/* --------- 7. Page hero (smaller, internal pages) ------------------------ */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
  isolation: isolate;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
  opacity: .4;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(243,198,35,.16), transparent 60%),
    linear-gradient(180deg, rgba(7,27,49,.7), rgba(7,27,49,.95));
  z-index: -1;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.78); }
.page-hero .breadcrumb { background: transparent; padding: 0; margin-bottom: 1.5rem; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a {
  color: rgba(255,255,255,.6);
  font-size: .85rem; letter-spacing: .04em;
}
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* --------- 8. Section heading ------------------------------------------- */
.section-head { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }
.section-head p { font-size: 1.05rem; }

/* --------- 9. Service cards --------------------------------------------- */
.service-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
  height: 100%;
  text-decoration: none; color: inherit;
}
.service-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-950);
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 22px rgba(235,131,23,.30);
}
.service-card h3 { color: var(--ink-900); margin-bottom: .6rem; font-size: 1.25rem; }
.service-card .more {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: .9rem;
  color: var(--amber);
}
.service-card .more svg { transition: transform .25s var(--ease-out); }
.service-card:hover .more svg { transform: translateX(4px); }

/* Detailed service rows (Services page) */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.service-row:last-child { margin-bottom: 0; }
@media (min-width: 992px) {
  .service-row { grid-template-columns: 1.05fr 1fr; gap: 5rem; }
  .service-row--rev .service-row__media { order: -1; }
}
.service-row__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-100);
  box-shadow: var(--shadow-lg);
}
.service-row__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.service-row__media:hover img { transform: scale(1.05); }
.service-row__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,27,49,.45));
}
.service-row__tag {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: rgba(7,27,49,.65); backdrop-filter: blur(6px);
  color: #fff; font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .45rem .85rem; border-radius: 999px;
  z-index: 2;
}
.service-row ul.feature-list {
  list-style: none; padding: 0; margin: 1.5rem 0;
}
.service-row ul.feature-list li {
  position: relative;
  padding: .55rem 0 .55rem 2rem;
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-700);
}
.service-row ul.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 1.05rem;
  width: 18px; height: 2px; background: var(--amber);
}

/* --------- 10. Feature blocks ------------------------------------------- */
.feature-block {
  position: relative;
  padding: 2rem 1.6rem;
  background: #fff;
  border-radius: var(--radius-lg);
  height: 100%;
  transition: background .3s, transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  border: 1px solid var(--ink-100);
}
.feature-block:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-block .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: .8rem;
  display: block;
}
.feature-block h4 { color: var(--ink-900); margin-bottom: .5rem; }
.feature-block p { color: var(--ink-500); margin: 0; font-size: .95rem; }

/* --------- 11. Glass cards (dark sections) ------------------------------ */
.glass-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .35s var(--ease-out), background .35s, border-color .35s;
  height: 100%;
}
.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(243,198,35,.45);
}
.glass-card h4 { color: #fff; }
.glass-card p { color: rgba(255,255,255,.7); margin: 0; font-size: .95rem; }
.glass-card .icon-wrap {
  background: rgba(243,198,35,.16);
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

/* --------- 12. Media frames --------------------------------------------- */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 3 / 4; }
.media-frame--wide { aspect-ratio: 16 / 10; }
.media-frame .badge-pill {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(7,27,49,.6); backdrop-filter: blur(8px);
  color: #fff; padding: .55rem 1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: .5rem;
}

/* --------- 13. About image stack ---------------------------------------- */
.about-img-stack { position: relative; aspect-ratio: 4 / 5; }
.about-img-stack .frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-stack .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-stack .frame--main { inset: 0 18% 18% 0; z-index: 2; }
.about-img-stack .frame--accent {
  right: 0; bottom: 0; width: 56%; height: 46%;
  z-index: 3;
  border: 6px solid var(--paper);
}
.about-img-stack .badge-shape {
  position: absolute; top: -18px; left: -18px;
  width: 116px; height: 116px;
  background: var(--gold);
  color: var(--navy-950);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  z-index: 4;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
}

/* --------- 14. CEO block ------------------------------------------------- */
.ceo-block {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 5rem);
  color: #fff;
  overflow: hidden;
}
.ceo-block::before {
  content: '';
  position: absolute; right: -10%; top: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(closest-side, rgba(243,198,35,.20), transparent 75%);
}
.ceo-block h2 { color: #fff; }
.ceo-block p { color: rgba(255,255,255,.75); }
.ceo-block .role {
  display: inline-block;
  background: rgba(243,198,35,.16);
  color: var(--gold);
  border: 1px solid rgba(243,198,35,.35);
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.ceo-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,.9);
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.4rem 0;
}
.ceo-block .ceo-portrait {
  width: 150px; height: 150px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem;
  color: var(--navy-950);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.ceo-block .ceo-portrait img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.ceo-block .ceo-sign { color: #fff; font-weight: 600; }
.ceo-block .ceo-sign span { display: block; color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 400; }

/* --------- 15. Timeline (business model) --------------------------------- */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: '';
  position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
@media (min-width: 768px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}
.tl-item { position: relative; padding: 1rem 0 2rem 60px; }
.tl-item .dot {
  position: absolute; left: 12px; top: 1.3rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(243,198,35,.2);
}
.tl-item .year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.tl-item h4 { margin: .3rem 0 .5rem; }
@media (min-width: 768px) {
  .tl-item { width: 50%; padding-left: 3rem; padding-right: 0; }
  .tl-item:nth-child(even) { margin-left: 50%; padding-left: 3rem; }
  .tl-item:nth-child(odd) { text-align: right; padding-right: 3rem; padding-left: 0; }
  .tl-item:nth-child(odd) .dot { left: auto; right: -10px; }
  .tl-item:nth-child(even) .dot { left: -10px; }
}

/* --------- 16. Values pills ---------------------------------------------- */
.value-pills { display: flex; flex-wrap: wrap; gap: .7rem; }
.value-pills span {
  font-family: var(--font-display);
  font-weight: 600; font-size: .85rem;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--ink-100);
  border-radius: 999px;
  padding: .55rem 1.2rem;
  transition: border-color .25s, transform .25s var(--ease-out);
}
.value-pills span:hover { border-color: var(--gold); transform: translateY(-2px); }

/* --------- 17. Project / flagship components ----------------------------- */
.component-card {
  display: flex; align-items: center; gap: 1rem;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  height: 100%;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.component-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.component-card i { font-size: 1.4rem; color: var(--amber); flex-shrink: 0; }
.component-card span {
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: var(--ink-900);
}

/* Focus countries strip */
.country-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 2.6rem;
}
.country-strip .country {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: var(--ink-300);
  transition: color .3s;
}
.country-strip .country:hover { color: var(--navy); }
.section--dark .country-strip .country { color: rgba(255,255,255,.5); }
.section--dark .country-strip .country:hover { color: var(--gold); }

/* --------- 18. Contact page ---------------------------------------------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.contact-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(243,198,35,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 1.2rem;
}
.contact-card h4 { font-size: 1.05rem; }
.contact-card a { color: var(--ink-700); }
.contact-card a:hover { color: var(--amber); }

.form-floating > .form-control,
.form-floating > .form-select {
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem .4rem;
  font-size: 1rem;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(243,198,35,.18);
  outline: none;
}
.form-floating > label { color: var(--ink-300); padding-left: 1rem; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 460px;
  position: relative;
  background: var(--ink-100);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------- 19. Footer ----------------------------------------------------- */
.px-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.65);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.px-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243,198,35,.5), transparent);
}
.px-footer h5 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.px-footer a { color: rgba(255,255,255,.65); font-size: .95rem; }
.px-footer a:hover { color: var(--gold); }
.px-footer ul { list-style: none; padding: 0; margin: 0; }
.px-footer ul li { padding: .35rem 0; }
.px-footer .brand {
  margin-bottom: 1.2rem;
}
.px-footer .brand-mark { height: 40px; }
.px-footer .brand-text strong { color: #fff; }
.px-footer .legal {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem; padding-top: 1.5rem;
  font-size: .85rem;
}
.px-footer .socials { display: flex; gap: .8rem; }
.px-footer .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, transform .25s;
}
.px-footer .socials a:hover {
  background: var(--gold);
  color: var(--navy-950);
  transform: translateY(-2px);
}

/* --------- 20. CTA band --------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy-950);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 80% at 90% 50%, rgba(255,255,255,.35), transparent 70%),
    radial-gradient(50% 80% at 10% 100%, rgba(16,55,92,.15), transparent 60%);
  pointer-events: none;
}
.cta-band h2, .cta-band p { color: var(--navy-950); position: relative; z-index: 1; }
.cta-band p { color: rgba(7,27,49,.75); }
.cta-band .btn-px { position: relative; z-index: 1; }

/* --------- 21. Reveal animations ------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

.reveal[data-reveal="fade"] { transform: none; }
.reveal[data-reveal="left"] { transform: translateX(-40px); }
.reveal[data-reveal="left"].in-view { transform: none; }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal[data-reveal="right"].in-view { transform: none; }
.reveal[data-reveal="scale"] { transform: scale(.94); }
.reveal[data-reveal="scale"].in-view { transform: none; }

.reveal[data-delay="100"] { transition-delay: .1s; }
.reveal[data-delay="200"] { transition-delay: .2s; }
.reveal[data-delay="300"] { transition-delay: .3s; }
.reveal[data-delay="400"] { transition-delay: .4s; }
.reveal[data-delay="500"] { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------- 22. Misc / 404 -------------------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.notfound {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-950); color: #fff;
  text-align: center;
  position: relative; overflow: hidden;
}
.notfound::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(243,198,35,.18), transparent 60%);
}
.notfound .code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(7rem, 22vw, 18rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .brand-mark { height: 28px; }
  .brand-text strong { font-size: .95rem; }
  .brand-text em { font-size: .85rem; }
  .container { padding-inline: 20px; }
  .hero__content { padding-block: 150px 60px; }
  .hero__meta { gap: 1.4rem; }
  .hero__meta-item .num { font-size: 1.9rem; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 140px 0 60px; }
}
