/* ==========================================================================
   NJS Customs Brokerage — site stylesheet
   Brand: navy #152242 / cyan #16BDCA (from the official logo pack)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy:        #152242;
  --navy-700:    #1E2F5A;
  --navy-600:    #2A3E6E;
  --cyan:        #16BDCA;
  --cyan-600:    #0F9CA8;
  --cyan-050:    #E7FAFB;

  --ink:         #0C1425;
  --body:        #47536B;
  --muted:       #6D7A93;
  --line:        #E2E8F1;
  --line-soft:   #EFF3F8;

  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FC;
  --bg-navy:     #101B36;

  --amber:       #F5A524;

  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 1px 2px rgba(12,20,37,.06), 0 2px 8px rgba(12,20,37,.05);
  --shadow-md:   0 4px 12px rgba(12,20,37,.07), 0 12px 32px rgba(12,20,37,.07);
  --shadow-lg:   0 8px 24px rgba(12,20,37,.09), 0 24px 60px rgba(12,20,37,.10);

  --wrap:        1160px;
  --gut:         24px;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
h4 { font-size: 1.02rem; font-weight: 700; }
/* Visual-scale utilities. Heading levels have to run h1 > h2 > h3 without
   skipping; these classes let a tag change level without changing size. */
.h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 800; }
.h4 { font-size: 1.02rem; font-weight: 700; }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 820px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #C3CCE0; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--cyan-600); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section--navy .eyebrow { color: var(--cyan); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; margin-bottom: 0; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  font-family: inherit; font-size: .97rem; font-weight: 700; line-height: 1;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none !important; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--cyan); color: #06282B; box-shadow: 0 6px 18px rgba(22,189,202,.32); }
.btn--primary:hover { background: #13CEDC; box-shadow: 0 10px 26px rgba(22,189,202,.40); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(21,34,66,.24); }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan-600); }
.btn--outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.02em 1.9em; font-size: 1.03rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-bar { display: flex; align-items: center; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand:hover { text-decoration: none; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: .55em .85em; border-radius: 8px; font-size: .93rem; font-weight: 600;
  color: var(--ink); text-decoration: none; transition: background .15s, color .15s;
}
.nav a:hover { background: var(--bg-soft); color: var(--navy); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--cyan-600); }
.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy); border-radius: 2px;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; inset: 76px 0 auto; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--gut) 20px;
    box-shadow: var(--shadow-md); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8em .6em; font-size: 1rem; }
  .header-cta { margin: 8px 0 0; }
}

