/* =========================================================
   Ashutosh Marine Skill Development Academy (AMSDA)
   Global Stylesheet
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette derived from the Ashutosh Marine logo (ocean blue + navy + sky highlight) */
  --navy: #0a2540;      /* deep navy — dark dolphins / text */
  --navy-2: #10355c;    /* deep ocean */
  --sea: #1f5688;       /* mid ocean water */
  --teal: #2f6fb0;      /* primary brand ocean blue (accent, links, buttons) */
  --teal-2: #4a8bcf;    /* brighter ocean */
  --gold: #78b4e8;      /* sky-blue highlight — pops on dark sections */
  --gold-2: #4f8ac2;    /* deeper sky highlight */
  --ink: #1f2d3d;
  --muted: #5b6b7b;
  --line: #e3e9ef;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --bg-soft-2: #eef3f8;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(10, 37, 64, .06);
  --shadow: 0 10px 30px rgba(10, 37, 64, .10);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, .16);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--navy); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--muted); }
a { color: var(--teal); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--sea); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #dbe7f2; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--tight { padding: 64px 0; }

.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.section-head p { font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .92rem;
  letter-spacing: .015em; line-height: 1;
  padding: 15px 30px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
/* elegant sheen sweep on hover */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  transform: translateX(-130%); transition: transform .6s var(--ease);
}
.btn:hover::before { transform: translateX(130%); }
/* subtle arrow that slides in */
.btn::after {
  content: "→"; font-size: 1.02em; font-weight: 500;
  max-width: 0; opacity: 0; margin-left: -9px;
  transform: translateX(-4px);
  transition: max-width .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease), margin-left .3s var(--ease);
}
.btn:hover::after { max-width: 1.4em; opacity: 1; margin-left: 0; transform: translateX(2px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn--primary { background: linear-gradient(135deg, var(--teal) 0%, var(--sea) 100%); color: #fff; box-shadow: 0 4px 14px rgba(18, 85, 126, .22); }
.btn--primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 22px rgba(18, 85, 126, .30); }

.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); color: var(--navy); box-shadow: 0 4px 14px rgba(79, 138, 194, .30); }
.btn--gold:hover { transform: translateY(-2px); color: var(--navy); box-shadow: 0 10px 22px rgba(79, 138, 194, .40); }

.btn--ghost { background: rgba(255,255,255,.04); border-color: rgba(255, 255, 255, .38); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.18); }

.btn--outline { background: transparent; border-color: var(--teal); color: var(--teal); box-shadow: none; }
.btn--outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(47, 111, 176, .26); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* buttons that shouldn't show the sliding arrow (full-width form submits, small nav CTA) */
.btn--noarrow::after, .nav-cta .btn::after { content: none; }
@media (prefers-reduced-motion: reduce) {
  .btn::before, .btn::after, .btn { transition: none; }
  .btn:hover::before { transform: translateX(-130%); }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 52px; width: auto; display: block; }
@media (max-width: 460px) { .brand-logo { height: 44px; } }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links a {
  display: block; padding: 10px 14px; color: var(--ink); font-weight: 500;
  font-size: .93rem; border-radius: 8px; transition: all .2s var(--ease); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--bg-soft-2); }
.nav-cta { margin-left: 10px; }

