/* ==========================================================================   AEROPIONEER INSTITUTES — Design System   Palette drawn from the company crest: crimson red, aviation gold, ink black,   warm parchment white. Motif: concentric rings / radar sweep / instrument   dials, echoing the roundel in the logo.   ========================================================================== */:root {
  /* Colors */  --red-deep:      #8a0f1f;
  --red:           #b91c2c;
  --red-bright:    #d4223a;
  --gold:          #c99a3d;
  --gold-light:    #e3c580;
  --ink:           #1c1917;
  --ink-soft:      #3a332e;
  --parchment:     #fbf7ee;
  --parchment-dim: #f2ead9;
  --white:         #ffffff;
  --line:          rgba(28, 25, 23, 0.12);
  --line-gold:     rgba(201, 154, 61, 0.4);
  /* Type */  --font-display: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  /* Layout */  --max-width: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 8px;
  --radius-lg: 14px;
  
}

*, *::before, *::after {
  box-sizing: border-box;
  
}

html {
  scroll-behavior: smooth;
  
}

@media (prefers-reduced-motion: reduce) {
  html {
  scroll-behavior: auto;
  
}

*, *::before, *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  
}

}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: 0.01em;
  
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  
}

p {
  margin: 0 0 1em;
  max-width: 62ch;
  
}

a {
  color: var(--red);
  text-decoration: none;
  
}

a:hover {
  color: var(--red-bright);
  
}

img {
  max-width: 100%;
  display: block;
  
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  
}

/* Focus visibility */a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  
}

/* --------------------------------- Utility --------------------------------- */.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  
}

.section--dark {
  background: var(--ink);
  color: var(--parchment-dim);
  
}

.section--dark h2, .section--dark h3 {
  color: var(--white);
  
}

.section--dark p {
  color: rgba(251, 247, 238, 0.75);
  
}

.section--maroon {
  background: linear-gradient(160deg, var(--red-deep), var(--red) 70%);
  color: var(--parchment);
  
}

.section--maroon h2, .section--maroon h3 {
  color: var(--white);
  
}

.section--maroon p {
  color: rgba(251, 247, 238, 0.88);
  
}

.section--panel {
  background: var(--parchment-dim);
  
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.9em;
  
}

.kicker::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  
}

.section--dark .kicker, .section--maroon .kicker {
  color: var(--gold-light);
  
}

.lede {
  font-size: 1.15rem;
  max-width: 58ch;
  color: var(--ink-soft);
  
}

.section--dark .lede, .section--maroon .lede {
  color: rgba(251, 247, 238, 0.85);
  
}

.divider-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
  width: 100%;
  margin: 2.5rem 0;
  
}

/* --------------------------------- Buttons --------------------------------- */.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.7em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  
}

.btn:hover {
  transform: translateY(-1px);
  
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  
}

.btn--primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--white);
  
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
  
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  
}

.btn--outline-dark {
  background: var(--white);
  color: var(--red);
  border-color: var(--red);
  
}

.btn--outline-dark:hover {
  background: rgba(185,28,44,0.06);
  border-color: var(--red-bright);
  color: var(--red-bright);
  
}

/* --------------------------------- Header --------------------------------- */.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
  
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  
}

.brand img {
  height: 48px;
  width: 48px;
  
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.1;
  color: var(--ink);
  
}

.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--red);
  text-transform: uppercase;
  
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  
}

.main-nav a {
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  padding: 0.3rem 0;
  
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
  
}

.main-nav a:hover {
  color: var(--ink);
  
}

.main-nav a:hover::after, .main-nav a[aria-current="page"]::after {
  right: 0;
  
}

.main-nav a[aria-current="page"] {
  color: var(--red);
  
}

/* Keep the reused .float-btn--enquire pill looking exactly as it does when floating,   overriding the plain .main-nav a text-link styles it would otherwise inherit. */.main-nav a.float-btn--enquire {
  padding: 0.85em 1.4em;
  color: #fff;
  
}

.main-nav a.float-btn--enquire::after {
  display: none;
  
}

.main-nav a.float-btn--enquire:hover {
  color: #fff;
  
}

.has-dropdown {
  position: relative;
  
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.4em;
  position: relative;
  top: -2px;
  
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -1.2rem;
  min-width: 340px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(28,25,23,0.18);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
  
}

.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  
}

/* Mega menu: promo panel + service list, two columns */.dropdown--mega {
  left: auto;
  right: -1.4rem;
  padding: 0;
  display: flex;
  width: min(640px, 88vw);
  border-top: 3px solid var(--gold);
  
}

.dropdown__promo {
  flex: 0 0 230px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(160deg, var(--parchment-dim), var(--parchment));
  border-right: 1px solid var(--line);
  
}

.dropdown__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.6rem;
  
}

.dropdown__kicker::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  
}

.dropdown__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 0.55rem;
  
}

.dropdown__heading span {
  color: var(--red);
  
}

.dropdown__promo-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 1rem;
  
}

.dropdown__promo-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(28,25,23,0.16);
  margin-top: auto;
  
}

.dropdown__promo-media img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: cover;
  
}

.dropdown__promo-tag {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--red-deep);
  margin: 0.7rem 0 0;
  
}

.dropdown__promo-tag::after {
  content: '';
  display: block;
  height: 1px;
  width: 80%;
  margin-top: 2px;
  background: var(--line-gold);
  
}

.dropdown__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.55rem;
  
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-radius: var(--radius-sm);
  
}

.dropdown a.dropdown__item {
  padding: 0.65rem 0.7rem;
  white-space: nowrap;
  
}

.dropdown a.dropdown__item::after {
  display: none;
  
}

.dropdown__item:hover {
  background: var(--parchment-dim);
  
}

.dropdown__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(185, 28, 44, 0.09);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  
}

.dropdown__icon svg {
  width: 20px;
  height: 20px;
  
}

.dropdown__item:hover .dropdown__icon {
  background: var(--red);
  color: #fff;
  box-shadow: 0 3px 0 var(--red-deep), 0 6px 12px rgba(138, 15, 31, 0.22);
  
}

.dropdown__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  white-space: normal;
  flex: 1;
  
}

.dropdown__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  
}

.dropdown__item:hover .dropdown__title {
  color: var(--red);
  
}

.dropdown__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 0.85;
  line-height: 1.35;
  
}

.dropdown__item-arrow {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--ink-soft);
  opacity: 0.5;
  transition: transform 0.18s ease, color 0.18s ease, opacity 0.18s ease;
  
}

.dropdown__item-arrow svg {
  width: 16px;
  height: 16px;
  
}

.dropdown__item:hover .dropdown__item-arrow {
  color: var(--red);
  opacity: 1;
  transform: translateX(3px);
  
}

@media (max-width: 1080px) {
  .dropdown--mega {
  width: min(420px, 88vw);
  
}

.dropdown__promo {
  display: none;
  
}

}

.mobile-nav__services summary {
  cursor: pointer;
  list-style: none;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.75rem;

}

.mobile-nav__services summary::-webkit-details-marker {
  display: none;
  
}

.mobile-nav__services .mobile-nav__link-text {
  flex: 1;
  
}

.mobile-nav__services .mobile-nav__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  
}

.mobile-nav__services[open] summary {
  color: var(--red);
  background: rgba(185, 28, 44, 0.1);
  border-radius: var(--radius-lg);
  
}

.mobile-nav__services[open] .mobile-nav__chevron {
  transform: rotate(-135deg);
  opacity: 1;
  
}

.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  padding: 0.1rem 0.6rem 0.3rem 2.55rem;
  
}

.mobile-nav__sub a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.3rem 0.4rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  
}

.mobile-nav__sub a:hover, .mobile-nav__sub a:active {
  color: var(--red);
  background: var(--parchment-dim);
  
}

.mobile-nav__sub a:first-child {
  color: var(--red);
  font-weight: 600;

}

