:root {
  --navy:#0D2B4E;
  --teal:#1A7A8A;
  --teal-light:#2BBFCE;
  --sky:#E8F6F9;
  --white:#fff;
  --gray:#F4F7FA;
  --text:#1A2A3A;
  --muted:#6B8099;
  --danger:#E74C3C;
  --success:#27AE60;
  --shadow:0 24px 70px rgba(13,43,78,.14);
}

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

html {
  scroll-behavior:smooth;
}

body {
  font-family:'DM Sans',sans-serif;
  color:var(--text);
  background:var(--gray);
}

h1,h2,h3 {
  font-family:'Syne',sans-serif;
}

a {
  text-decoration:none;
  color:inherit;
}

/* ── NAVBAR ── */
.header {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px max(24px,calc((100vw - 1180px)/2));
  background:#0b1f3a;
  backdrop-filter:blur(18px);
  border-bottom:none;
}

.brand img {
  height:48px;
  object-fit:contain;
}

.nav {
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  font-weight:700;
}

.nav a {
  color:rgba(255,255,255,.82);
  transition:opacity .2s;
}

.nav a:hover {
  color:#fff;
  opacity:1;
}

.nav-cta {
  padding:11px 22px;
  border-radius:999px;
  color:#0b1f3a !important;
  background:#3ecfb2;
  font-weight:800;
  transition:.2s ease;
}

.nav-cta:hover {
  background:#2fb89d;
}

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.burger {
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:42px;
  height:42px;
  border:none;
  background:rgba(255,255,255,.1);
  border-radius:10px;
  cursor:pointer;
  padding:0;
  flex-shrink:0;
}

.burger span {
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:transform .3s ease, opacity .3s ease;
}

.burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity:0; }
.burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── REST OF STYLES ── */
.apply-hero {
  min-height:680px;
  padding:150px max(24px,calc((100vw - 1180px)/2)) 80px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:60px;
  background:
    radial-gradient(circle at 8% 16%, rgba(43,191,206,.18), transparent 30%),
    linear-gradient(135deg,var(--navy),#0F3A5A 60%,#1A5070);
}

.badge {
  display:inline-flex;
  width:max-content;
  padding:8px 16px;
  border-radius:999px;
  color:var(--teal-light);
  background:rgba(43,191,206,.14);
  border:1px solid rgba(43,191,206,.28);
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}

.apply-hero h1 {
  color:white;
  font-size:clamp(42px,5vw,70px);
  line-height:1.08;
  margin-bottom:24px;
}

.apply-hero p {
  color:rgba(255,255,255,.72);
  font-size:18px;
  line-height:1.85;
  max-width:720px;
}

.process {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:42px;
}

.process div {
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.process strong {
  display:block;
  color:var(--teal-light);
  font-family:'Syne',sans-serif;
  font-size:24px;
  margin-bottom:8px;
}

.process span {
  color:rgba(255,255,255,.7);
  font-size:14px;
  line-height:1.5;
}

.info-card {
  border-radius:30px;
  padding:36px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(20px);
  box-shadow:var(--shadow);
}

.info-card h2 {
  color:white;
  font-size:34px;
  margin-bottom:14px;
}

.info-card p { font-size:16px; }

.info-card ul {
  list-style:none;
  margin-top:26px;
  display:grid;
  gap:14px;
}

.info-card li {
  color:rgba(255,255,255,.82);
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
}

.info-card li::before {
  content:'✓ ';
  color:var(--teal-light);
  font-weight:900;
}

.form-section {
  padding:90px max(24px,calc((100vw - 1180px)/2));
}

.form-card {
  background:white;
  border-radius:34px;
  padding:44px;
  box-shadow:var(--shadow);
  border:1px solid rgba(26,122,138,.1);
}

.form-head { margin-bottom:32px; }

.form-head .badge {
  color:var(--teal);
  background:rgba(43,191,206,.13);
}

.form-head h2 {
  color:var(--navy);
  font-size:clamp(30px,4vw,50px);
  margin-bottom:12px;
}

.form-head p {
  color:var(--muted);
  line-height:1.8;
}

.form-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:20px;
}

label {
  display:grid;
  gap:9px;
  color:var(--navy);
  font-weight:800;
  font-size:14px;
}

input, textarea, select {
  width:100%;
  border:1px solid rgba(13,43,78,.13);
  background:#fff;
  border-radius:16px;
  padding:16px 18px;
  outline:none;
  font:inherit;
  color:var(--text);
  transition:.2s ease;
}

textarea {
  resize:vertical;
  min-height:130px;
}

input:focus, textarea:focus, select:focus {
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(43,191,206,.12);
}

.consent-box {
  margin-top:22px;
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:18px;
  border-radius:18px;
  background:var(--sky);
  border:1px solid rgba(26,122,138,.12);
}

.consent-box input {
  width:18px;
  height:18px;
  margin-top:4px;
  accent-color:var(--teal);
  flex-shrink:0;
}

.consent-box label {
  display:block;
  color:var(--muted);
  font-weight:600;
  line-height:1.7;
}

.submit-btn {
  margin-top:26px;
  border:0;
  cursor:pointer;
  min-height:56px;
  padding:0 34px;
  border-radius:999px;
  color:white;
  font-weight:900;
  font-size:16px;
  background:linear-gradient(135deg,var(--teal),var(--teal-light));
  box-shadow:0 14px 35px rgba(26,122,138,.28);
  transition:.25s ease;
}

.submit-btn:hover {
  transform:translateY(-3px);
  box-shadow:0 18px 45px rgba(26,122,138,.38);
}

.message {
  margin-top:18px;
  font-weight:800;
  line-height:1.7;
}

.whatsapp {
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:60;
  color:white;
  background:#25D366;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 12px 34px rgba(37,211,102,.35);
}

.checkbox-group { margin-top:26px; }

.checkbox-group h3 {
  color:var(--navy);
  margin-bottom:18px;
  font-size:20px;
  font-weight:900;
}

.check-item {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  margin-bottom:12px;
  border-radius:16px;
  background:#f8fbfd;
  border:1px solid var(--border);
  cursor:pointer;
  transition:.25s ease;
}

.check-item:hover {
  border-color:var(--teal);
  background:rgba(43,191,206,.06);
}

.check-item input[type="checkbox"] {
  width:18px;
  height:18px;
  accent-color:var(--teal);
}

.check-item span {
  color:var(--text);
  font-weight:700;
}

/* ── MOBILE ── */
@media(max-width:980px) {

  /* Single row: logo left, burger right */
  .header {
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:12px 20px;
    min-height:68px;
  }

  /* Hide desktop nav links on mobile — mobile-menu-soft.css handles the overlay */
  .nav .nav-links { display:none; }

  .apply-hero {
    grid-template-columns:1fr;
    padding-top:110px;
  }

  .process, .form-grid { grid-template-columns:1fr; }
}

@media(max-width:620px) {
  .apply-hero h1 { font-size:38px; }

  .form-card, .info-card {
    padding:24px;
    border-radius:24px;
  }

  .form-section { padding-block:60px; }

  .whatsapp {
    left:14px;
    right:14px;
    text-align:center;
  }
}

/* Social media fields */
.form-grid input[name="instagram"],
.form-grid input[name="facebook"] {
  direction:ltr;
  text-align:left;
}

.form-grid input[name="instagram"]::placeholder,
.form-grid input[name="facebook"]::placeholder {
  color:rgba(107,128,153,.7);
}