/* dropdown */
.has-drop > a::after { content: "▾"; font-size: .7rem; margin-left: 6px; opacity: .6; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all .25s var(--ease);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 9px 14px; font-size: .9rem; border-radius: 9px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: calc(var(--header-h) + 80px) 0 100px;
  background: linear-gradient(150deg, var(--navy) 0%, #0c3057 55%, var(--sea) 100%);
  color: #eaf2fa; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(14, 154, 167, .35), transparent 45%),
                    radial-gradient(circle at 15% 85%, rgba(244, 183, 63, .18), transparent 40%);
}
/* wave removed — the section following the hero is navy, not white,
   so a white wave overlapped/"touched" the stats numbers below. */
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 18px; }
.hero h1 .accent { color: var(--gold); }
.hero p.lead { font-size: 1.15rem; color: #cdddec; max-width: 560px; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-badge { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); padding: 7px 16px; border-radius: 40px; font-size: .82rem; font-weight: 500; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero-float .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--teal); }
.hero-float .lbl { font-size: .78rem; color: var(--muted); line-height: 1.25; }
.hero-float.f1 { bottom: 24px; left: -26px; }
.hero-float.f2 { top: 24px; right: -22px; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  position: relative; padding: calc(var(--header-h) + 70px) 0 70px;
  background: linear-gradient(150deg, var(--navy), var(--sea));
  color: #fff; text-align: center; overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(14, 154, 167, .35), transparent 45%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.page-banner p { color: #cddcec; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.crumbs { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; font-size: .85rem; color: #a9c2d8; }
.crumbs a { color: var(--gold); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(14, 154, 167, .14), rgba(18, 85, 126, .14));
  color: var(--teal); margin-bottom: 18px;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; }
.card p { font-size: .95rem; margin-bottom: 0; }

/* program / focus card w/ list */
.list-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); height: 100%; transition: transform .3s var(--ease), box-shadow .3s; }
.list-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.list-card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.18rem; margin-bottom: 18px; }
.list-card h3 .badge-ico { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, var(--navy), var(--sea)); color: var(--gold); display: grid; place-items: center; flex: none; }
.list-card h3 .badge-ico svg { width: 22px; height: 22px; }
.tick-list li { position: relative; padding: 7px 0 7px 30px; font-size: .94rem; color: var(--ink); border-bottom: 1px dashed var(--line); }
.tick-list li:last-child { border-bottom: none; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(14, 154, 167, .12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e9aa7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* pill / chip lists */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 12px 22px;
  font-weight: 500; font-size: .95rem; color: var(--navy); box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease); display: inline-flex; align-items: center; gap: 9px;
}
.chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.chip:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--teal); box-shadow: var(--shadow); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 26px 16px; }
.stat .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold); line-height: 1; }
.stat .lbl { margin-top: 10px; font-size: .92rem; letter-spacing: .04em; color: #cddcec; }
.section--navy .stat .lbl { color: #cddcec; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; width: 100%; aspect-ratio: 5/4.3; }
.media-frame { position: relative; }
.media-frame .tag {
  position: absolute; bottom: 22px; left: 22px; background: #fff; border-radius: 14px;
  padding: 14px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.media-frame .tag .ico { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--teal), var(--sea)); display: grid; place-items: center; color: #fff; }
.media-frame .tag strong { display: block; font-family: 'Poppins', sans-serif; color: var(--navy); }
.media-frame .tag span { font-size: .82rem; color: var(--muted); }

/* ---------- Value / vision-mission ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vm-card { border-radius: var(--radius); padding: 36px; color: #fff; position: relative; overflow: hidden; }
.vm-card.vision { background: linear-gradient(150deg, var(--navy), var(--sea)); }
.vm-card.mission { background: linear-gradient(150deg, var(--teal), #0b6e78); }
.vm-card h3 { color: #fff; font-size: 1.5rem; display: flex; align-items: center; gap: 12px; }
.vm-card .vm-ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(255, 255, 255, .16); display: grid; place-items: center; }
.vm-card p, .vm-card li { color: rgba(255, 255, 255, .92); }
.vm-card .tick-list li { border-color: rgba(255, 255, 255, .18); }
.vm-card .tick-list li::before { background-color: rgba(255, 255, 255, .2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* ---------- Core values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value {
  text-align: center; padding: 30px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all .3s var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value .v-ico { width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 16px; background: linear-gradient(135deg, rgba(244,183,63,.18), rgba(226,157,36,.18)); color: var(--gold-2); display: grid; place-items: center; }
.value h4 { font-size: 1.05rem; margin: 0; }

/* ---------- Team ---------- */
.team-layout { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 30px; align-items: start; }
.team-col { display: grid; gap: 24px; }
.team-frame {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; text-align: center; transition: all .3s var(--ease);
}
.team-frame:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-photo {
  aspect-ratio: 1; background: linear-gradient(150deg, var(--bg-soft-2), #dbe6f0);
  display: grid; place-items: center; color: var(--sea);
}
.team-photo svg { width: 46px; height: 46px; opacity: .5; }
.team-frame .t-body { padding: 16px; }
.team-frame .t-body strong { display: block; color: var(--navy); font-family: 'Poppins', sans-serif; font-size: .98rem; }
.team-frame .t-body span { font-size: .8rem; color: var(--teal); }
.team-center { text-align: center; padding: 20px; }
.team-center .ring { width: 96px; height: 96px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--teal)); display: grid; place-items: center; color: var(--gold); box-shadow: var(--shadow); }

/* ---------- Logos ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.logo-box {
  aspect-ratio: 3/1.6; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  display: grid; place-items: center; color: var(--muted); font-weight: 600; font-size: .82rem;
  box-shadow: var(--shadow-sm); transition: all .3s var(--ease); text-align: center; padding: 10px;
}
.logo-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--teal); }

/* ---------- Accordion ---------- */
.accordion { max-width: 860px; margin: 0 auto; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.acc-head { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-head .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft-2); display: grid; place-items: center; color: var(--teal); font-size: 1.2rem; transition: all .3s var(--ease); }
.acc-item.open .acc-head .plus { background: var(--teal); color: #fff; transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-body-inner { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Timeline (news/events) ---------- */
.media-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 42px; }
.media-tab { padding: 11px 26px; border-radius: 50px; border: 1px solid var(--line); background: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--navy); cursor: pointer; transition: all .25s var(--ease); }
.media-tab.active { background: linear-gradient(135deg, var(--teal), var(--sea)); color: #fff; border-color: transparent; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s var(--ease); height: 100%; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-media { aspect-ratio: 16/9; background: linear-gradient(150deg, var(--navy), var(--sea)); position: relative; overflow: hidden; }
.news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 40px; font-family: 'Poppins', sans-serif; }
.news-body { padding: 22px 24px 26px; }
.news-date { font-size: .8rem; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.news-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.news-body p { font-size: .92rem; margin-bottom: 0; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Forms ---------- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 8px; font-family: 'Poppins', sans-serif; }
.field label .req { color: #e0564f; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--bg-soft); transition: all .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(14, 154, 167, .12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-status { padding: 14px 18px; border-radius: 11px; font-weight: 500; margin-bottom: 20px; display: none; }
.form-status.ok { display: block; background: rgba(14, 154, 167, .12); color: #0b6e78; border: 1px solid rgba(14, 154, 167, .3); }

/* contact info blocks */
.contact-info { display: grid; gap: 18px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.info-item .ico { width: 48px; height: 48px; border-radius: 12px; flex: none; background: linear-gradient(135deg, var(--teal), var(--sea)); display: grid; place-items: center; color: #fff; }
.info-item h4 { margin: 0 0 4px; font-size: 1rem; }
.info-item p { margin: 0; font-size: .93rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--sea)); border-radius: var(--radius-lg); padding: 56px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(14,154,167,.4), transparent 45%), radial-gradient(circle at 85% 80%, rgba(244,183,63,.25), transparent 45%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-band p { color: #cddcec; max-width: 600px; margin: 0 auto 26px; }

/* ---------- Career job cards ---------- */
.job-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); transition: all .3s var(--ease); }
.job-card:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: var(--teal); }
.job-card .j-ico { width: 52px; height: 52px; border-radius: 13px; flex: none; background: linear-gradient(135deg, rgba(14,154,167,.14), rgba(18,85,126,.14)); color: var(--teal); display: grid; place-items: center; }
.job-card .j-main { flex: 1; }
.job-card h3 { margin: 0 0 3px; font-size: 1.1rem; }
.job-card p { margin: 0; font-size: .88rem; }
.job-card .j-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.j-tag { font-size: .72rem; background: var(--bg-soft-2); color: var(--sea); padding: 3px 10px; border-radius: 30px; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b4c7d8; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; }
.footer-brand { display: inline-flex; flex-direction: column; line-height: 1.15; margin-bottom: 18px; }
.footer-brand strong { font-family: 'Poppins', sans-serif; color: #fff; font-size: 1.35rem; letter-spacing: .2px; }
.footer-brand span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-2); font-weight: 600; margin-top: 2px; }
.footer-about p { color: #9fb4c6; font-size: .92rem; margin-top: 4px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #9fb4c6; font-size: .92rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .9rem; color: #9fb4c6; }
.footer-contact svg { flex: none; margin-top: 3px; color: var(--teal); }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #cdddec; transition: all .25s var(--ease); }
.social a:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: #8ba3b8; }
.footer-bottom a { color: #b4c7d8; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Scroll to top ---------- */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--sea)); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .3s var(--ease); z-index: 900; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-layout { grid-template-columns: 1fr 1fr; }
  .team-center { grid-column: 1 / -1; order: -1; }
}
@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column;
    align-items: stretch; background: #fff; padding: 16px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .35s var(--ease); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .has-drop:hover .dropdown { transform: none; }
  .nav-cta { margin: 8px 0 0; }
  .nav-links a { padding: 12px 14px; }
}
@media (max-width: 760px) {
  .section { padding: 62px 0; }
  .g-2, .g-3, .g-4, .vm-grid, .split, .stats, .values-grid, .logo-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .team-layout { grid-template-columns: 1fr; }
  .hero-float.f1 { left: 10px; }
  .hero-float.f2 { right: 10px; }
  .cta-band, .form-wrap { padding: 32px 22px; }
  .job-card { flex-wrap: wrap; }
  .split { gap: 34px; }
}
@media (max-width: 460px) {
  .stats, .values-grid, .logo-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}
