:root{--page-title-display:none;}/* Start custom CSS *//* --- Global Variables & Fonts --- */
:root {
  --ink:        #16233F;   /* deep indigo */
  --sky:        #22406B;   /* secondary blue */
  --cloud:      #F3F5F8;   /* cool off-white */
  --cloud-dim:  #E7EBF1;
  --marigold:   #F2A93B;   /* warmth / accent */
  --marigold-deep:#D98D1B;
  --crimson:    #C23B3B;   /* flag-red stamp */
  --line:       rgba(22,35,63,0.14);
  --line-soft:  rgba(243,245,248,0.18);

  --display: "Fraunces", serif;
  --body: "Manrope", sans-serif;
  --mono: "Space Mono", monospace;
}

/* --- Base Layout & Typography Overrides --- */
.el-custom-body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.55;
}

.el-custom-body h1, 
.el-custom-body h2, 
.el-custom-body h3 {
  font-family: var(--display); 
  font-weight: 600; 
  line-height: 1.08; 
  letter-spacing: -0.01em;
}

.el-custom-body .eyebrow {
  font-family: var(--mono); 
  font-size: 12.5px; 
  letter-spacing: 0.14em; 
  text-transform: uppercase;
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  color: var(--marigold-deep);
}
.el-custom-body .eyebrow::before {
  content: ""; 
  width: 22px; 
  height: 1px; 
  background: var(--marigold-deep);
}

.el-custom-body .wrap {
  max-width: 1180px; 
  margin: 0 auto; 
  padding: 0 32px;
}

