/* ==========================================================================
   Ganada Educational Consultancy — design system v2
   Clean & professional. Brand colours from the logo: royal blue #0b439d + red #ce2838.
   Type: Manrope (headings) + Inter (body).
   ========================================================================== */
:root {
  --blue: #0b439d;
  --blue-d: #082f70;
  --blue-l: #1d5bc0;
  --sky: #eaf1fb;
  --sky-2: #f4f8fd;
  --navy: #0b2350;
  --red: #ce2838;
  --red-d: #a81f2d;
  --red-soft: #fdecee;
  --ink: #16233d;
  --muted: #5b6b85;
  --bg: #ffffff;
  --bg-soft: #f6f9fd;
  --line: rgba(11, 67, 157, 0.12);
  --line-2: rgba(11, 67, 157, 0.07);
  --sh-xs: 0 1px 2px rgba(16, 24, 40, 0.04);
  --sh-sm:
    0 2px 4px rgba(11, 35, 80, 0.04), 0 6px 16px -8px rgba(11, 35, 80, 0.1);
  --sh-md: 0 10px 30px -12px rgba(11, 35, 80, 0.16);
  --sh-lg: 0 30px 60px -30px rgba(11, 35, 80, 0.34);
  --r: 16px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
  font-weight: 800;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: rgba(11, 67, 157, 0.16);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrap-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5.5rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}
.sec-head {
  max-width: 640px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.h-display {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.06;
}
.h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
}
.lead {
  font-size: 1.075rem;
  color: var(--muted);
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Manrope";
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.eyebrow.center::after {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.eyebrow.on-dark {
  color: #7fb0ee;
}
.hl {
  color: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 0.85rem 1.6rem;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.25s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  line-height: 1;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(11, 67, 157, 0.7);
}
.btn-primary:hover {
  background: var(--blue-d);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(206, 40, 56, 0.7);
}
.btn-accent:hover {
  background: var(--red-d);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--sky);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
}
.btn-light:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.btn-arrow svg {
  transition: transform 0.22s;
}
.btn:hover .btn-arrow svg,
.group:hover .btn-arrow svg {
  transform: translateX(3px);
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
}
.link-more svg {
  transition: transform 0.2s;
}
.group:hover .link-more svg {
  transform: translateX(3px);
}

/* Top bar + header */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}
.topbar a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}
.nav-wrap {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.25s;
}
#nav.shadow-on {
  box-shadow: 0 12px 30px -22px rgba(11, 35, 80, 0.4);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 0.6rem;
  text-transform: uppercase;
  font-family: "Manrope";
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
}
.brand img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.brand .bn {
  font-family: "Manrope";
  font-weight: 800;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand .bs {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}
.nav-link {
  position: relative;
  color: var(--ink);
  font-family: "Manrope";
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.4rem 0;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--blue);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.28s;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.has-menu > .menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
}
.has-menu:hover > .menu,
.has-menu:focus-within > .menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--sh-lg);
  padding: 0.4rem;
}
.menu-card a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}
.menu-card a:hover {
  background: var(--sky);
  color: var(--blue);
}

/* ===================== HERO (full-bleed + frosted panel) ===================== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(83vh, 74vh, 720px);
  background: var(--bg-soft);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.88) 30%,
    rgba(246, 249, 253, 0.42) 58%,
    rgba(246, 249, 253, 0) 100%
  ); */
}
.hero-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 67, 157, 0.05),
    rgba(11, 67, 157, 0) 42%
  );
}
.hero > .wrap-wide {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-panel {
  max-width: 590px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: var(--sh-lg);
  padding: 2.6rem 2.8rem;
}
.hero-tag {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--blue);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.hero-tag span {
  color: var(--red);
  opacity: 0.6;
}
.hero-title {
  font-family: "Manrope";
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
  margin-top: 1.15rem;
  max-width: 31rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}
@media (max-width: 767px) {
  .hero {
    min-height: 0;
    padding: 3.5rem 0;
  }
  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9),
      rgba(246, 249, 253, 0.72)
    );
  }
  .hero-panel {
    padding: 1.9rem 1.6rem;
    background: rgba(255, 255, 255, 0.84);
  }
}

/* Feature strip */
.fstrip {
  background: var(--blue);
  color: #fff;
}
.fstrip-in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}
@media (min-width: 768px) {
  .fstrip-in {
    grid-template-columns: repeat(4, 1fr);
  }
}
.fitem {
  background: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.5rem 1.75rem;
}
.fitem .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  flex: none;
}
.fitem .t {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
}
.fitem .s {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(11, 67, 157, 0.4);
}