.mobile-nav__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--ink-soft);
  opacity: 0.5;
  flex-shrink: 0;
  
}

.mobile-nav__sub a:first-child .mobile-nav__dot {
  background: var(--red);
  border-color: var(--red);
  opacity: 1;
  
}

.nav-cta {
  display: none;
  
}

@media (min-width: 860px) {
  .nav-cta {
  display: inline-flex;
  
}

}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(185, 28, 44, 0.1);
  border: 1.5px solid var(--red);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;

}

.nav-toggle:hover {
  background: rgba(185, 28, 44, 0.18);

}

.nav-toggle:active {
  transform: scale(0.94);

}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--red);
  position: relative;
  border-radius: 3px;
  transition: background 0.2s ease 0.05s, width 0.2s ease;

}

.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  height: 2.5px;
  border-radius: 3px;
  background: var(--red);
  position: absolute;
  left: 0;
  transition: top 0.2s ease, transform 0.2s ease, background 0.2s ease, width 0.2s ease;

}

.nav-toggle span::before {
  top: -6px;
  width: 13px;

}

.nav-toggle span::after {
  top: 6px;
  width: 18px;

}

.nav-toggle[aria-expanded="true"] {
  background: var(--red);
  border-color: var(--red-deep);
  box-shadow: 0 3px 0 var(--red-deep), 0 8px 16px rgba(138,15,31,0.28);
  
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
  
}

.nav-toggle[aria-expanded="true"] span::before,.nav-toggle[aria-expanded="true"] span::after {
  background: #fff;
  top: 0;
  width: 18px;

}

.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
  
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
  
}

@media (min-width: 860px) {
  .nav-toggle {
  display: none;
  
}

}

.main-nav {
  display: none;
  
}

@media (min-width: 860px) {
  .main-nav {
  display: flex;
  
}

}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(400px, 92vw);
  display: flex;
  flex-direction: row;
  background: var(--parchment);
  box-shadow: 18px 0 44px rgba(28,25,23,0.22);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  --font-display: 'Baloo 2', 'Poppins', sans-serif;

}

.mobile-nav.is-open {
  transform: translateX(0);
  
}

.mobile-nav__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(28,25,23,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
  
}

.mobile-nav__close svg {
  width: 16px;
  height: 16px;
  
}

.mobile-nav__close:hover {
  background: var(--red);
  color: #fff;
  
}

.mobile-nav__close:active {
  transform: scale(0.92);
  
}

/* -- Left panel: brand, nav links, help card, tagline, socials -- */.mobile-nav__panel {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  
}

.mobile-nav__brand-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem 0.6rem;
  color: var(--ink);
  flex-shrink: 0;

}

.mobile-nav__brand-row img {
  height: 36px;
  width: 36px;
  flex-shrink: 0;

}

.mobile-nav__brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.15;
  color: var(--ink);

}

.mobile-nav__brand-tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 0.15rem;

}

.mobile-nav__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 1.2rem 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  flex-shrink: 0;
  
}

.mobile-nav__search svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  
}

.mobile-nav__search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink);
  
}

.mobile-nav__search input:focus {
  outline: none;
  
}

.mobile-nav__search input::placeholder {
  color: var(--ink-soft);
  
}

.mobile-nav__search:focus-within {
  border-color: var(--red);
  
}

.mobile-nav__links {
  padding: 0 0.6rem;
  flex-shrink: 0;
  
}

.mobile-nav__link.is-hidden,.mobile-nav__services.is-hidden,.mobile-nav__sub a.is-hidden {
  display: none !important;
  
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);

}

.mobile-nav__link:hover, .mobile-nav__link:active {
  background: var(--parchment-dim);
  
}

.mobile-nav__link[aria-current="page"] {
  color: var(--red);
  
}

.mobile-nav__link-icon {
  width: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  
}

.mobile-nav__link-icon svg {
  width: 18px;
  height: 18px;
  
}

.mobile-nav__link[aria-current="page"] .mobile-nav__link-icon,.mobile-nav__link:hover .mobile-nav__link-icon {
  color: var(--red);
  
}

.mobile-nav__link--enquire {
  color: var(--red);
  
}

.mobile-nav__link--enquire .mobile-nav__link-icon {
  color: var(--red);
  
}

.mobile-nav__divider {
  margin: 0.5rem 1.2rem;
  border: none;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  
}

.mobile-nav__help {
  margin: 0 0.7rem 0 1.2rem;
  padding: 0.8rem 0.7rem 0.8rem 0.85rem;
  border-radius: var(--radius-lg);
  background: var(--red);
  color: #fff;
  flex-shrink: 0;

}

.mobile-nav__help-label {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;

}

.mobile-nav__help-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;

}

.mobile-nav__help-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.mobile-nav__help-icon svg {
  width: 14px;
  height: 14px;

}

.mobile-nav__help-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;

}

.mobile-nav__help-numbers a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;

}

.mobile-nav__help-call {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-left: 0.7rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;

}

.mobile-nav__help-call svg {
  width: 13px;
  height: 13px;

}

.mobile-nav__help-call:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.08);

}

.mobile-nav__quote {
  margin: 0.6rem 1.2rem 0;
  font-family: 'Allura', cursive;
  font-weight: 700;
  font-style: oblique 10deg;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--red-deep);
  flex-shrink: 0;

}

.mobile-nav__follow {
  margin: 0.6rem 1.2rem 0;
  flex-shrink: 0;

}

.mobile-nav__follow-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
  
}

.mobile-nav__social {
  display: flex;
  gap: 0.5rem;
  
}

.mobile-nav__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(185, 28, 44, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: background 0.18s ease, color 0.18s ease;
  
}

.mobile-nav__social svg {
  width: 14px;
  height: 14px;
  
}

.mobile-nav__social a:hover {
  background: var(--red);
  color: #fff;
  
}

/* -- Right panel: wavy image strip with stats + CTA -- */.mobile-nav__visual {
  flex: 0 0 34%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 3.4rem;
  color: #fff;

}

.mobile-nav__visual-media {
  position: absolute;
  inset: 0;
  clip-path: url(#mobileNavWaveClip);
  filter: drop-shadow(-3px 0 6px rgba(28,25,23,0.2));

}

.mobile-nav__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.mobile-nav__visual-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(138,15,31,0.6), rgba(185,28,44,0.8) 55%, rgba(138,15,31,0.92));

}

.mobile-nav__stats {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: auto 0;
  padding: 0 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  flex-shrink: 0;

}

.mobile-nav__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;

}

.mobile-nav__stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
}

.mobile-nav__stat-icon svg {
  width: 15px;
  height: 15px;
  
}

.mobile-nav__visual-cta {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding: 0.6rem 0.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  line-height: 1.3;

}

.mobile-nav__visual-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
  
}

.mobile-nav__visual-arrow svg {
  width: 15px;
  height: 15px;
  
}

.mobile-nav__visual-cta:hover .mobile-nav__visual-arrow {
  transform: translateX(3px);
  
}

@media (min-width: 860px) {
  .mobile-nav, .mobile-nav-overlay {
  display: none !important;
  
}

}

/* --------------------------------- Footer --------------------------------- */.site-footer {
  position: relative;
  background: var(--ink);
  color: rgba(251, 247, 238, 0.7);
  padding-top: 3.5rem;
  overflow: hidden;
  
}

.site-footer > .container {
  position: relative;
  z-index: 2;
  
}

.site-footer a {
  color: rgba(251, 247, 238, 0.75);
  
}

.site-footer a:hover {
  color: var(--gold-light);
  
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  
}

.site-footer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  
}

.site-footer__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28,25,23,0.97) 0%, rgba(28,25,23,0.92) 48%, rgba(28,25,23,0.6) 100%);
  
}

.site-footer__wedge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34%;
  height: 55%;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 1;
  pointer-events: none;
  
}