/* --- Scroll Reveal Animations --- */
.el-custom-body .reveal {
  opacity: 0; 
  transform: translateY(22px); 
  transition: opacity .7s ease, transform .7s ease;
}
.el-custom-body .reveal.in {
  opacity: 1; 
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .el-custom-body .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Navigation --- */
.el-custom-body header {
  position: sticky; 
  top: 0; 
  z-index: 50;
  background: rgba(22,35,63,0.92); 
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.el-custom-body nav {
  max-width: 1180px; 
  margin: 0 auto; 
  padding: 16px 32px;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  color: var(--cloud);
}
.el-custom-body .logo {
  font-family: var(--display); 
  font-weight: 700; 
  font-size: 20px; 
  color: #fff; 
  display: flex; 
  align-items: center; 
  gap: 8px;
}
.el-custom-body .logo span { color: var(--marigold); }
.el-custom-body .nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
.el-custom-body .nav-links a { opacity: 0.82; transition: opacity .2s; }
.el-custom-body .nav-links a:hover { opacity: 1; }
.el-custom-body .nav-cta {
  font-family: var(--mono); 
  font-size: 13px; 
  letter-spacing: 0.03em;
  background: var(--marigold); 
  color: var(--ink); 
  padding: 10px 18px; 
  border-radius: 2px;
  font-weight: 700; 
  transition: background .2s;
}
.el-custom-body .nav-cta:hover { background: #fff; }
@media (max-width: 760px) { .el-custom-body .nav-links { display: none; } }

/* --- Hero Section --- */
.el-custom-body .hero {
  background:
    radial-gradient(ellipse at 80% -10%, rgba(242,169,59,0.16), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, #101b32 100%);
  color: var(--cloud);
  padding: 96px 0 0;
  overflow: hidden;
}
.el-custom-body .hero-grid {
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 48px; 
  align-items: center;
  padding-bottom: 40px;
}
.el-custom-body .hero h1 { font-size: clamp(34px,4.6vw,56px); color: #fff; }
.el-custom-body .hero h1 em { font-style: italic; color: var(--marigold); font-weight: 500; }
.el-custom-body .hero p.lead {
  margin-top: 20px; 
  font-size: 17.5px; 
  max-width: 46ch; 
  color: rgba(243,245,248,0.82);
}
.el-custom-body .hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.el-custom-body .btn-primary {
  background: var(--marigold); 
  color: var(--ink); 
  font-weight: 700;
  padding: 14px 26px; 
  border-radius: 2px; 
  font-size: 15px; 
  border: 1px solid var(--marigold);
  transition: transform .18s ease, background .18s ease;
}
.el-custom-body .btn-primary:hover { transform: translateY(-2px); background: #ffbe5c; }
.el-custom-body .btn-ghost {
  padding: 14px 26px; 
  border-radius: 2px; 
  font-size: 15px; 
  font-weight: 600;
  border: 1px solid rgba(243,245,248,0.35); 
  color: #fff;
  transition: border-color .18s ease, background .18s ease;
}
.el-custom-body .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.el-custom-body .route-tag {
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  margin-top: 34px;
  font-family: var(--mono); 
  font-size: 12.5px; 
  letter-spacing: 0.08em; 
  color: rgba(243,245,248,0.65);
}
.el-custom-body .route-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--marigold); }

.el-custom-body .hero-art { position: relative; }
.el-custom-body .hero-art svg { width: 100%; height: auto; }
.el-custom-body .plane {
  animation: float 4.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) rotate(-6deg); }
  50% { transform: translate(-6px,-10px) rotate(-3deg); }
}

/* --- Trust Strip --- */
.el-custom-body .strip { background: var(--ink); border-top: 1px solid var(--line-soft); }
.el-custom-body .strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.el-custom-body .strip-item { padding: 26px 28px; border-left: 1px solid var(--line-soft); color: var(--cloud); }
.el-custom-body .strip-item:first-child { border-left: none; }
.el-custom-body .strip-item .num { font-family: var(--mono); font-size: 12px; color: var(--marigold); letter-spacing: .1em; }
.el-custom-body .strip-item p { font-family: var(--display); font-size: 17px; margin-top: 6px; font-weight: 500; color: #fff; }

@media (max-width: 760px) {
  .el-custom-body .strip .wrap { grid-template-columns: 1fr; }
  .el-custom-body .strip-item { border-left: none; border-top: 1px solid var(--line-soft); }
  .el-custom-body .strip-item:first-child { border-top: none; }
}

/* --- Why Choose Us --- */
.el-custom-body .why { padding: 100px 0 80px; }
.el-custom-body .why-head { max-width: 640px; margin-bottom: 56px; }
.el-custom-body .why-head h2 { font-size: clamp(28px,3.4vw,40px); margin-top: 14px; }
.el-custom-body .why-head p { margin-top: 16px; color: rgba(22,35,63,0.72); font-size: 16px; max-width: 56ch; }

.el-custom-body .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.el-custom-body .why-card {
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: 4px; 
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.el-custom-body .why-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(22,35,63,0.35); }
.el-custom-body .why-card .icon { width: 38px; height: 38px; margin-bottom: 18px; }
.el-custom-body .why-card h3 { font-size: 19px; font-weight: 600; }
.el-custom-body .why-card p { margin-top: 10px; font-size: 14.5px; color: rgba(22,35,63,0.68); }

@media (max-width: 900px) { .el-custom-body .card-grid { grid-template-columns: 1fr; } }

/* --- Journey Process --- */
.el-custom-body .journey {
  background: var(--ink); 
  color: var(--cloud); 
  padding: 100px 0 110px; 
  position: relative;
  overflow: hidden;
}
.el-custom-body .journey::before {
  content: ""; 
  position: absolute; 
  inset: 0;
  background-image: radial-gradient(rgba(243,245,248,0.06) 1px, transparent 1px);
  background-size: 26px 26px; 
  opacity: 0.5; 
  pointer-events: none;
}
.el-custom-body .journey-head { max-width: 640px; margin-bottom: 56px; position: relative; }
.el-custom-body .journey-head h2 { color: #fff; font-size: clamp(28px,3.4vw,40px); margin-top: 14px; }
.el-custom-body .journey-head p { margin-top: 16px; color: rgba(243,245,248,0.72); font-size: 16px; }

.el-custom-body .pass-row { display: flex; flex-direction: column; gap: 22px; position: relative; }
.el-custom-body .pass {
  display: grid; 
  grid-template-columns: 110px 1fr 130px;
  background: linear-gradient(180deg,#1c2c4d,#182746);
  border: 1px solid rgba(243,245,248,0.14); 
  border-radius: 6px;
  position: relative; 
  overflow: hidden;
}
.el-custom-body .pass::after {
  content: ""; 
  position: absolute; 
  right: 130px; 
  top: 0; 
  bottom: 0; 
  width: 0;
  border-left: 2px dashed rgba(243,245,248,0.25);
}
.el-custom-body .pass-step {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  padding: 22px 10px; 
  border-right: 1px solid rgba(243,245,248,0.1);
}
.el-custom-body .pass-step .label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: rgba(243,245,248,0.5); }
.el-custom-body .pass-step .n { font-family: var(--display); font-size: 34px; color: var(--marigold); font-weight: 600; }
.el-custom-body .pass-body { padding: 22px 26px; }
.el-custom-body .pass-body h3 { font-size: 18.5px; color: #fff; font-weight: 600; }
.el-custom-body .pass-body p { margin-top: 6px; font-size: 14.5px; color: rgba(243,245,248,0.68); max-width: 52ch; }
.el-custom-body .pass-stamp {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-direction: column; 
  gap: 4px;
  padding: 22px 14px;
}
.el-custom-body .stamp-circle {
  width: 64px; 
  height: 64px; 
  border-radius: 50%; 
  border: 1.5px solid var(--crimson);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transform: rotate(-8deg);
  font-family: var(--mono); 
  font-size: 9.5px; 
  letter-spacing: .06em; 
  color: #f4a9a9; 
  text-align: center;
  line-height: 1.25; 
  opacity: 0.85;
}

@media (max-width: 760px) {
  .el-custom-body .pass { grid-template-columns: 80px 1fr; }
  .el-custom-body .pass-stamp { display: none; }
  .el-custom-body .pass::after { display: none; }
  .el-custom-body .pass-step { padding: 18px 6px; }
  .el-custom-body .pass-body { padding: 18px 18px; }
}

/* --- Form / Application Section --- */
.el-custom-body .apply { padding: 100px 0 110px; }
.el-custom-body .apply-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.el-custom-body .apply-info h2 { font-size: clamp(28px,3.2vw,38px); margin-top: 14px; }
.el-custom-body .apply-info p { margin-top: 16px; color: rgba(22,35,63,0.72); font-size: 16px; max-width: 44ch; }
.el-custom-body .apply-points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.el-custom-body .apply-points div { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: rgba(22,35,63,0.78); }
.el-custom-body .apply-points span {
  font-family: var(--mono); 
  font-size: 11px; 
  color: var(--marigold-deep); 
  border: 1px solid var(--marigold);
  border-radius: 50%; 
  width: 20px; 
  height: 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  margin-top: 2px;
}

.el-custom-body form {
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: 6px; 
  padding: 38px;
  box-shadow: 0 24px 60px -30px rgba(22,35,63,0.25);
}
.el-custom-body .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.el-custom-body .field { margin-bottom: 18px; }
.el-custom-body .field.full { grid-column: 1 / -1; }
.el-custom-body label {
  display: block; 
  font-family: var(--mono); 
  font-size: 11.5px; 
  letter-spacing: .06em; 
  text-transform: uppercase;
  color: rgba(22,35,63,0.6); 
  margin-bottom: 7px;
}
.el-custom-body input, 
.el-custom-body select, 
.el-custom-body textarea {
  width: 100%; 
  border: 1px solid var(--line); 
  border-radius: 3px; 
  padding: 12px 14px;
  font-family: var(--body); 
  font-size: 14.5px; 
  color: var(--ink); 
  background: var(--cloud);
  transition: border-color .2s, background .2s;
}
.el-custom-body input:focus, 
.el-custom-body select:focus, 
.el-custom-body textarea:focus {
  outline: none; 
  border-color: var(--marigold-deep); 
  background: #fff;
}
.el-custom-body textarea { resize: vertical; min-height: 90px; }
.el-custom-body .submit-btn {
  width: 100%; 
  margin-top: 6px; 
  padding: 15px 22px; 
  background: var(--ink); 
  color: #fff;
  font-weight: 700; 
  border-radius: 3px; 
  border: none; 
  font-size: 15px; 
  cursor: pointer;
  transition: background .2s;
}
.el-custom-body .submit-btn:hover { background: var(--sky); }
.el-custom-body .form-note { font-size: 12.5px; color: rgba(22,35,63,0.55); margin-top: 12px; text-align: center; }

@media (max-width: 900px) {
  .el-custom-body .apply-grid { grid-template-columns: 1fr; }
  .el-custom-body .form-row { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.el-custom-body footer {
  background: var(--ink); 
  color: rgba(243,245,248,0.6); 
  padding: 48px 0 32px;
  border-top: 1px solid var(--line-soft); 
  font-size: 13.5px;
}
.el-custom-body .footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.el-custom-body footer .logo { font-size: 17px; }/* End custom CSS */