:root {
  --primary: #0e7490;
  --primary-deep: #0b5f77;
  --text-on-primary: #f4fbfd;
  --text-soft: #ffffff;
  --line-soft: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #003399;
  color: var(--text-on-primary);
  line-height: 1.5;
}

/* GearUP color utilities */
.bg-gearup-dark {
  background-color: #003399;
}

.bg-gearup-cyan {
  background-color: #4dabff;
}

.text-gearup-cyan {
  color: #4dabff;
}

.text-gearup-light {
  color: #ffffff;
}

.border-gearup-light {
  border-color: rgba(191, 219, 254, 0.6);
}

.text-gearup-dark {
  color: #003399;
}

/* Buttons */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  background-color: #4dabff;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, opacity 0.16s ease;
}

.btn-main:hover,
.btn-main:focus-visible {
  background-color: #60b7ff;
  border-color: rgba(15, 23, 42, 0.18);
  outline: none;
}

/* Ensure text visibility on white/light hover backgrounds */
.hover\:bg-white:hover {
  background-color: #ffffff !important;
  color: #003399 !important;
}
.hover\:bg-white:hover * {
  color: #003399 !important;
}

/* Custom group-hover support for gearup-dark */
.group:hover .group-hover\:text-gearup-dark {
  color: #003399 !important;
}

.btn-main--full {
  width: 100%;
}

/* Cards & panels */
.glass-panel {
  background: transparent;
  border: 1px solid rgba(191, 219, 254, 0.35);
}

.glass-card {
  background-color: #003399;
  border: 1px solid rgba(191, 219, 254, 0.35);
}

/* Form fields */
.form-field {
  background-color: #003399;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.form-field:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.form-field::placeholder {
  color: rgba(226, 232, 240, 0.75);
}

.form-field:focus {
  outline: none;
  border-color: #4dabff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(77, 171, 255, 0.25);
}

/* Layout */
.page-container {
  max-width: 1120px;
  margin: 0 auto;
}

/* Global Typography Overrides */
p,
li {
  color: #ffffff !important;
  opacity: 1 !important;
}



/* Hero section */
#home {
  position: relative;
  background-color: #003399;
  background-image: url('../images/hero_background.svg?v=2.0');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  #home {
    background-position: center top;
  }
}

html {
  scroll-behavior: smooth;
}

/* ─── Hamburger button ─────────────────────────────── */
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

#menuToggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#menuToggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#menuToggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile menu overlay ──────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #003399;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

.mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-size: clamp(2rem, 10vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1.15;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.mobile-menu__link:hover {
  color: #4dabff;
  padding-left: 0.5rem;
}

.mobile-menu__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 1.5rem 0;
}

.mobile-menu__lang {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mobile-menu__lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-menu__lang-btn.active,
.mobile-menu__lang-btn:hover {
  background: #4dabff;
  color: #fff;
  border-color: #4dabff;
}

.mobile-menu__socials {
  display: flex;
  gap: 1rem;
}

.mobile-menu__social {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-menu__social:hover {
  background: #fff;
  color: #003399;
  border-color: #fff;
}

/* Prevent scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* Section Headings */
.section-title-wrap {
  margin-bottom: 3rem;
}

.section-kicker {
  display: block;
  color: #4dabff;
  font-weight: 600;
  text-transform: uppercase;
  
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
}

.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.footer-normal {
  opacity: 1 !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

.object-top-15 {
  object-position: center 15%;
}