.site-footer__vertical {
  position: absolute;
  z-index: 1;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.7;
  text-align: right;
  color: rgba(251,247,238,0.85);
  pointer-events: none;
  
}

.site-footer__vertical::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red-bright);
  margin: 0.5rem 0 0 auto;
  
}

@media (max-width: 1100px) {
  .site-footer__vertical {
  display: none;
  
}

}

.footer-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 247, 238, 0.12);
  
}

@media (max-width: 860px) {
  .footer-grid {
  grid-template-columns: 1fr 1fr;
  
}

}

@media (max-width: 560px) {
  .footer-grid {
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding-bottom: 1.6rem;

}

.site-footer {
  padding-top: 2.2rem;

}

.footer-col h4 {
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;

}

.footer-col li {
  margin-bottom: 0.45rem;
  font-size: 0.86rem;

}

.footer-link-list li {
  margin-bottom: 0.55rem;

}

.footer-link-list--info li {
  margin-bottom: 0.6rem;
  gap: 0.6rem;

}

.footer-link__icon {
  width: 28px;
  height: 28px;

}

.footer-link__icon svg {
  width: 13px;
  height: 13px;

}

.footer-brand {
  margin-bottom: 0.7rem;

}

.footer-brand img {
  width: 38px;
  height: 38px;

}

.footer-social {
  margin: 0.9rem 0;

}

.footer-tagline {
  font-size: 1.25rem;

}

.footer-brand__name {
  font-size: 1.02rem;

}

.footer-brand__tag {
  font-size: 0.74rem;

}

.footer-col > p {
  font-size: 0.86rem;

}

.footer-legal {
  padding: 1.1rem 0;
  gap: 0.5rem;

}

.footer-legal p {
  font-size: 0.7rem;

}

}

.footer-brand {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  
}

.footer-brand img {
  height: 46px;
  width: 46px;
  
}

.footer-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.15rem;
  
}

.footer-brand__tag {
  font-size: 0.8rem;
  color: var(--gold-light);
  
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin: 1.3rem 0 1.5rem;
  
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,34,58,0.55);
  color: rgba(251,247,238,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  
}

.footer-social svg {
  width: 17px;
  height: 17px;
  
}

.footer-social a:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
  background: rgba(212,34,58,0.14);
  
}

.footer-tagline {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  line-height: 1.2;
  color: rgba(251,247,238,0.7);
  margin: 0;
  
}

.footer-tagline::after {
  content: '';
  display: block;
  height: 1px;
  width: 88%;
  margin-top: 2px;
  background: rgba(212,34,58,0.55);
  
}

.footer-col h4 {
  position: relative;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 3px;
  background: var(--red-bright);
  
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  
}

.footer-col li {
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
  
}

.footer-link-list li {
  margin-bottom: 0.8rem;
  
}

.footer-link-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  
}

.footer-link-list a:hover .footer-link__text {
  color: var(--gold-light);
  
}

.footer-link__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(28, 25, 23, 0.4);
  border: 1.5px solid rgba(212,34,58,0.5);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

}

.footer-link__icon svg {
  width: 16px;
  height: 16px;
  
}

.footer-link__text {
  flex: 1;
  
}

.footer-link__chevron {
  display: inline-flex;
  flex-shrink: 0;
  color: rgba(251,247,238,0.35);
  transition: transform 0.2s ease, color 0.2s ease;
  
}

.footer-link__chevron svg {
  width: 15px;
  height: 15px;
  
}

.footer-link-list a:hover .footer-link__chevron {
  transform: translateX(3px);
  color: var(--red-bright);
  
}

.footer-link-list--info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  
}

.footer-link-list--info a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

}

.footer-legal {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.4rem var(--gutter);
  font-size: 0.82rem;
  max-width: var(--max-width);
  margin: 0 auto;
  
}

.footer-legal p {
  margin: 0;
  max-width: none;
  
}

.footer-legal__partners {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  
}

.footer-legal__partners span {
  border: 1px solid rgba(251,247,238,0.2);
  border-radius: 999px;
  padding: 0.3em 0.9em;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(251,247,238,0.7);
  white-space: nowrap;
  
}

/* --------------------------------- Hero --------------------------------- */.hero {
  position: relative;
  overflow: hidden;
  background:    radial-gradient(circle at 78% 20%, rgba(201,154,61,0.16), transparent 45%),    linear-gradient(180deg, var(--parchment) 0%, var(--parchment-dim) 100%);

}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  
}

@media (max-width: 900px) {
  .hero__grid {
  grid-template-columns: 1fr;
  
}

}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 2rem;
  
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  border: 1px solid var(--line-gold);
  background: rgba(201,154,61,0.08);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.5em 1em 0.5em 0.5em;
  border-radius: 999px;
  
}

.badge-chip__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(185,28,44,0.1);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  
}

.badge-chip__icon svg {
  width: 17px;
  height: 17px;
  
}

.hero__cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
}

.btn__icon svg {
  width: 17px;
  height: 17px;
  
}

.btn__arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  margin-left: 0.3em;
  transition: transform 0.2s ease;
  
}

.btn__arrow-circle svg {
  width: 15px;
  height: 15px;
  
}

.btn:hover .btn__arrow-circle {
  transform: translateX(3px);
  
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  
}

.hero__tagline-rule {
  width: 28px;
  height: 1px;
  background: var(--ink-soft);
  flex-shrink: 0;
  
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.hero__visual-ring {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  
}

.hero__visual img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  
}

/* --------------------------------- Cards / Grids --------------------------------- */.grid {
  display: grid;
  gap: 1.6rem;
  
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
  
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
  
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
  
}

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

}

@media (max-width: 620px) {
  .grid--3, .grid--4, .grid--2 {
  grid-template-columns: 1fr;
  
}

}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  
}

.panel h3 {
  margin-bottom: 0.5rem;
  
}

.panel p:last-child {
  margin-bottom: 0;
  
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: #fff;
  background: linear-gradient(150deg, var(--red-bright), var(--red-deep) 80%);
  font-size: 1.35rem;
  
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  
}

/* Service index cards (link cards on Services overview) */.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  
}

.service-card__media {
  aspect-ratio: 16/10;
  background: var(--parchment-dim);
  
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.service-card__body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  
}

.service-card__body h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
  
}

.service-card__rule {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--red);
  margin: 0.7rem 0 0.9rem;
  
}

.service-card__body p {
  flex: 1;
  color: var(--ink-soft);
  
}

.service-card__link {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  
}

.service-card__link-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  
}

.service-card__link-arrow svg {
  width: 16px;
  height: 16px;
  
}

.service-card:hover .service-card__link-arrow {
  background: var(--red-bright);
  transform: translateX(3px);
  
}

.service-card__dots {
  position: absolute;
  right: 1.4rem;
  bottom: 1.6rem;
  width: 58px;
  height: 38px;
  background-image: radial-gradient(rgba(28,25,23,0.16) 1.4px, transparent 1.4px);
  background-size: 10px 10px;
  pointer-events: none;
  
}

@media (max-width: 640px) {
  .service-card__dots {
  display: none;
  
}

}

/* Stats strip */.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
  
}

@media (max-width: 760px) {
  .stats {
  grid-template-columns: repeat(2, 1fr);
  
}

}

.stat .stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  
}

.stat .stat__label {
  font-size: 0.92rem;
  margin-top: 0.4rem;
  color: rgba(251,247,238,0.75);
  
}

/* Timeline / process list */.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
  
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  
}

.process-list li:last-child {
  border-bottom: none;
  
}

.process-list .dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.process-list h4 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  
}

.process-list p {
  margin: 0;
  
}

/* Credential strip (DGCA, Startup India, Startup Odisha) */.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: stretch;
  
}

.credential {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 1.3rem 1.4rem;
  
}

.credential h4 {
  font-family: var(--font-display);
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  
}

.credential p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  
}

