/* Dynamic Corporate Activities — static site
   Brand tokens taken from the original Elementor globals. */

:root {
  --navy:        #05347A;
  --navy-deep:   #04285F;
  --navy-ink:    #032357;
  --orange:      #F4911C;
  --orange-dark: #D97A0A;
  --ink:         #2F2E2E;
  --body:        #514E4E;
  --muted:       #7A7A7A;
  --line:        #E3E6EC;
  --surface:     #F7F7F7;
  --white:       #FFFFFF;
  --wa:          #25D366;
  --wa-dark:     #1DA851;

  --wrap: 1180px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --shadow: 0 2px 4px rgba(5,52,122,.05), 0 12px 28px rgba(5,52,122,.08);
  --shadow-lift: 0 6px 12px rgba(5,52,122,.09), 0 22px 48px rgba(5,52,122,.16);

  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.18; margin: 0 0 .6em; letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem); }
p  { margin: 0 0 1.15em; }
ul { margin: 0 0 1.15em; padding-left: 1.2em; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tint { background: var(--surface); }
.section--navy { background: var(--navy); color: #D7E2F2; }
.section--navy h2, .section--navy h3 { color: #fff; }

.lede { font-size: 1.125rem; max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-dark); margin-bottom: .9rem;
}
.section--navy .eyebrow { color: var(--orange); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font: inherit; font-weight: 700; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn--primary { background: var(--orange); color: #22160A; box-shadow: 0 6px 18px rgba(244,145,28,.32); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }
/* WhatsApp keeps its own green — people scan for the colour, not the wording */
.btn--wa { background: var(--wa); color: #06281A; box-shadow: 0 6px 18px rgba(37,211,102,.28); }
.btn--wa:hover { background: var(--wa-dark); color: #fff; transform: translateY(-2px); }
.btn--wa svg { flex: none; }

.btn--ghost { border-color: currentColor; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.section--navy .btn--ghost,
.cta-band .btn--ghost,
.hero .btn--ghost { color: #fff; }
.section--navy .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.hero .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; }
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand__text { font-weight: 700; color: var(--navy); font-size: 1.05rem; line-height: 1.2; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  text-decoration: none; color: var(--navy); font-weight: 600; font-size: .92rem;
  padding: .55rem .8rem; border-radius: 8px;
}
.nav a:hover { background: var(--surface); }
.nav a[aria-current="page"] { color: var(--orange-dark); }

.has-sub { position: relative; }
.has-sub > button {
  font: inherit; font-weight: 600; font-size: .92rem; color: var(--navy);
  background: none; border: 0; cursor: pointer; padding: .55rem .8rem; border-radius: 8px;
  display: inline-flex; align-items: center; gap: .35rem;
}
.has-sub > button:hover { background: var(--surface); }
.has-sub > button svg { transition: transform .2s ease; }
.has-sub[data-open="true"] > button svg { transform: rotate(180deg); }
.submenu {
  position: absolute; top: calc(100% + .4rem); left: 0; min-width: 258px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: .4rem; margin: 0; list-style: none;
  display: none;
}
.has-sub[data-open="true"] .submenu { display: block; }
.submenu a { display: block; padding: .6rem .8rem; font-weight: 500; }

.nav__cta { margin-left: .5rem; }

.burger {
  display: none; background: none; border: 1px solid var(--line); border-radius: 10px;
  padding: .55rem .7rem; cursor: pointer; color: var(--navy);
}

@media (max-width: 960px) {
  .burger { display: inline-flex; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .75rem var(--gut) 1.25rem; box-shadow: var(--shadow);
  }
  .site-header[data-nav="open"] .nav { display: flex; }
  .nav a, .has-sub > button { width: 100%; text-align: left; padding: .75rem .25rem; }
  .submenu { position: static; border: 0; box-shadow: none; padding: 0 0 .5rem .9rem; }
  .nav__cta { margin: .6rem 0 0; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--navy); color: #DCE6F5; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(3,35,87,.95) 0%, rgba(3,35,87,.92) 30%, rgba(3,35,87,.80) 46%, rgba(4,40,95,.46) 64%, rgba(5,52,122,.14) 84%, rgba(5,52,122,.04) 100%),
    linear-gradient(to bottom, rgba(3,35,87,.35) 0%, rgba(3,35,87,0) 28%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 9vw, 6.5rem); max-width: 40rem; }
.hero h1 { text-shadow: 0 2px 18px rgba(2,22,56,.4); }
@media (max-width: 820px) {
  .hero::after { background: linear-gradient(180deg, rgba(3,35,87,.90) 0%, rgba(3,35,87,.82) 55%, rgba(3,35,87,.88) 100%); }
  .hero__inner { max-width: none; }
}
.hero h1 { color: #fff; }
.hero p { font-size: 1.15rem; color: #C9D8EE; max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }

/* page banner (interior pages) */
.banner { background: var(--navy); color: #C9D8EE; }
.banner__inner { padding-block: clamp(2.5rem, 5vw, 3.75rem); }
.banner h1 { color: #fff; margin-bottom: .35rem; }

/* ---------- breadcrumb ---------- */
.crumbs { font-size: .85rem; color: #9FB6D8; margin-bottom: .75rem; }
.crumbs a { color: #C9D8EE; }
.crumbs span { opacity: .6; margin-inline: .4rem; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(275px, 1fr)); }

.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: #C9D6EA; }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--surface); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__badge {
  position: absolute; left: .85rem; bottom: .85rem;
  background: rgba(3,35,87,.92); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
}
.card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin-bottom: .4rem; font-size: 1.12rem; }
.card p { font-size: .93rem; color: var(--body); margin-bottom: 1rem; }
.card__more {
  margin-top: auto; font-weight: 700; font-size: .87rem; color: var(--orange-dark);
  display: inline-flex; align-items: center; gap: .4rem;
}
.card:hover .card__more { gap: .65rem; }

.page-hero {
  border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem;
  aspect-ratio: 16 / 9; max-width: 100%; background: var(--surface);
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose > p:last-child { margin-bottom: 0; }

.layout-split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); align-items: start; }
@media (max-width: 900px) { .layout-split { grid-template-columns: 1fr; } }

.aside {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; position: sticky; top: 98px;
}
@media (max-width: 900px) { .aside { position: static; } }
.aside h3 { font-size: 1.05rem; }
.aside dl { margin: 0 0 1.25rem; }
.aside dt { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.aside dd { margin: .15rem 0 1rem; font-weight: 600; color: var(--navy); font-size: 1.05rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 68ch; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--navy); font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange-dark); font-size: 1.4rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: .8rem 0 0; }

/* ---------- contact / form ---------- */
.form { display: grid; gap: 1rem; max-width: 34rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .85rem; font-weight: 700; color: var(--navy); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid #CFD6E2; border-radius: 10px; background: #fff;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy); outline: 3px solid rgba(5,52,122,.15); outline-offset: 0; }
.field textarea { min-height: 8rem; resize: vertical; }
.form__note { font-size: .82rem; color: var(--muted); }
.form .btn { justify-self: start; }
.form-alert {
  background: #FDF1E3; border: 1px solid #F0C48A; border-left: 4px solid var(--orange-dark);
  color: #6A3F06; border-radius: 10px; padding: .9rem 1.1rem; max-width: 34rem;
  font-size: .92rem;
}
.form-alert a { color: #6A3F06; font-weight: 700; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-list svg { flex: none; margin-top: .2rem; color: var(--orange-dark); }
.contact-list a { font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #D7E2F2; }
.cta-band__inner { padding-block: clamp(2.75rem, 6vw, 4rem); display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; margin-bottom: .3rem; }
.cta-band p { margin: 0; }

/* ---------- floating WhatsApp button ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--wa); color: #06281A;
  font-weight: 700; font-size: .92rem; text-decoration: none;
  padding: .8rem 1.15rem; border-radius: 999px;
  box-shadow: 0 4px 10px rgba(6,40,26,.22), 0 12px 30px rgba(37,211,102,.34);
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.wa-float:hover { background: var(--wa-dark); color: #fff; transform: translateY(-2px); }
.wa-float svg { flex: none; }

/* On phones collapse to a circle so it never covers the content */
@media (max-width: 640px) {
  .wa-float { right: 14px; bottom: 14px; padding: .95rem; border-radius: 50%; }
  .wa-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}
@media print { .wa-float { display: none; } }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-ink); color: #A9BEDD; padding-block: 3.25rem 1.75rem; font-size: .92rem; }
.site-footer h3 { color: #fff; font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #D7E2F2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer__logo { height: 42px; margin-bottom: 1rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22);
  display: grid; place-items: center; transition: background-color .18s ease, border-color .18s ease;
}
.socials a:hover { background: var(--orange); border-color: var(--orange); color: #22160A; }
.colophon {
  margin-top: 2.5rem; padding-top: 1.35rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; font-size: .85rem; color: #8FA6C9;
}
