/* Font Awesome icon helpers */
.fa-solid, .fa-brands, .fa-regular { line-height: 1; }

/* ====================================================
   CONEXIÓN CANADÁ – Main Stylesheet
   Colors: Red #CC0000 | White #FFFFFF | Dark #0D0D0D
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Design Tokens ---- */
:root {
  --red:        #CC0000;
  --red-dark:   #990000;
  --red-light:  #ff3333;
  --white:      #ffffff;
  --off-white:  #f8f8f8;
  --gray-100:   #f4f4f4;
  --gray-200:   #e8e8e8;
  --gray-400:   #aaaaaa;
  --gray-600:   #555555;
  --dark:       #0d0d0d;
  --dark-2:     #1a1a1a;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ==================================================
   NAVBAR
   ================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--dark); }
.nav-logo span { color: var(--red); }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--gray-600); }
#navbar.scrolled .nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,0,0,.4) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
#navbar.scrolled .hamburger span { background: var(--dark); }

/* ==================================================
   HERO
   ================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Evita que el navbar superponga el contenido */
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/vancouver_hero_hd.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.72) 0%,
    rgba(204,0,0,.35) 50%,
    rgba(0,0,0,.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 780px;
  /* Transform softened so it does not collide with navbar */
  transform: translateY(-4vh);
}

@media (max-height: 800px) {
  .hero-content { transform: translateY(0); margin-top: 2rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp .8s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .7; }
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.02em;
  animation: fadeUp .9s .1s ease both;
}
.hero-title span {
  color: var(--red-light);
  display: inline-block;
}
.hero-subtitle {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.82);
  font-weight: 400;
  max-width: 560px;
  animation: fadeUp 1s .2s ease both;
}
.hero-actions {
  margin-top: 0.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s .3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(204,0,0,.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}
.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  display: flex;
  gap: 2rem;
  z-index: 2;
  animation: fadeUp 1s .4s ease both;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .78rem;
  opacity: .75;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
  animation: scrollLine 1.5s ease infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ==================================================
   SECTION GENERIC
   ================================================== */
.section { padding: 6rem 5vw; }
.section-alt { background: var(--gray-100); }
.section-red { background: var(--red); }
.section-dark { background: var(--dark); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}
.section-tag::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-subtitle {
  margin-top: .75rem;
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
}
.center { text-align: center; }
.section-title.white { color: var(--white); }
.section-subtitle.white { color: rgba(255,255,255,.75); }

/* ==================================================
   ABOUT / QUIÉNES SOMOS
   ================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(204,0,0,.4);
}
.about-img-badge .big { font-size: 1.8rem; font-weight: 900; display: block; line-height: 1; color: #fff; }
.about-img-badge .small { font-size: .8rem; opacity: .85; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(204,0,0,.15);
  transform: translateY(-3px);
}
.value-icon {
  font-size: 1.5rem;
  margin-bottom: .6rem;
  color: var(--red);
  width: 42px; height: 42px;
  background: rgba(204,0,0,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.value-title { font-weight: 700; font-size: .95rem; color: var(--dark); }
.value-desc { font-size: .83rem; color: var(--gray-600); margin-top: .3rem; line-height: 1.5; }

/* ==================================================
   VANCOUVER
   ================================================== */
.vancouver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.van-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.van-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.van-card-img {
  height: 200px;
  background: linear-gradient(135deg, #cc0000 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.9);
}
.van-card-body { padding: 1.5rem; }
.van-card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.van-card-body p { font-size: .88rem; color: var(--gray-600); margin-top: .5rem; line-height: 1.6; }
.van-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.van-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.van-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}
.van-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
  letter-spacing: .04em;
}

/* ==================================================
   PROGRAMS / PAQUETES
   ================================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.program-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.program-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.12);
}
.program-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.program-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}
.program-icon {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: transform var(--transition);
}
.program-card:hover .program-icon { transform: scale(1.1) rotate(-5deg); }
.program-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--dark); }
.program-header p { font-size: .88rem; color: var(--gray-600); margin-top: .4rem; }
.program-features {
  padding: 1.5rem 2rem 2rem;
}
.program-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--dark-2);
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.program-features li:last-child { border-bottom: none; }
.feature-check {
  width: 20px; height: 20px;
  background: rgba(204,0,0,.1);
  color: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.program-cta {
  padding: 0 2rem 2rem;
}
.program-card.brand-card {
  background: linear-gradient(160deg, #fff 60%, rgba(204,0,0,.04) 100%);
  border-color: rgba(204,0,0,.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-card.brand-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(204,0,0,.18);
}

/* ==================================================
   DOCUMENTATION
   ================================================== */