.credential .credential__no {
  color: var(--red);
  font-weight: 600;
  
}

/* Two column content w/ image */.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  
}

.split--reverse .split__media {
  order: 2;
  
}

@media (max-width: 860px) {
  .split {
  grid-template-columns: 1fr;
  
}

.split--reverse .split__media {
  order: 0;
  
}

}

.split__media img {
  width: 100%;
  
}

.split__media--photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  
}

.split__media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.text-red {
  color: var(--red);
  
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.3em;
  transition: transform 0.2s ease;
  
}

.btn__arrow svg {
  width: 18px;
  height: 18px;
  
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
  
}

/* "Who we are" stat row under the More About Us button */.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  
}

.about-stats__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.25;
  color: var(--ink-soft);
  
}

.about-stats__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(185, 28, 44, 0.1);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  
}

.about-stats__icon svg {
  width: 22px;
  height: 22px;
  
}

@media (min-width: 861px) {
  .about-stats {
  /* Span both halves of the About section so every benefit has room. */    width: calc(200% + clamp(2rem, 5vw, 4rem));
  gap: clamp(1rem, 2vw, 2rem);
  
}

.about-stats__item {
  font-size: 0.94rem;
  
}

}

@media (max-width: 860px) {
  .about-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  
}

}

/* "Who we are" media photo with empowering copy + Train/Innovate/Serve wedge */.about-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-md);
  
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.about-media__wedge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 62%;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.1rem 1.3rem;
  
}

.about-media__wedge ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  
}

.about-media__wedge li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  
}

.about-media__wedge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  
}

.about-media__wedge-icon svg {
  width: 12px;
  height: 12px;
  
}

@media (max-width: 500px) {
  .about-media__wedge li {
  font-size: 0.62rem;
  
}

.about-media__wedge-icon {
  width: 18px;
  height: 18px;
  
}

.about-media__wedge-icon svg {
  width: 10px;
  height: 10px;
  
}

}

/* CTA band */.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 50% -10%, rgba(255,255,255,0.16), transparent 55%), linear-gradient(160deg, var(--red-deep), var(--red) 70%);

}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;

}

.cta-band > .container {
  position: relative;
  z-index: 1;

}

.cta-band .kicker {
  justify-content: center;

}

.cta-band .kicker::before, .cta-band .kicker::after {
  background: var(--gold-light);

}

.cta-band .kicker::after {
  content: '';
  width: 22px;
  height: 2px;
  display: inline-block;

}

.cta-band h2 {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;

}

.cta-band .lede {
  color: rgba(255,255,255,0.88);

}

.cta-band .btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;

}

.cta-band .btn--primary {
  background: #fff;
  color: var(--red-deep);
  border-color: #fff;
  box-shadow: 0 5px 0 rgba(28,25,23,0.15), 0 12px 22px rgba(28,25,23,0.2);

}

.cta-band .btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--red-deep);

}

@media (max-width: 640px) {
  .cta-band h2 {
  font-size: 1.6rem;

}

.cta-band .lede {
  font-size: 0.95rem;

}

.cta-band .btn-row {
  flex-direction: column;
  align-items: stretch;

}

.cta-band .btn-row .btn {
  width: 100%;

}

}

/* Contact page */.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  
}

@media (max-width: 900px) {
  .contact-grid {
  grid-template-columns: 1fr;
  
}

}

.info-row {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  
}

.info-row:last-child {
  border-bottom: none;
  
}

.info-row .icon-badge {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
  
}

.info-row .icon-badge svg {
  width: 20px;
  height: 20px;
  
}

.info-row h4 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  
}

.info-row p {
  margin: 0;
  font-size: 0.95rem;
  
}

.form-field {
  margin-bottom: 1.1rem;
  
}

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  
}

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--parchment-dim);
  padding: 0.75em 0.9em;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: inset 0 2px 4px rgba(28,25,23,0.08), inset 0 -1px 0 rgba(255,255,255,0.6);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: inset 0 2px 4px rgba(28,25,23,0.08), 0 0 0 3px rgba(185,28,44,0.16);
  
}

.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/10;
  
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  
}

/* Page hero (interior pages) */.page-hero {
  padding: clamp(2.6rem, 6vw, 4rem) 0 clamp(2.2rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--red-deep), var(--red) 85%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  
}

.page-hero .kicker {
  color: var(--gold-light);
  
}

.page-hero h1 {
  color: var(--white);
  
}

.page-hero p {
  color: rgba(255,255,255,0.88);
  
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  
}

.breadcrumb a {
  color: rgba(255,255,255,0.85);
  
}

/* Applications grid (industry uses) */.app-tag {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5em 1em;
  font-size: 0.9rem;
  margin: 0 0.5em 0.5em 0;
  font-weight: 500;
  
}

/* Table-style spec list */.spec-table {
  width: 100%;
  border-collapse: collapse;
  
}

.spec-table th, .spec-table td {
  text-align: left;
  padding: 0.85em 1em;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  
}

.spec-table th {
  font-family: var(--font-display);
  color: var(--red);
  font-weight: 700;
  width: 40%;
  
}

/* --------------------------------- Certifications gallery --------------------------------- */.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  
}

@media (max-width: 980px) {
  .cert-grid {
  grid-template-columns: repeat(2, 1fr);
  
}

}

@media (max-width: 560px) {
  .cert-grid {
  grid-template-columns: 1fr;
  
}

}

.cert-card {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 32px rgba(28,25,23,0.12);
  
}

.cert-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  
}

.cert-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--parchment-dim);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  
}

.cert-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line-gold);
  z-index: 2;
  pointer-events: none;
  
}

.cert-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  background: var(--white);
  
}

.cert-frame__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(28,25,23,0.85);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.cert-frame__zoom svg {
  width: 16px;
  height: 16px;
  
}

.cert-card__body {
  padding: 1.1rem 1.3rem 1.3rem;
  
}

.cert-card__body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.35rem;
  
}

.cert-card__body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  
}

.cert-card__body .credential__no {
  color: var(--red);
  font-weight: 600;
  
}

/* Certificate lightbox modal */.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(28,25,23,0.82);
  padding: clamp(1rem, 4vw, 3rem);
  
}

.cert-modal.is-open {
  display: flex;
  
}

.cert-modal__box {
  position: relative;
  background: var(--white);
  width: min(760px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  
}

.cert-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 2px solid var(--gold);
  background: var(--ink);
  
}

.cert-modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin: 0;
  
}

.cert-modal__close {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  
}

.cert-modal__close:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  
}

.cert-modal__viewport {
  position: relative;
  flex: 1;
  min-height: 60vh;
  background: var(--parchment-dim);
  
}

.cert-modal__viewport iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  
}

/* --------------------------------- Photo gallery + lightbox --------------------------------- */.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  
}

.photo-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  
}

@media (max-width: 980px) {
  .photo-grid, .photo-grid--3 {
  grid-template-columns: repeat(2, 1fr);
  
}

}

@media (max-width: 560px) {
  .photo-grid, .photo-grid--3 {
  grid-template-columns: 1fr;
  
}

}

.photo-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink);
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 4/3;
  font: inherit;
  
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  
}

.photo-card:hover img {
  transform: scale(1.06);
  
}

.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,25,23,0.82) 0%, rgba(28,25,23,0.05) 55%, transparent 75%);
  pointer-events: none;
  
}

.photo-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
  
}

.photo-card__caption h4 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  
}

.photo-card__caption p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  
}

.photo-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-sm);
  
}

.photo-card__icon svg {
  width: 19px;
  height: 19px;
  
}

.photo-card__zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(28,25,23,0.6);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.photo-card__zoom svg {
  width: 15px;
  height: 15px;
  
}

.photo-card__arrow {
  position: absolute;
  right: 1rem;
  bottom: 1.1rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, transform 0.2s ease;
  
}

