/* =========================================================
   Vibrant College — Brand Stylesheet
   Palette drawn from the logo: deep teal, fresh green, red accent
   ========================================================= */

:root {
  /* Brand */
  --teal-900: #0a3947;
  --teal-800: #0e4c60;
  --teal-700: #125f77;
  --teal:     #146c86;   /* primary */
  --teal-400: #2f8ba6;
  --teal-200: #bfe0ea;

  --green-800: #3f7d27;
  --green-700: #4d9330;
  --green:     #6cbe45;   /* secondary */
  --green-300: #a6df86;
  --green-100: #e9f7de;

  --red:      #d83a34;    /* accent */
  --red-dark: #b62a25;

  /* Neutrals */
  --ink:    #10242c;
  --slate:  #4f636b;
  --muted:  #7a8a90;
  --cloud:  #f2f8fa;
  --cloud-2:#e8f2f5;
  --line:   #e0eaee;
  --white:  #ffffff;

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(16,36,44,.06);
  --shadow:    0 14px 40px rgba(16,36,44,.10);
  --shadow-lg: 0 30px 70px rgba(16,36,44,.16);
  --ring: 0 0 0 4px rgba(20,108,134,.16);

  --grad-teal: linear-gradient(135deg, var(--teal-800) 0%, var(--teal) 55%, var(--teal-400) 100%);
  --grad-hero: linear-gradient(120deg, var(--teal-900) 0%, var(--teal-700) 48%, var(--teal-400) 100%);
  --grad-green: linear-gradient(135deg, var(--green-700), var(--green));

  --container: 1180px;
  --header-h: 78px;

  --ff-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--ff-head); line-height: 1.15; color: var(--ink); font-weight: 700; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--cloud { background: var(--cloud); }