.docs-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.docs-list-group { margin-bottom: 2rem; }
.docs-list-group h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.docs-list-group h3 span {
  width: 28px; height: 28px;
  background: rgba(204,0,0,.1);
  color: var(--red);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: .6rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.doc-item:hover {
  border-color: var(--red);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.doc-icon {
  font-size: 1.1rem;
  color: var(--red);
  width: 34px; height: 34px;
  background: rgba(204,0,0,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.doc-info .doc-name { font-size: .9rem; font-weight: 600; color: var(--dark); }
.doc-info .doc-note { font-size: .78rem; color: var(--gray-600); }
.doc-optional {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: .25rem .6rem;
  border-radius: 50px;
  white-space: nowrap;
}
.doc-required {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(204,0,0,.08);
  padding: .25rem .6rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* Upload Box */
.upload-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.upload-box h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.upload-box p { font-size: .88rem; color: var(--gray-600); margin-bottom: 2rem; }
.upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--gray-100);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.upload-area:hover, .upload-area.dragover {
  border-color: var(--red);
  background: rgba(204,0,0,.03);
}
.upload-area .upload-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
  color: var(--gray-400);
  transition: color var(--transition);
}
.upload-area:hover .upload-icon { color: var(--red); }
.upload-area .upload-text { font-size: .9rem; color: var(--gray-600); font-weight: 500; }
.upload-area .upload-sub { font-size: .78rem; color: var(--gray-400); margin-top: .4rem; }
.upload-area input[type="file"] { display: none; }
.uploaded-files { margin-bottom: 1.5rem; }
.uploaded-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .7rem;
  background: rgba(204,0,0,.05);
  border: 1px solid rgba(204,0,0,.15);
  border-radius: var(--radius-sm);
  margin-bottom: .5rem;
  animation: slideIn .3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.uploaded-item .file-icon { font-size: 1.1rem; }
.uploaded-item .file-name { font-size: .82rem; font-weight: 600; color: var(--dark); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uploaded-item .file-remove {
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.uploaded-item .file-remove:hover { background: var(--red-dark); }
.form-field {
  margin-bottom: 1rem;
}
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: .4rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.12);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* ==================================================
   ADVISOR / ORIENTADOR
   ================================================== */
.advisor-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.advisor-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.advisor-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.advisor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .45rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark-2);
  transition: border-color var(--transition), color var(--transition);
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip .fa-solid, .chip .fa-brands { font-size: .85rem; color: var(--red); }

/* WhatsApp Floating CTA */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: .9rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.whatsapp-float .wa-icon { font-size: 1.4rem; animation: wiggle 2s ease infinite; line-height: 1; }
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  20%       { transform: rotate(-12deg); }
  40%       { transform: rotate(12deg); }
  60%       { transform: rotate(-6deg); }
}
.wa-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: waPulse 1.5s ease infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.35); }
}

/* ==================================================
   EXPERIENCE / VIVIR
   ================================================== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card.big {
  grid-column: 1 / -1;
  background: linear-gradient(to right, var(--red) 0%, #880000 100%);
  color: var(--white);
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
.exp-num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.15);
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.exp-card.big .exp-num { font-size: 7rem; }
.exp-emoji {
  font-size: 2rem;
  color: var(--red);
  width: 52px; height: 52px;
  background: rgba(204,0,0,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.exp-card.big .exp-emoji {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.exp-title { font-size: 1.15rem; font-weight: 700; }
.exp-desc { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }
.exp-card.big .exp-desc { color: rgba(255,255,255,.8); }

/* ==================================================
   FAQ / STEPS
   ================================================== */
.steps-timeline {
  max-width: 760px;
  margin: 3rem auto 0;
}
.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 26px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--gray-200);
}
.step-num {
  width: 52px; height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(204,0,0,.35);
  z-index: 1;
}
.step-content { flex: 1; padding-top: .6rem; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.step-content p { font-size: .88rem; color: var(--gray-600); margin-top: .4rem; line-height: 1.6; }

/* ==================================================
   FOOTER
   ================================================== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 5vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .8rem;
}
.footer-brand .brand-name span { color: var(--red); }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .7rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.2rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.social-btn:hover { color: #fff; }
.social-btn:hover { background: var(--red); transform: translateY(-3px); }

/* ==================================================
   ANIMATIONS
   ================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Animation delays for grids */
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ==================================================
   MOBILE MENU
   ================================================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--white);
  background: none; border: none;
  transition: color var(--transition);
}
.mobile-close:hover { color: var(--red); }

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1024px) {
  .about-grid, .docs-layout, .advisor-section { grid-template-columns: 1fr; gap: 3rem; }
  .vancouver-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .van-highlight { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .exp-card.big { flex-direction: column; gap: 1rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { transform: translateY(0); margin-top: 2rem; }
  .hero-stats { position: static; display: flex; gap: 2rem; margin-top: 3rem; padding: 0 5vw; flex-wrap: wrap; }
  .programs-grid { grid-template-columns: 1fr; }
  .vancouver-grid { grid-template-columns: 1fr; }
  .van-highlight { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .whatsapp-float span:not(.wa-icon):not(.wa-pulse) { display: none; }
  .whatsapp-float { padding: .9rem; border-radius: 50%; }
  .upload-box { position: static; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 5vw; }
  .hero-content { padding: 0 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { justify-content: center; }
}