.photo-card__arrow svg {
  width: 16px;
  height: 16px;
  
}

.photo-card:hover .photo-card__arrow {
  background: var(--red-bright);
  transform: translateX(2px);
  
}

.photo-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  
}

/* Training in action — section header with tagline + decorative drone */.training-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
  
}

.training-header__text {
  max-width: 640px;
  
}

.training-header__text .lede {
  margin-top: 1rem;
  
}

.training-header__dots {
  position: absolute;
  left: 46%;
  top: 0.2rem;
  width: 90px;
  height: 70px;
  background-image: radial-gradient(rgba(185,28,44,0.18) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  pointer-events: none;
  
}

.training-header__side {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  padding-top: 2.4rem;
  text-align: right;
  
}

.training-header__drone {
  position: absolute;
  top: -2.6rem;
  right: -1rem;
  width: 230px;
  height: auto;
  mask-image: radial-gradient(ellipse 62% 62% at 55% 45%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 62% 62% at 55% 45%, #000 55%, transparent 100%);
  
}

.training-header__tagline {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.6;
  
}

.training-header__tagline::after {
  content: '';
  display: block;
  width: 34px;
  height: 3px;
  background: var(--red);
  margin: 0.5rem 0 0 auto;
  
}

@media (max-width: 860px) {
  .training-header {
  flex-direction: column;
  
}

.training-header__dots {
  display: none;
  
}

.training-header__side {
  width: 100%;
  text-align: left;
  padding-top: 0;
  
}

.training-header__drone {
  position: static;
  width: 160px;
  margin-bottom: 0.5rem;
  mask-image: none;
  -webkit-mask-image: none;
  
}

.training-header__tagline::after {
  margin: 0.5rem auto 0 0;
  
}

}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(28,25,23,0.9);
  padding: clamp(1rem, 4vw, 3rem);
  
}

.media-modal.is-open {
  display: flex;
  
}

.media-modal__box {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  
}

.media-modal__frame {
  position: relative;
  overflow: auto;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  
}

.media-modal__frame img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  
}

.media-modal__caption {
  margin-top: 0.9rem;
  color: var(--parchment);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  
}

.media-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  
}

.media-modal__close:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  
}

/* Compact photo strip (two-up credibility pairing) */.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  
}

@media (max-width: 700px) {
  .photo-strip {
  grid-template-columns: 1fr;
  
}

}

/* --------------------------------- Motion & delight effects --------------------------------- *//* Scroll reveal — .reveal is added by JS at runtime only, so no-JS visitors   always see full content;
  nothing here can hide content permanently. */.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,.8,.24,1), transform 0.7s cubic-bezier(.16,.8,.24,1);
  
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  
}

/* Traveling shimmer along every gold divider line */.divider-rule {
  position: relative;
  overflow: hidden;
  
}

.divider-rule::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: divider-shimmer 4s ease-in-out infinite;
  
}

.section--maroon .divider-rule::after,.section--dark .divider-rule::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  
}

@keyframes divider-shimmer {
  0% {
  left: -30%;
  
}

55% {
  left: 110%;
  
}

100% {
  left: 110%;
  
}

}

/* Slow ambient gradient drift on tinted sections, for a living, dimensional backdrop */.section--maroon, .page-hero {
  background-size: 220% 220%;
  animation: gradient-drift 22s ease-in-out infinite alternate;
  
}

@keyframes gradient-drift {
  0% {
  background-position: 0% 0%;
  
}

100% {
  background-position: 100% 100%;
  
}

}

/* Parallax hook for the page-hero decorative ring (JS sets --parallax-y on scroll) */.page-hero::after {
  transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  
}

/* Hero visual — scroll parallax wrapper (JS sets transform on scroll) */.hero__visual {
  transition: transform 0.1s linear;
  
}

.radar-ring--1, .radar-ring--2 {
  transition: transform 0.15s ease-out;
  
}

/* 3D tilt — JS adds .tilt and drives rotateX/rotateY per pointer position */.tilt {
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease;
  will-change: transform;
  
}

.tilt:hover {
  box-shadow: 0 22px 40px rgba(28,25,23,0.16);
  
}

.section--maroon .tilt:hover,.section--dark .tilt:hover {
  box-shadow: 0 22px 40px rgba(0,0,0,0.35);
  
}

/* Button shine sweep */.btn {
  position: relative;
  overflow: hidden;
  
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
  
}

.btn:hover::before {
  left: 130%;
  
}

/* Photo card — shine sweep layered with the existing caption fade */.photo-card::after {
  background:    linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.4) 50%, transparent 58%),    linear-gradient(0deg, rgba(28,25,23,0.82) 0%, rgba(28,25,23,0.05) 55%, transparent 75%);
  background-size: 250% 250%, 100% 100%;
  background-position: 200% 200%, 0 0;
  transition: background-position 0.9s ease;
  
}

.photo-card:hover::after {
  background-position: -60% -60%, 0 0;
  
}

/* Certificate frame — shine sweep on hover, beneath the gold border ring */.cert-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.4) 50%, transparent 58%);
  background-size: 250% 250%;
  background-position: 200% 200%;
  transition: background-position 0.9s ease;
  
}

.cert-card:hover .cert-frame::after {
  background-position: -60% -60%;
  
}

/* Service card media — shine sweep on hover */.service-card__media {
  position: relative;
  overflow: hidden;
  
}

.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.5) 50%, transparent 58%);
  background-size: 250% 250%;
  background-position: 200% 200%;
  transition: background-position 0.9s ease;
  pointer-events: none;
  
}

.service-card:hover .service-card__media::after {
  background-position: -60% -60%;
  
}

/* Animated stat counters use the same markup;
  no extra class needed */.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  
}

/* ==========================================================================   3D / ELEVATED DESIGN LAYER — raised buttons, depth shadows, tilt effects   ========================================================================== */:root {
  --shadow-sm: 0 2px 0 rgba(0,0,0,0.18), 0 4px 10px rgba(28,25,23,0.12);
  --shadow-md: 0 10px 24px rgba(28,25,23,0.14), 0 2px 6px rgba(28,25,23,0.10);
  --shadow-lg: 0 24px 48px rgba(28,25,23,0.20), 0 6px 16px rgba(28,25,23,0.12);
  
}

/* Raised, glossy buttons with a pressed state */.btn {
  position: relative;
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 55%);
  pointer-events: none;
  
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.18), 0 10px 20px rgba(28,25,23,0.18);
  
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 2px 6px rgba(28,25,23,0.14);
  
}

.btn--ghost {
  box-shadow: none;
  
}

.btn--ghost::before {
  display: none;
  
}

/* Elevated panels & cards */.panel, .credential, .service-card, .doc-card, .cert-card {
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s ease;
  
}

.panel:hover, .credential:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  
}

.service-card:hover, .doc-card:hover, .cert-card:hover {
  box-shadow: var(--shadow-lg);
  
}

/* Icon badges get a bevelled, embossed look */.icon-badge {
  box-shadow:    0 5px 12px rgba(138,15,31,0.35),    inset 0 1px 1px rgba(255,255,255,0.45),    inset 0 -3px 5px rgba(0,0,0,0.25);
  
}

/* Hero visual — subtle 3D tilt on hover */.hero__visual {
  perspective: 900px;
  
}

.hero__visual img {
  transition: transform 0.4s ease, filter 0.4s ease;
  transform-style: preserve-3d;
  
}

.hero__visual:hover img {
  transform: rotateY(-8deg) rotateX(4deg) scale(1.03);
  filter: drop-shadow(0 26px 40px rgba(138,15,31,0.32));
  
}

/* Photo cards — raised with deeper hover lift */.photo-card {
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  
}

.photo-card:hover, .photo-card:focus-visible {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-lg);
  
}

/* Stat numbers get a subtle embossed text shadow */.stat__num {
  text-shadow: 0 2px 0 rgba(0,0,0,0.25), 0 6px 14px rgba(0,0,0,0.25);
  
}