.section--ink { background: var(--teal-900); color: #dff0f5; }

.grid { display: grid; gap: 30px; }
@media (min-width: 760px){ .g-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px){ .g-3 { grid-template-columns: repeat(3,1fr); } .g-4 { grid-template-columns: repeat(4,1fr); } }

/* ---------- Headings / helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); 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(--green); border-radius: 2px; }
.section--ink .eyebrow, .cta-band .eyebrow { color: var(--green-300); }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -.02em; }
.lead { font-size: 1.12rem; color: var(--slate); margin-top: 16px; }
.section--ink .section-title { color: #fff; }
.section--ink .lead { color: #b9d7df; }
.text-green { color: var(--green-700); }
.text-teal { color: var(--teal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; transition: .25s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(20,108,134,.30); }
.btn-primary:hover { background: var(--teal-800); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(20,108,134,.36); }
.btn-green { background: var(--green); color: #0b3007; box-shadow: 0 10px 24px rgba(108,190,69,.32); }
.btn-green:hover { background: var(--green-700); color:#fff; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--line); color: var(--ink); background:#fff; padding: 12px 24px; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.14); color:#fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--teal-800); transform: translateY(-2px); }
.btn-ghost { color: var(--teal); padding: 12px 8px; }
.btn-ghost:hover { color: var(--teal-800); gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand .brand-fallback { font-family: var(--ff-head); font-weight: 700; font-size: 1.35rem; color: var(--teal); }
.brand .brand-fallback span { color: var(--green-700); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: inline-flex; align-items:center; gap:6px;
  font-family: var(--ff-head); font-weight: 500; font-size: .97rem;
  padding: 10px 15px; border-radius: 999px; color: var(--ink); transition: .2s;
}
.nav-links > li > a:hover { color: var(--teal); background: var(--cloud); }
.nav-links > li > a.active { color: var(--teal); }
.nav-links > li > a.active::after,
.nav-links .has-menu > a::after { }

/* dropdown */
.has-menu { position: relative; }
.has-menu > a .caret { width: 14px; height: 14px; transition: transform .2s; }
.has-menu:hover > a .caret { transform: rotate(180deg); }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: .2s;
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: flex; gap: 12px; align-items: flex-start; padding: 11px 12px; border-radius: 10px; transition: .18s; }
.submenu a:hover { background: var(--cloud); }
.submenu .mi-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); flex: none; }
.submenu a:nth-child(2) .mi-ic { background: #e4f0f4; color: var(--teal); }
.submenu strong { font-family: var(--ff-head); font-size: .95rem; display: block; }
.submenu small { color: var(--muted); font-size: .82rem; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); color: var(--teal); }
.nav-toggle svg { width: 24px; height: 24px; margin: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; }
.hero::before {
  content:""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero-blob { position:absolute; border-radius:50%; filter: blur(10px); opacity:.5; pointer-events:none; }
.hero-blob.a { width: 420px; height:420px; background: radial-gradient(circle, rgba(108,190,69,.55), transparent 65%); top:-120px; right:-80px; }
.hero-blob.b { width: 360px; height:360px; background: radial-gradient(circle, rgba(47,139,166,.6), transparent 65%); bottom:-160px; left:-100px; }
.hero-inner { position: relative; display: grid; gap: 44px; align-items: center; padding: 84px 0 92px; }
@media (min-width: 940px){ .hero-inner { grid-template-columns: 1.05fr .95fr; padding: 96px 0; } }

.hero-badge {
  display:inline-flex; align-items:center; gap:10px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28); padding: 7px 16px 7px 8px; border-radius: 999px;
  font-size: .85rem; font-weight: 500; margin-bottom: 24px;
}
.hero-badge b { background: var(--green); color:#0b3007; font-family: var(--ff-head); font-size:.72rem; font-weight:700; padding: 4px 10px; border-radius: 999px; letter-spacing:.03em; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.75rem); letter-spacing: -.025em; color:#fff; }
.hero h1 .hl { color: var(--green-300); }
.hero p.hero-sub { font-size: 1.18rem; color: #cfe6ed; margin-top: 22px; max-width: 560px; }
.hero-actions { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display:flex; flex-wrap:wrap; gap: 26px; margin-top: 40px; }
.hero-trust .ht { display:flex; flex-direction:column; }
.hero-trust .ht b { font-family: var(--ff-head); font-size: 1.7rem; color:#fff; line-height:1; }
.hero-trust .ht span { font-size: .84rem; color:#a9cfd9; margin-top:6px; }
.hero-trust .div { width:1px; background: rgba(255,255,255,.2); }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden;
  border: 6px solid rgba(255,255,255,.14); aspect-ratio: 4/4.2; object-fit: cover; width:100%;
}
.hero-card {
  position: absolute; background: #fff; color: var(--ink);
  border-radius: 16px; box-shadow: var(--shadow-lg); padding: 16px 18px;
  display:flex; align-items:center; gap: 13px;
}
.hero-card .hc-ic { width: 44px; height:44px; border-radius: 12px; display:grid; place-items:center; flex:none; }
.hero-card small { color: var(--muted); font-size: .78rem; display:block; }
.hero-card b { font-family: var(--ff-head); font-size: 1rem; }
.hero-card.c1 { bottom: 26px; left: -22px; }
.hero-card.c1 .hc-ic { background: var(--green-100); color: var(--green-700); }
.hero-card.c2 { top: 22px; right: -18px; }
.hero-card.c2 .hc-ic { background: #e4f0f4; color: var(--teal); }
@media (max-width: 520px){ .hero-card { display: none; } }

/* wave separator */
.wave { display:block; width:100%; height: 60px; }

/* ---------- Marquee / affiliation strip ---------- */
.affil {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 22px 0; display:flex; align-items:center; justify-content:center;
  flex-wrap: wrap; gap: 14px 40px; text-align:center;
}
.affil p { font-family: var(--ff-head); font-weight:500; color: var(--slate); font-size:.98rem; }
.affil b { color: var(--teal); }

/* ---------- Stats ---------- */
.stat-grid { display:grid; gap: 26px; grid-template-columns: repeat(2,1fr); }
@media(min-width: 800px){ .stat-grid { grid-template-columns: repeat(4,1fr); } }
.stat { text-align:center; padding: 30px 16px; border-radius: var(--radius); background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--ff-head); font-weight:700; font-size: clamp(2.2rem,4vw,3rem); color: var(--teal); line-height:1; letter-spacing:-.02em; }
.stat .num .suffix { color: var(--green); }
.stat .lbl { margin-top: 10px; color: var(--slate); font-size: .95rem; font-weight:500; }

/* ---------- Cards / features ---------- */
.card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: .3s; height:100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-200); }
.feature .fic {
  width: 58px; height: 58px; border-radius: 15px; display:grid; place-items:center;
  background: var(--grad-teal); color:#fff; margin-bottom: 20px; box-shadow: 0 10px 20px rgba(20,108,134,.22);
}
.feature:nth-child(3n+2) .fic { background: var(--grad-green); box-shadow: 0 10px 20px rgba(108,190,69,.24); }
.feature:nth-child(3n+3) .fic { background: linear-gradient(135deg, var(--red), #e8695f); box-shadow: 0 10px 20px rgba(216,58,52,.22); }
.feature .fic svg { width: 28px; height:28px; }
.feature h3 { font-size: 1.24rem; margin-bottom: 10px; }
.feature p { color: var(--slate); font-size: .98rem; }

/* ---------- Program cards ---------- */
.prog-card {
  position:relative; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: var(--shadow-sm); transition:.3s; display:flex; flex-direction:column; height:100%;
}
.prog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prog-media { position:relative; aspect-ratio: 16/9; overflow:hidden; }
.prog-media img { width:100%; height:100%; object-fit:cover; transition: .5s; }
.prog-card:hover .prog-media img { transform: scale(1.06); }
.prog-media .tag {
  position:absolute; top: 16px; left: 16px; background: rgba(255,255,255,.95);
  color: var(--teal-800); font-family: var(--ff-head); font-weight:600; font-size:.8rem;
  padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.prog-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(10,57,71,.35)); }
.prog-body { padding: 28px; display:flex; flex-direction:column; flex:1; }
.prog-body h3 { font-size: 1.5rem; }
.prog-body .deg { color: var(--green-700); font-weight:600; font-family: var(--ff-head); font-size:.9rem; margin-top:4px; }
.prog-body p { color: var(--slate); margin-top: 14px; font-size: .99rem; }
.prog-meta { display:flex; gap: 22px; margin: 22px 0; flex-wrap:wrap; }
.prog-meta .pm { display:flex; align-items:center; gap:9px; font-size:.9rem; color: var(--slate); }
.prog-meta .pm svg { width:18px; height:18px; color: var(--teal); }
.prog-body .btn { margin-top: auto; align-self:flex-start; }

/* ---------- Split content ---------- */
.split { display:grid; gap: 50px; align-items:center; }
@media(min-width: 900px){ .split { grid-template-columns: 1fr 1fr; } .split.reverse .split-media { order: 2; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width:100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media .badge-float {
  position:absolute; right: -18px; bottom: -18px; background:#fff; border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 18px 22px; display:flex; align-items:center; gap:14px; max-width: 240px;
}
.split-media .badge-float .bf-ic { width:46px; height:46px; border-radius:12px; background: var(--grad-green); color:#fff; display:grid; place-items:center; flex:none; }
.split-media .badge-float b { font-family: var(--ff-head); display:block; font-size:1.05rem; }
.split-media .badge-float small { color: var(--muted); font-size:.8rem; }
@media(max-width:520px){ .split-media .badge-float { position: static; margin-top: 18px; max-width:none; } }

.ticklist { margin-top: 26px; display:grid; gap: 14px; }
.ticklist li { display:flex; gap: 13px; align-items:flex-start; color: var(--slate); }
.ticklist li svg { width: 22px; height:22px; color: var(--green); flex:none; margin-top:1px; }
.ticklist li b { color: var(--ink); font-family: var(--ff-head); font-weight:600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color:#fff; overflow:hidden; }
.cta-band .bg { position:absolute; inset:0; object-fit:cover; width:100%; height:100%; }
.cta-band .ov { position:absolute; inset:0; background: linear-gradient(115deg, rgba(10,57,71,.94) 20%, rgba(18,95,119,.82) 60%, rgba(20,108,134,.6)); }
.cta-band .inner { position:relative; padding: 92px 0; text-align:center; }
.cta-band h2 { font-size: clamp(1.9rem,4vw,2.9rem); color:#fff; letter-spacing:-.02em; }
.cta-band p { color:#cfe6ed; font-size:1.15rem; margin: 18px auto 0; max-width: 640px; }
.cta-band .btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:34px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: var(--grad-hero); color:#fff; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px); background-size: 24px 24px; opacity:.5; }
.page-hero .inner { position:relative; padding: 66px 0 72px; }
.page-hero h1 { font-size: clamp(2rem,4.4vw,3.1rem); color:#fff; letter-spacing:-.02em; }
.page-hero p { color:#cfe6ed; margin-top: 14px; max-width: 620px; font-size:1.1rem; }
.crumbs { display:flex; gap:8px; align-items:center; font-size:.88rem; color:#a9cfd9; margin-bottom: 18px; }
.crumbs a:hover { color:#fff; }
.crumbs span { opacity:.6; }

/* ---------- Steps (admissions) ---------- */
.steps { counter-reset: step; display:grid; gap: 22px; }
.step { display:flex; gap: 22px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); position:relative; }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-family: var(--ff-head); font-weight:700; font-size: 1.5rem; color: var(--teal);
  background: var(--cloud-2); width: 62px; height: 62px; border-radius: 16px; display:grid; place-items:center; flex:none;
}
.step h3 { font-size: 1.18rem; margin-bottom: 6px; }
.step p { color: var(--slate); font-size: .97rem; }

/* ---------- Table ---------- */
.table-wrap { overflow-x:auto; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.info { width:100%; border-collapse: collapse; min-width: 520px; background:#fff; }
table.info th, table.info td { text-align:left; padding: 15px 20px; border-bottom: 1px solid var(--line); font-size:.97rem; }
table.info thead th { background: var(--teal-900); color:#fff; font-family: var(--ff-head); font-weight:600; font-size:.9rem; letter-spacing:.02em; }
table.info tbody tr:last-child td { border-bottom:none; }
table.info tbody tr:nth-child(even) { background: var(--cloud); }
table.info td:first-child { font-weight:600; color: var(--ink); font-family: var(--ff-head); }

/* semester chips */
.sem-grid { display:grid; gap: 18px; }
@media(min-width:700px){ .sem-grid { grid-template-columns: repeat(2,1fr);} }
@media(min-width:1000px){ .sem-grid { grid-template-columns: repeat(4,1fr);} }
.sem { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.sem h4 { font-size: .95rem; color: var(--teal); text-transform:uppercase; letter-spacing:.06em; margin-bottom:12px; padding-bottom:12px; border-bottom:1px dashed var(--line); }
.sem ul { display:grid; gap:8px; }
.sem li { font-size:.92rem; color: var(--slate); display:flex; gap:8px; }
.sem li::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--green); margin-top:8px; flex:none; }

/* ---------- Testimonials ---------- */
.quote-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); height:100%; display:flex; flex-direction:column; }
.quote-card .stars { color: #f5b301; letter-spacing:2px; margin-bottom:14px; }
.quote-card p { color: var(--ink); font-size:1.02rem; flex:1; }
.quote-card .who { display:flex; align-items:center; gap:13px; margin-top:22px; }
.quote-card .who .av { width:48px; height:48px; border-radius:50%; background: var(--grad-teal); color:#fff; display:grid; place-items:center; font-family:var(--ff-head); font-weight:600; }
.quote-card .who b { font-family:var(--ff-head); font-size:.98rem; }
.quote-card .who small { color: var(--muted); display:block; font-size:.83rem; }

/* ---------- Accordion ---------- */
.accordion { display:grid; gap: 14px; }
.acc { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); overflow:hidden; }
.acc summary { list-style:none; cursor:pointer; padding: 20px 24px; font-family: var(--ff-head); font-weight:600; display:flex; justify-content:space-between; gap:16px; align-items:center; }
.acc summary::-webkit-details-marker { display:none; }
.acc summary .pm { width:26px; height:26px; border-radius:50%; background: var(--cloud-2); color: var(--teal); display:grid; place-items:center; flex:none; transition:.25s; font-size:1.2rem; }
.acc[open] summary .pm { background: var(--teal); color:#fff; transform: rotate(45deg); }
.acc .acc-body { padding: 0 24px 22px; color: var(--slate); }

/* ---------- Contact ---------- */
.contact-grid { display:grid; gap: 40px; }
@media(min-width: 940px){ .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.info-card { display:flex; gap:16px; padding: 22px; border:1px solid var(--line); border-radius: var(--radius); background:#fff; box-shadow: var(--shadow-sm); transition:.25s; }
.info-card:hover { border-color: var(--teal-200); transform: translateY(-3px); }
.info-card .ic { width:50px; height:50px; border-radius:13px; background: var(--grad-teal); color:#fff; display:grid; place-items:center; flex:none; }
.info-card h4 { font-size:1.02rem; margin-bottom:3px; }
.info-card a, .info-card p { color: var(--slate); font-size:.96rem; }
.info-card a:hover { color: var(--teal); }

.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display:block; font-family: var(--ff-head); font-weight:500; font-size:.9rem; margin-bottom:8px; }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 16px; border:1.5px solid var(--line); border-radius: 12px;
  font-family: var(--ff-body); font-size:1rem; color: var(--ink); background:#fbfdfe; transition:.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--teal); box-shadow: var(--ring); background:#fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display:grid; gap:18px; }
@media(min-width:560px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size:.85rem; color: var(--muted); margin-top:6px; }
.form-success { display:none; background: var(--green-100); border:1px solid var(--green-300); color: var(--green-800); padding: 14px 18px; border-radius:12px; font-size:.95rem; margin-bottom:18px; }
.form-success.show { display:block; }

.map-embed { border:0; width:100%; height:340px; border-radius: var(--radius); box-shadow: var(--shadow-sm); filter: saturate(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #b7d3dc; padding-top: 72px; }
.footer-top { display:grid; gap: 40px; padding-bottom: 52px; }
@media(min-width: 900px){ .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 50px; background:#fff; padding:9px 12px; border-radius:12px; }
.footer-brand p { margin-top: 18px; font-size:.95rem; color:#9fc2cd; max-width: 320px; }
.footer-social { display:flex; gap:10px; margin-top:22px; }
.footer-social a { width:40px; height:40px; border-radius:11px; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#cfe6ed; transition:.2s; }
.footer-social a:hover { background: var(--green); color:#0b3007; transform: translateY(-3px); }
.footer-col h4 { color:#fff; font-size:1.02rem; margin-bottom: 18px; }
.footer-col ul { display:grid; gap: 11px; }
.footer-col a, .footer-col li { font-size:.94rem; color:#a9cfd9; transition:.2s; }
.footer-col a:hover { color:#fff; padding-left: 4px; }
.footer-contact li { display:flex; gap:11px; align-items:flex-start; margin-bottom:14px; }
.footer-contact svg { width:19px; height:19px; color: var(--green-300); flex:none; margin-top:2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center; font-size:.88rem; color:#88b0bc; }
.footer-bottom a:hover { color:#fff; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } html { scroll-behavior:auto; } }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 50px; height:50px; border-radius:14px;
  background: var(--teal); color:#fff; display:grid; place-items:center; box-shadow: var(--shadow);
  opacity:0; visibility:hidden; transform: translateY(12px); transition:.3s; z-index: 55;
}
.to-top.show { opacity:1; visibility:visible; transform:none; }
.to-top:hover { background: var(--teal-800); }

/* ---------- Mobile nav ---------- */
@media (max-width: 940px) {
  .nav-toggle { display:grid; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 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(-120%); transition: transform .35s cubic-bezier(.4,0,.2,1); max-height: calc(100vh - var(--header-h)); overflow:auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li > a { padding: 14px 16px; font-size:1.05rem; }
  .submenu { position: static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding: 4px 4px 4px 20px; min-width:auto; }
  .has-menu > a .caret { display:none; }
  .nav-cta .btn-outline { display:none; }
}
@media (max-width: 400px){ .hero-trust .div { display:none; } }