/* Service / why icon badge */
.ic-badge {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
}
.ic-badge svg {
  width: 28px;
  height: 28px;
}
.ic-blue {
  background: linear-gradient(150deg, #2f6fd0, #0b439d);
}
.ic-red {
  background: linear-gradient(150deg, #e0455f, #ce2838);
}
.ic-navy {
  background: linear-gradient(150deg, #1d5bc0, #0b2350);
}
.ic-soft {
  background: var(--sky);
  color: var(--blue);
}
.ic-soft-red {
  background: var(--red-soft);
  color: var(--red);
}

/* Stats */
.stat {
  text-align: center;
}
.stat .ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: var(--sky);
  color: var(--blue);
  border: 1px solid var(--line);
}
.stat .n {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--navy);
  line-height: 1;
  margin-top: 1rem;
}
.stat .l {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-top: 0.35rem;
}
.stat .s {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Destination cards */
.dcard {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.dcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.dcard-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.dcard:hover .dcard-img img {
  transform: scale(1.07);
}
.dcard-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 35, 80, 0) 42%,
    rgba(8, 35, 80, 0.8)
  );
}
.dcard-flag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: var(--sh-xs);
}
.dcard-b {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  color: #fff;
}
.dcard-b .t {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 1.15rem;
}
.dcard-b .s {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

/* Process steps */
.step {
  position: relative;
  text-align: center;
}
.step .num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid var(--sky);
  color: var(--blue);
  font-family: "Manrope";
  font-weight: 800;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}
.step .ic {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(24px);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
}
.step .ic svg {
  width: 15px;
  height: 15px;
}
.steprow {
  position: relative;
}
.steprow::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
@media (max-width: 767px) {
  .steprow::before {
    display: none;
  }
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Manrope";
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue);
  border: 1px solid var(--line);
}
.chip-red {
  background: var(--red-soft);
  color: var(--red);
  border-color: rgba(206, 40, 56, 0.18);
}

/* Dark section */
.dark {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark h2,
.dark h3 {
  color: #fff;
}
.dark .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}

/* Blog cards */
.bcard-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.bcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card-hover:hover .bcard-img img {
  transform: scale(1.05);
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0b2350, #082f70 60%, #0b439d);
}
.page-hero .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.breadcrumb a {
  color: #9dc2f2;
}
.breadcrumb {
  color: rgba(255, 255, 255, 0.6);
}

/* Prose */
.prose {
  color: #33405c;
  font-size: 1.04rem;
  line-height: 1.8;
}
.prose > * + * {
  margin-top: 1.1rem;
}
.prose h2 {
  font-size: 1.55rem;
  margin-top: 2.4rem;
}
.prose h3 {
  font-size: 1.22rem;
  margin-top: 1.8rem;
}
.prose a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prose ul li {
  position: relative;
  padding-left: 1.7rem;
  margin-top: 0.55rem;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
}
.prose blockquote {
  border-left: 3px solid var(--red);
  background: var(--sky-2);
  padding: 1.1rem 1.3rem;
  border-radius: 0 12px 12px 0;
  color: var(--navy);
  font-weight: 500;
}

/* Forms */
.field {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 0.98rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: inherit;
}
.field:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 67, 157, 0.1);
}
.label {
  font-family: "Manrope";
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  display: block;
}
.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: none;
}

/* Reveal / utils */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}
.reveal {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--blue), var(--red));
  box-shadow: 0 0 12px rgba(11, 67, 157, 0.5);
}
#toTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  background: var(--blue);
  color: #fff;
  box-shadow: var(--sh-md);
}
#toTop.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.68);
}
.footer h4 {
  color: #fff;
  font-family: "Manrope";
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.footer .dev-by {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer .dev-by:hover {
  opacity: 1;
}
.footer .dev-by img {
  height: 24px;
  width: auto;
}
.footer a:hover {
  color: #9dc2f2;
}
.soc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.soc:hover {
  background: var(--red);
  color: #fff;
}

/* Testimonials */
.tst-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.25s;
  cursor: pointer;
  border: 0;
}
.tst-dot.active {
  background: var(--red);
  width: 26px;
}

/* ===================== MOBILE NAV ===================== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.burger:hover {
  background: var(--sky);
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
@media (max-width: 1279px) {
  .burger {
    display: inline-flex;
  }
}
body.nav-open .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .burger span:nth-child(2) {
  opacity: 0;
}
body.nav-open .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 42, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 70;
}
body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}
.mnav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(88vw, 380px);
  background: #fff;
  z-index: 71;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 70px -24px rgba(8, 20, 42, 0.55);
}
body.nav-open .mnav {
  transform: none;
}
.mnav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
.mnav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.mnav-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.mnav-close:hover {
  background: var(--sky);
  border-color: var(--red);
  color: var(--red);
}
.mnav-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem 1rem;
}
.mnav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 0.8rem;
  border-radius: 12px;
  font-family: "Manrope";
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.mnav-link:hover {
  background: var(--sky);
}
.mnav-chev {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
.mnav-acc.open > .mnav-acc-btn .mnav-chev {
  transform: rotate(180deg);
}
.mnav-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.mnav-sub {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.15rem 0.3rem 0.6rem 1.05rem;
}
.mnav-sub a {
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
}
.mnav-sub a:hover {
  background: var(--sky);
  color: var(--blue);
}
.mnav-foot {
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--line);
}
.mnav-contact {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.mnav-contact a {
  color: var(--navy);
  font-weight: 600;
}
@media (min-width: 1280px) {
  .mnav,
  .nav-overlay {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