/* Credential number badges pop with a soft glow */.credential__no {
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  
}

/* ==========================================================================   TOP CONTACT BAR   ========================================================================== */.topbar {
  background: linear-gradient(90deg, var(--red-deep), var(--red) 65%);
  color: rgba(251,247,238,0.92);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);

}

.topbar__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.55rem var(--gutter);

}

.topbar__contact {
  justify-self: start;

}

.topbar__badge {
  justify-self: end;

}

.topbar__social {
  justify-self: end;

}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: rgba(251,247,238,0.88);
  font-weight: 500;
  
}

.topbar__contact a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  
}

.topbar__contact a:hover {
  color: var(--gold-light);
  
}

.topbar__email {
  display: none;
  
}

@media (min-width: 700px) {
  .topbar__email {
  display: inline-flex;
  
}

}

.topbar__badge {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red-deep);
  background: var(--gold-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  display: none;

}

@media (min-width: 900px) {
  .topbar__badge {
  display: inline-block;
  
}

}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;

}

.topbar__social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(251,247,238,0.9);
  transition: background 0.18s ease, color 0.18s ease;

}

.topbar__social a:hover {
  background: var(--gold-light);
  color: var(--red-deep);

}

.topbar__social svg {
  width: 13px;
  height: 13px;

}

@media (max-width: 900px) {
  .topbar {
  border-bottom: none;

}

.topbar__row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.45rem var(--gutter);

}

.topbar__contact {
  flex-wrap: nowrap;
  gap: 0.5rem;

}

.topbar__contact a {
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;

}

.topbar__phone-secondary {
  display: none;

}

.topbar__email {
  display: none !important;

}

.topbar__social {
  gap: 0.4rem;
  flex-shrink: 0;

}

.topbar__social a {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red-deep);

}

.topbar__social a:hover {
  background: var(--gold-light);
  color: var(--red-deep);

}

.topbar__social svg {
  width: 12px;
  height: 12px;

}

}

/* ==========================================================================   STICKY FLOATING ACTIONS (WhatsApp + Enquire)   ========================================================================== */.float-actions {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  
}

.float-btn--call {
  width: 54px;
  height: 54px;
  background: var(--red);
  color: #fff;

}

.float-btn--call svg {
  width: 24px;
  height: 24px;

}

.float-btn--call:hover {
  background: var(--red-deep);

}

.float-btn--whatsapp {
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;

}

.float-btn--whatsapp svg {
  width: 28px;
  height: 28px;
  
}

.float-btn--enquire {
  padding: 0.85em 1.4em;
  background: var(--red);
  color: #fff;
  font-size: 0.95rem;
  
}

.float-btn--enquire:hover {
  background: var(--red-bright);
  color: #fff;
  
}

.float-btn--top {
  width: 54px;
  height: 54px;
  background: var(--red);
  color: #fff;
  border: none;
  
}

.float-btn--top svg {
  width: 24px;
  height: 24px;
  
}

.float-btn--top:hover {
  background: var(--red-deep);
  
}

@media (max-width: 640px) {
  .float-actions {
  right: 0.8rem;
  bottom: 0.8rem;
  
}

}

/* ==========================================================================    HOME HERO — editorial split layout with full-bleed flight visual   ========================================================================== *//* Homepage sequence: introduce the organisation immediately after its   regulatory credentials, before the wider services content. */body[data-page="home"] main {
  display: flex;
  flex-direction: column;
  
}

body[data-page="home"] main > section {
  order: 4;
  
}

body[data-page="home"] main > .hero {
  order: 1;
  
}

body[data-page="home"] main > .section--tight {
  order: 2;
  
}

body[data-page="home"] main > .section--about-preview {
  order: 3;
  
}

body[data-page="home"] main > .hero {
  order: 1;
  
}

body[data-page="home"] main > .section--tight {
  order: 2;
  
}

body[data-page="home"] main > .section--about-preview {
  order: 3;
  
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f3ee 0%, #f7f0e6 100%);
  
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.32fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(0.75rem, 3vw, 3rem) var(--gutter) 0;

}

.hero__copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  padding: 0.5rem 0 0;

}

.hero__details {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding: 0.75rem 0 1.5rem;

}

.hero__mobile-services {
  display: none;

}

.hero__copy .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  margin-bottom: 1rem;
  white-space: normal;
  
}

.hero__copy .kicker::before {
  width: 54px;
  height: 3px;
  background: var(--red);
  
}

.hero__copy h1 {
  font-size: clamp(3rem, 4.5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
  max-width: 620px;

}

.hero__copy .lede {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0 1.6rem;
  
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(185, 28, 44, 0.12);
  box-shadow: 0 10px 22px rgba(36, 29, 25, 0.06);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  
}

.hero__cta .btn {
  min-width: 210px;
  border-radius: 0.9rem;
  padding: 1rem 1.4rem;
  
}

.hero__visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  height: clamp(430px, 52vw, 760px);
  min-height: 430px;
  overflow: hidden;

}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f0e6 0%, rgba(247,240,230,0.45) 2.5%, rgba(247,240,230,0) 9%);
  z-index: 1;
  pointer-events: none;

}

.hero__ring {
  position: absolute;
  border: 1px solid rgba(185, 28, 44, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  
}

.hero__ring--1 {
  width: 83%;
  height: 83%;
  right: 4%;
  top: 6%;
  box-shadow: inset 0 0 0 16px rgba(185, 28, 44, 0.04);
  
}

.hero__ring--2 {
  width: 62%;
  height: 62%;
  right: 11%;
  top: 18%;
  border-width: 1.5px;
  
}

.hero__circle-badge {
  position: absolute;
  right: 7%;
  top: 9%;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2.9rem);
  line-height: 0.95;
  text-align: center;
  font-weight: 700;
  color: var(--red);
  font-style: italic;
  
}

.hero__circle-badge--left {
  right: auto;
  left: 8%;
  top: 12%;
  
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.05);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  
}

.hero__service-list {
  position: absolute;
  left: 0;
  top: 57%;
  transform: translateX(-2%);
  z-index: 3;
  display: grid;
  gap: 0.5rem;

}

.mini-service {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 190px;
  padding: 0.4rem 0.65rem;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 12px 20px rgba(28,25,23,0.08);
  color: var(--ink);
  backdrop-filter: blur(2px);

}

.mini-service__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;

}

.mini-service__icon svg {
  width: 16px;
  height: 16px;

}

.mini-service span:last-child {
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);

}

.hero__side-copy {
  position: absolute;
  right: 0.8rem;
  top: 16%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  text-align: right;
  
}

.hero__side-copy span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 6px rgba(0,0,0,0.12);
  
}

.hero__side-copy span:last-child {
  display: inline-block;
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 3px solid var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  line-height: 1.35;
  color: var(--red);
  text-transform: uppercase;
  text-shadow: none;

}

.hero__ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 14rem;
  height: 11rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 1.1rem 1.1rem 0;
  background: var(--red);
  color: #fff;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  box-shadow: -8px -8px 24px rgba(28,25,23,0.2);

}

@media (min-width: 901px) {
  .hero {
  min-height: 560px;
  padding-bottom: 0;
  
}

.hero__layout {
  max-width: 1500px;
  padding-left: clamp(2rem, 5vw, 5rem);
  padding-right: clamp(1.5rem, 2vw, 2rem);
  
}

.hero__copy {
  padding-left: 0.5rem;
  
}

.hero__visual {
  margin-left: auto;
  width: min(100%, 980px);
  height: clamp(420px, 48vw, 700px);
  
}

.hero__visual img {
  object-position: center;
  
}

.hero__visual-ring {
  display: none;
  
}

}