/* ---------- Topbar (contact strip) ---------- */
.topbar { background: var(--navy); color: #B9C4DA; font-size: .85rem; }
.topbar-inner { display: flex; align-items: center; gap: 22px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar-item { display: inline-flex; align-items: center; gap: .45em; }
.topbar-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--cyan); }
.topbar-right { margin-left: auto; color: var(--cyan); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .74rem; }
@media (max-width: 720px) { .topbar { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #D6DEEE;
  background:
    radial-gradient(900px 480px at 82% 8%, rgba(22,189,202,.22), transparent 60%),
    radial-gradient(700px 500px at 8% 92%, rgba(42,62,110,.55), transparent 62%),
    linear-gradient(160deg, #101B36 0%, #152242 52%, #0B1428 100%);
  background-color: #101B36;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 60% 40%, #000, transparent 78%);
}
/* padding-block only — a `padding` shorthand here would zero out .wrap's gutter */
.hero-inner { position: relative; z-index: 1; padding-block: clamp(60px, 9vw, 112px) clamp(52px, 7vw, 92px); }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero .lede { color: #C3CCE0; max-width: 56ch; font-size: clamp(1.05rem, 1.7vw, 1.2rem); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.6rem; }
.badge {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .42em .95em; border-radius: 999px; font-size: .8rem; font-weight: 700;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #E4EAF6;
}
.badge svg { width: 14px; height: 14px; color: var(--cyan); }

/* Hero stat rail */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg); overflow: hidden; margin-top: clamp(40px, 5vw, 64px);
}
.hero-stat { background: rgba(16,27,54,.72); padding: 24px 22px; }
.hero-stat .num { display: block; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.hero-stat .lbl { display: block; font-size: .82rem; color: #9FADC7; margin-top: .35em; }
@media (max-width: 760px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Photos ---------- */
.photo { border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.photo picture { display: block; width: 100%; height: 100%; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--tall  { aspect-ratio: 3 / 4; }
.photo--wide  { aspect-ratio: 4 / 3; }
.photo--band  { aspect-ratio: 21 / 9; }
.photo--square{ aspect-ratio: 1 / 1; }
/* natural height — for posters and graphics that must not be cropped */
.photo--free  { aspect-ratio: auto; }
.photo--free picture { height: auto; }
.photo--free img { height: auto; object-fit: contain; }

figure.photo-fig { margin: 0; }
figure.photo-fig figcaption {
  font-size: .84rem; color: var(--muted); margin-top: .7em; line-height: 1.45;
}
.section--navy figure.photo-fig figcaption { color: #8D9BB8; }

/* Hero photo collage */
.hero-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.hero-media .photo { box-shadow: 0 18px 44px rgba(0,0,0,.38); border: 1px solid rgba(255,255,255,.12); }
.hero-media .a { grid-column: span 2; aspect-ratio: 16 / 10; }
.hero-media .b, .hero-media .c { aspect-ratio: 1 / 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; }
}

/* Card with a photo on top */
.card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--photo .photo { border-radius: 0; }
.card--photo .card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.card--photo .card-body h3 { margin-bottom: .4em; }
.card--photo .card-body p:last-of-type { margin-bottom: 0; }
.card--photo .more { margin-top: auto; padding-top: 14px; font-weight: 700; font-size: .93rem; color: var(--cyan-600); }
.card--photo .more::after { content: " →"; }

/* Photo strip / gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery .photo { aspect-ratio: 1 / 1; }
.gallery .photo:first-child { grid-column: span 2; grid-row: span 2; }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Split with an image side */
.media-stack { display: grid; gap: 14px; }
.media-stack--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .media-stack--2 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card h3:not(.h4), .card .h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D3DDEB; text-decoration: none; }
a.card { color: inherit; display: block; }
a.card:hover { text-decoration: none; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--cyan-050); color: var(--cyan-600); margin-bottom: 18px;
}
.icon-badge svg { width: 23px; height: 23px; }
.section--navy .card { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.10); }
.section--navy .card p { color: #B3BFD6; }
.section--navy .icon-badge { background: rgba(22,189,202,.14); color: var(--cyan); }

/* Card list (checkmark bullets) */
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { position: relative; padding-left: 1.9em; margin-bottom: .6em; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .46em; width: 1.15em; height: 1.15em;
  border-radius: 50%; background: var(--cyan-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230F9CA8'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L3.3 9.7a1 1 0 111.4-1.4l3.8 3.8 6.8-6.8a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/.78em no-repeat;
}
.section--navy .ticks li::before { background-color: rgba(22,189,202,.16); }

/* ---------- Stats band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat .num { display: block; font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.05; }
.stat .lbl { display: block; font-size: .88rem; color: var(--muted); margin-top: .4em; }
@media (max-width: 700px) { .stat-band { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 52px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-size: .82rem; font-weight: 800; letter-spacing: .1em; color: var(--cyan-600);
  background: var(--cyan-050); border-radius: 8px; padding: .45em .7em; line-height: 1;
}
.step .h4 { margin-bottom: .35em; }
.step p { font-size: .95rem; margin-bottom: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Location cards ---------- */
.loc-card { display: flex; flex-direction: column; gap: 10px; }
.loc-card .port { font-size: .82rem; color: var(--muted); }
.loc-card .more { margin-top: auto; padding-top: 14px; font-weight: 700; font-size: .93rem; color: var(--cyan-600); }
.loc-card .more::after { content: " →"; }

/* ---------- Cargo pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; list-style: none; }
.pills li {
  margin: 0; padding: .5em 1em; border-radius: 999px; font-size: .88rem; font-weight: 600;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
}
.section--soft .pills li { background: #fff; }
.section--navy .pills li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #DDE4F1; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1B2C55 60%, #12406B 100%);
  border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px); color: #C7D1E5;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(22,189,202,.28), transparent 68%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { max-width: 60ch; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: .45em; }
.field .hint { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: .78em .95em; font-family: inherit; font-size: .97rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(22,189,202,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 1rem; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: 1rem; padding: .9em 1.1em; border-radius: 10px; font-size: .93rem; font-weight: 600; display: none; }
.form-status.is-ok   { display: block; background: var(--cyan-050); color: #0B6E77; border: 1px solid #B7EDF1; }
.form-status.is-err  { display: block; background: #FEF2F2; color: #9B1C1C; border: 1px solid #FCD5D5; }

/* ---------- Contact tiles ---------- */
.contact-tile { display: flex; gap: 16px; align-items: flex-start; }
.contact-tile .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.contact-tile .h4 { margin-bottom: .15em; }
.contact-tile p { margin-bottom: 0; font-size: .95rem; }
.contact-tile a { font-weight: 700; color: var(--ink); }
.contact-tile a:hover { color: var(--cyan-600); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15em 2.4em 1.15em 0; position: relative;
  font-weight: 700; color: var(--ink); font-size: 1.03rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .4em; top: 1.5em; width: 11px; height: 11px;
  border-right: 2px solid var(--cyan-600); border-bottom: 2px solid var(--cyan-600);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > *:not(summary) { padding-right: 2.4em; }
.faq details p:last-child { padding-bottom: 1.3em; margin-bottom: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--bg-navy); color: #B9C4DA; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 340px at 88% 0%, rgba(22,189,202,.20), transparent 62%);
}
.page-hero-inner { position: relative; z-index: 1; padding-block: clamp(48px, 6.5vw, 84px) clamp(44px, 6vw, 72px); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: #C0CADF; max-width: 62ch; font-size: clamp(1.02rem, 1.5vw, 1.14rem); margin-bottom: 0; }
.crumbs { font-size: .84rem; color: #8D9BB8; margin-bottom: 1.1rem; }
.crumbs a { color: #B9C4DA; }
.crumbs span { margin: 0 .5em; opacity: .5; }

/* ---------- Prose blocks ---------- */
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-navy); color: #93A2BE; font-size: .93rem; padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .footer-h { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1em; }
.site-footer a { color: #B6C2D9; }
.site-footer a:hover { color: var(--cyan); text-decoration: none; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55em; }
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { max-width: 34ch; font-size: .92rem; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; font-size: .86rem; color: #7C8BA8;
}
.footer-bottom .spacer { margin-left: auto; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #C7D1E5; }
.social a:hover { background: var(--cyan); color: #06282B; }
.social svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating quick-contact ---------- */
.float-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.float-cta a {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cyan); color: #06282B; box-shadow: var(--shadow-md);
  transition: transform .15s ease;
}
.float-cta a:hover { transform: scale(1.06); text-decoration: none; }
.float-cta a.is-navy { background: var(--navy); color: #fff; }
.float-cta svg { width: 24px; height: 24px; }
@media (min-width: 981px) { .float-cta { display: none; } }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2.2rem; }
.small { font-size: .88rem; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff;
  padding: .8em 1.2em; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