@media (max-width: 900px) {
  .hero {
  padding-top: 0.9rem;
  padding-bottom: 3rem;

}

.hero__badges {
  display: none;

}

.hero__layout {
  grid-template-columns: 1fr;

}

.hero__copy, .hero__details, .hero__visual {
  grid-column: auto;
  grid-row: auto;

}

.hero__copy {
  padding-bottom: 0;

}

.hero__copy h1 {
  max-width: 100%;
  font-size: clamp(1.9rem, 8.6vw, 2.4rem);

}

.hero__visual {
  margin-top: 1rem;
  min-height: 320px;
  height: clamp(320px, 70vw, 420px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;

}

.hero__visual::before {
  display: none;

}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 18%;
  z-index: 2;
  background: linear-gradient(180deg, var(--parchment-dim) 0%, rgba(247,240,230,0) 100%);
  pointer-events: none;

}

.hero__visual img {
  object-position: 55% center;

}

.hero__service-list {
  display: none;

}

.hero__side-copy {
  display: none;

}

.hero__mobile-services {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: -2.4rem 0 0.3rem;

}

.mobile-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;

}

.mobile-service__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1.5px solid rgba(185, 28, 44, 0.28);
  color: var(--red);
  flex-shrink: 0;

}

.mobile-service__icon svg {
  width: 20px;
  height: 20px;

}

.mobile-service span:last-child {
  font-family: var(--font-display);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);

}

}

@media (max-width: 640px) {
  .hero__copy .kicker {
  font-size: 0.82rem;

}

.hero__copy h1 {
  font-size: clamp(1.8rem, 9vw, 2.2rem);

}

.hero__visual {
  height: 300px;

}

.hero__ribbon {
  display: none;

}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;

}

.badge-chip {
  width: auto;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  gap: 0.35rem;
  padding: 0.7rem 0.4rem;
  font-size: 0.66rem;
  line-height: 1.25;

}

.badge-chip__icon {
  width: 26px;
  height: 26px;

}

.badge-chip__icon svg {
  width: 14px;
  height: 14px;

}

.hero__cta {
  flex-direction: column;
  
}

.hero__cta .btn {
  width: 100%;

}

.hero__mobile-services {
  gap: 0.35rem;

}

.mobile-service__icon {
  width: 40px;
  height: 40px;

}

.mobile-service__icon svg {
  width: 17px;
  height: 17px;

}

.mobile-service span:last-child {
  font-size: 0.66rem;

}

}

/* ==========================================================================    RED 3D INTERACTION LAYER   ========================================================================== */:root {
  --red-hover: #7d0c1a;
  --red-highlight: #e53448;
  
}

.btn--primary,.float-btn--enquire,.main-nav a.float-btn--enquire {
  background: linear-gradient(145deg, var(--red-highlight), var(--red) 52%, var(--red-deep));
  border-color: var(--red-deep);
  box-shadow: 0 5px 0 #750b18, 0 12px 22px rgba(138, 15, 31, 0.25);
  
}

.btn--primary:hover,.float-btn--enquire:hover,.main-nav a.float-btn--enquire:hover {
  background: linear-gradient(145deg, #a81125, var(--red-hover));
  border-color: var(--red-hover);
  color: #fff;
  box-shadow: 0 2px 0 #570713, 0 7px 15px rgba(138, 15, 31, 0.28);
  transform: translateY(3px);
  
}

.btn--outline-dark {
  background: #fff;
  box-shadow: 0 4px 0 rgba(185, 28, 44, 0.22), 0 10px 18px rgba(28, 25, 23, 0.08);
  
}

.btn--outline-dark:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: #fff;
  box-shadow: 0 2px 0 #570713, 0 7px 15px rgba(138, 15, 31, 0.2);
  
}

.service-card,.credential,.about-stats__item {
  transform: translateZ(0);
  
}

.service-card:hover,.credential:hover {
  border-color: var(--red);
  box-shadow: 0 7px 0 rgba(138, 15, 31, 0.42), 0 20px 34px rgba(28, 25, 23, 0.16);
  transform: translateY(-7px) rotateX(1deg);
  
}

.about-stats__item {
  padding: 0.45rem;
  border-radius: 10px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  
}

.about-stats__item:hover {
  background: rgba(185, 28, 44, 0.07);
  box-shadow: 0 5px 14px rgba(138, 15, 31, 0.13);
  transform: translateY(-4px);
  
}

.about-stats__item:hover .about-stats__icon {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 0 var(--red-deep), 0 8px 14px rgba(138, 15, 31, 0.25);
  
}

.main-nav a:hover {
  color: var(--red-highlight);
  
}

.main-nav a:hover::after {
  background: var(--red-highlight);
  
}

/* Keep the live navigation on the same desktop grid as the hero content. */@media (min-width: 901px) {
  .site-header__bar {
  max-width: 1540px;
  padding-left: clamp(4rem, 7vw, 8rem);
  padding-right: clamp(2rem, 4vw, 3rem);

}

.main-nav a.float-btn--enquire {
  padding: 0.72em 1.15em;
  font-size: 0.9rem;

}

/* Topbar shares the header's asymmetric grid so both rows' edges line up. */
.topbar__row {
  max-width: 1540px;
  padding-left: clamp(4rem, 7vw, 8rem);
  padding-right: clamp(2rem, 4vw, 3rem);

}

/* Footer shares the same grid so its edges line up with the header/topbar too. */
.site-footer > .container {
  max-width: 1540px;
  padding-left: clamp(4rem, 7vw, 8rem);
  padding-right: clamp(2rem, 4vw, 3rem);

}

}

/* ==========================================================================    TRAINING GALLERY — editorial bento layout   ========================================================================== */.photo-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 185px;
  gap: 1.15rem;
  counter-reset: training-gallery;
  
}

.photo-card {
  aspect-ratio: auto;
  counter-increment: training-gallery;
  border: 1px solid rgba(138, 15, 31, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(28, 25, 23, 0.12);
  isolation: isolate;
  
}

.photo-card:first-child {
  grid-row: span 2;
  
}

.photo-card::before {
  content: counter(training-gallery, decimal-leading-zero);
  position: absolute;
  z-index: 3;
  top: 0.85rem;
  right: 0.9rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(28,25,23,0.16);
  
}

.photo-card::after {
  background: linear-gradient(180deg, rgba(28,25,23,0.03) 18%, rgba(28,25,23,0.22) 46%, rgba(28,25,23,0.9) 100%);
  background-size: 100% 100%;
  background-position: 0 0;
  
}

.photo-card__caption {
  padding: 1rem 4.2rem 1rem 1.1rem;
  
}

.photo-card__caption h4 {
  font-size: 1rem;
  line-height: 1.16;
  letter-spacing: 0;
  
}

.photo-card__caption p {
  font-size: 0.77rem;
  line-height: 1.3;
  
}

.photo-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.45rem;
  box-shadow: 0 3px 0 rgba(138,15,31,0.25), 0 7px 12px rgba(28,25,23,0.15);
  
}

.photo-card__icon svg {
  width: 17px;
  height: 17px;
  
}

.photo-card__arrow {
  right: 0.95rem;
  bottom: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--red-highlight), var(--red-deep));
  box-shadow: 0 3px 0 #750b18, 0 7px 15px rgba(138,15,31,0.28);
  
}

.photo-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 0 rgba(138,15,31,0.4), 0 22px 36px rgba(28,25,23,0.2);
  
}

.photo-card:hover::after {
  background-position: 0 0;
  
}

.photo-card:hover .photo-card__arrow {
  background: var(--red-hover);
  transform: translateX(3px) scale(1.04);
  
}

.photo-card:first-child .photo-card__caption {
  padding: 1.35rem 5rem 1.35rem 1.35rem;
  
}

.photo-card:first-child .photo-card__caption h4 {
  font-size: 1.3rem;
  
}

.photo-card:first-child .photo-card__caption p {
  font-size: 0.88rem;
  
}

@media (max-width: 980px) {
  .photo-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 205px;
  
}

.photo-card:first-child {
  grid-column: span 2;
  grid-row: auto;
  
}

}

@media (max-width: 600px) {
  .photo-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: 240px;
  
}

.photo-card:first-child {
  grid-column: auto;
  
}

}

/* Restore the original uniform training gallery. */.photo-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 1.4rem;
  counter-reset: none;
  
}

.photo-card {
  aspect-ratio: 4 / 3;
  counter-increment: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-md);
  isolation: auto;
  
}

.photo-card:first-child {
  grid-column: auto;
  grid-row: auto;
  
}

.photo-card::before {
  display: none;
  
}

.photo-card::after {
  background: linear-gradient(0deg, rgba(28,25,23,0.82) 0%, rgba(28,25,23,0.05) 55%, transparent 75%);
  background-size: 100% 100%;
  background-position: 0 0;
  
}

.photo-card__caption {
  padding: 0.9rem 1rem;
  
}

.photo-card__caption h4 {
  font-size: 0.98rem;
  line-height: 1.1;
  
}

.photo-card__caption p {
  font-size: 0.82rem;
  line-height: normal;
  
}

.photo-card__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-sm);
  
}

.photo-card__icon svg {
  width: 19px;
  height: 19px;
  
}

.photo-card__arrow {
  right: 1rem;
  bottom: 1.1rem;
  width: 34px;
  height: 34px;
  background: var(--red);
  box-shadow: var(--shadow-sm);
  
}

.photo-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-lg);
  
}

.photo-card:hover .photo-card__arrow {
  background: var(--red-bright);
  transform: translateX(2px);
  
}

.photo-card:first-child .photo-card__caption {
  padding: 0.9rem 1rem;
  
}

.photo-card:first-child .photo-card__caption h4 {
  font-size: 0.98rem;
  
}

.photo-card:first-child .photo-card__caption p {
  font-size: 0.82rem;
  
}

@media (max-width: 980px) {
  .photo-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  
}

}

@media (max-width: 560px) {
  .photo-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  
}

}

/* Keep the training header illustration and its message separate and legible. */@media (min-width: 861px) {
  .training-header__side {
  padding-top: 0;
  
}

.training-header__drone {
  position: relative;
  top: auto;
  right: auto;
  display: block;
  width: 210px;
  margin: 0 0 0.7rem auto;
  mask-image: none;
  -webkit-mask-image: none;
  
}

.training-header__tagline {
  clear: both;
  
}

}


/* ==========================================================================
   ENQUIRE NOW MODAL
   ========================================================================== */
.enquiry-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(28, 25, 23, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.enquiry-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  z-index: 501;
  width: min(960px, 94vw);
  max-height: 92vh;
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(28, 25, 23, 0.35);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.enquiry-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(28, 25, 23, 0.18);
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.enquiry-modal__close svg {
  width: 16px;
  height: 16px;
}

.enquiry-modal__close:hover {
  background: var(--red);
  color: #fff;
}

/* -- Left visual panel -- */
.enquiry-modal__visual {
  position: relative;
  flex: 0 0 40%;
  min-width: 300px;
  overflow: hidden;
  color: #fff;
}

.enquiry-modal__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enquiry-modal__visual-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(251, 247, 238, 0.96) 0%, rgba(251, 247, 238, 0.88) 38%, rgba(138, 15, 31, 0.55) 100%);
}

.enquiry-modal__visual-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.8rem;
  overflow-y: auto;
}

.enquiry-modal__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  flex-shrink: 0;
  margin-bottom: 1.4rem;
}

.enquiry-modal__brand img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.enquiry-modal__brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.enquiry-modal__brand-tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.1rem;
}

.enquiry-modal__kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.7rem;
}

.enquiry-modal__kicker span {
  width: 22px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.enquiry-modal__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.8rem;
}

.enquiry-modal__heading span {
  color: var(--red);
}

.enquiry-modal__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34ch;
  margin: 0 0 1.4rem;
}

.enquiry-modal__features {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(28, 25, 23, 0.12);
  backdrop-filter: blur(4px);
}

.enquiry-modal__features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--ink);
}

.enquiry-modal__feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(185, 28, 44, 0.1);
  border: 1px solid rgba(185, 28, 44, 0.25);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.enquiry-modal__feature-icon svg {
  width: 18px;
  height: 18px;
}

.enquiry-modal__tagline {
  margin-top: auto;
  display: inline-block;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(28, 25, 23, 0.1);
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
}

.enquiry-modal__tagline-accent {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* -- Right form panel -- */
.enquiry-modal__form-panel {
  flex: 1 1 auto;
  min-width: 0;
  padding: 2rem 2.2rem 1.8rem;
  overflow-y: auto;
}

.enquiry-modal__form-kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.6rem;
}

.enquiry-modal__form-kicker span {
  width: 22px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.enquiry-modal__form-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.4rem;
}

.enquiry-modal__form-heading span {
  color: var(--red);
}

.enquiry-modal__form-sub {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}

.enquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.enquiry-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.enquiry-field--label {
  display: block;
  margin-bottom: 0.9rem;
}

.enquiry-field--label label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.enquiry-required {
  color: var(--red);
}

.enquiry-field__icon {
  position: absolute;
  left: 0.9rem;
  width: 17px;
  height: 17px;
  color: var(--ink-soft);
  pointer-events: none;
  flex-shrink: 0;
}

.enquiry-field__icon--top {
  top: 0.9rem;
}

.enquiry-field input[type="text"],
.enquiry-field input[type="email"],
.enquiry-field input[type="tel"] {
  width: 100%;
  padding: 0.75rem 0.9rem 0.75rem 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.enquiry-field input::placeholder {
  color: var(--ink-soft);
}

.enquiry-field input:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

.enquiry-select {
  position: relative;
}

.enquiry-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.enquiry-select__trigger .enquiry-field__icon {
  position: static;
  color: var(--ink-soft);
}

.enquiry-select__trigger[aria-expanded="true"] {
  border-color: var(--red);
  background: var(--white);
}

.enquiry-select__value {
  flex: 1;
  min-width: 0;
  color: var(--ink-soft);
}

.enquiry-select__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink-soft);
  transition: transform 0.18s ease;
}

.enquiry-select__trigger[aria-expanded="true"] .enquiry-select__chevron {
  transform: rotate(180deg);
}

.enquiry-select__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 6;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 32px rgba(28, 25, 23, 0.14);
  max-height: 220px;
  overflow-y: auto;
}

.enquiry-select__list li {
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.enquiry-select__list li:first-child {
  background: rgba(185, 28, 44, 0.08);
  color: var(--red);
}

.enquiry-select__list li:hover {
  background: var(--parchment-dim);
}

.enquiry-textarea-wrap {
  position: relative;
}

.enquiry-field textarea {
  width: 100%;
  min-height: 90px;
  padding: 0.85rem 0.9rem 0.85rem 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.enquiry-field textarea::placeholder {
  color: var(--ink-soft);
}

.enquiry-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

.enquiry-charcount {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

.enquiry-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
  cursor: pointer;
}

.enquiry-agree input {
  margin-top: 0.2rem;
  accent-color: var(--red);
  flex-shrink: 0;
}

.enquiry-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--red-highlight, var(--red-bright)), var(--red) 55%, var(--red-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 5px 0 var(--red-deep), 0 12px 22px rgba(138, 15, 31, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.enquiry-submit__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.enquiry-submit:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--red-deep), 0 8px 16px rgba(138, 15, 31, 0.25);
}

@media (max-width: 860px) {
  .enquiry-modal__visual {
    display: none;
  }

  .enquiry-modal__form-panel {
    padding: 1.6rem 1.3rem 1.4rem;
  }
}

@media (max-width: 640px) {
  .enquiry-modal {
    width: 94vw;
    max-height: 90vh;
  }

  .enquiry-form__row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}
