:root {
  --ea-primary: #006fe6;
  --ea-accent: #31b000;
  --ea-black: #000000;
  --ea-white: #ffffff;
  --ea-grey: #f6f6f6;
}

* {
  box-sizing: border-box;
}

body.ea-body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ea-grey);
  color: var(--ea-black);
}

.ea-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 5vw;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ea-logo-group {
  display: flex;
  align-items: center;
}

.ea-logo-image {
  height: 42px;
}

.ea-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.ea-nav a {
  text-decoration: none;
  color: var(--ea-black);
  opacity: 0.8;
}

.ea-nav a:hover {
  opacity: 1;
}

.ea-btn {
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ea-btn-primary {
  background: linear-gradient(135deg, var(--ea-primary), #3f8df3);
  color: var(--ea-white);
  box-shadow: 0 10px 25px rgba(0, 111, 230, 0.35);
}

.ea-btn-secondary {
  background: var(--ea-white);
  color: var(--ea-primary);
  border: 1px solid rgba(0, 111, 230, 0.2);
}

.ea-btn-outline {
  background: transparent;
  color: var(--ea-primary);
  border: 1px solid rgba(0, 111, 230, 0.25);
}

.ea-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.ea-hero {
  min-height: 80vh;
  padding: 5rem 5vw 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(0, 111, 230, 0.13), transparent 55%),
    radial-gradient(circle at bottom right, rgba(49, 176, 0, 0.12), transparent 55%), var(--ea-grey);
}

.ea-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--ea-accent);
  margin-bottom: 0.75rem;
}

.ea-hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.4rem);
  margin: 0 0 1rem;
}

.ea-hero-highlight {
  color: var(--ea-accent);
}

.ea-hero-sub {
  font-size: 1rem;
  max-width: 34rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.ea-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.ea-hero-microcopy {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.ea-hero-visual {
  position: relative;
  min-height: 260px;
}

.ea-hero-photo {
  position: absolute;
  inset: 14% 10% 8% 12%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.ea-hero-globe {
  position: absolute;
  inset: 10% 5% 5% 10%;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(0, 111, 230, 0.4));
  box-shadow: 0 25px 60px rgba(0, 111, 230, 0.35);
}

.ea-hero-pathway {
  position: absolute;
  inset: 50% 8% 20% 8%;
  border-radius: 999px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  transform: rotate(-8deg);
}

.ea-section {
  padding: 3.5rem 5vw;
}

.ea-section-header h2 {
  margin: 0 0 0.4rem;
}

.ea-section-header p {
  margin: 0;
  opacity: 0.8;
}

.ea-two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1.8rem;
}

.ea-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ea-checklist li::before {
  content: "➜";
  color: var(--ea-accent);
  margin-right: 0.5rem;
}

.ea-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Programs page layout */
.ea-program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ea-program-country {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ea-program-country h3 {
  margin: 0;
}

.ea-program-tag {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.ea-program-level h4 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}

.ea-program-level ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
}

.ea-program-level ul li + li {
  margin-top: 0.25rem;
}

.ea-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.ea-card-quote {
  border-left: 4px solid var(--ea-primary);
}

.ea-card-meta {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.75rem;
}

.ea-trust {
  padding: 2rem 5vw 1rem;
}

.ea-trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.ea-stat-card {
  flex: 1 1 160px;
  min-width: 160px;
  max-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ea-stat-icon {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.ea-stat-number {
  font-size: 1.4rem;
  font-weight: 700;
}

.ea-stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.ea-pill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

/* Destinations page cards */
.ea-destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.ea-destination-card {
  position: relative;
  border-radius: 24px;
  padding: 1.75rem 1.75rem 1.5rem;
  background: linear-gradient(135deg, #1545e0, #f35b86);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.ea-destination-card::before {
  content: attr(data-code);
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 3.5rem;
  font-weight: 700;
  opacity: 0.12;
}

.ea-destination-code-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.ea-destination-card h3 {
  margin: 0 0 0.35rem;
}

.ea-destination-card p {
  margin: 0;
  font-size: 0.9rem;
}

.ea-destination-points {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1.3rem;
}

.ea-destination-points li {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.ea-destination-points li::before {
  content: "✓";
  color: #4ade80;
  margin-right: 0.45rem;
}

.ea-destination-cta {
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
}

.ea-pill {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 111, 230, 0.06);
  font-size: 0.8rem;
}

.ea-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.ea-contact-grid {
  margin-top: 2rem;
}

.ea-contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.ea-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.ea-form-row input,
.ea-form-row textarea {
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 0.9rem;
}

.ea-privacy-note {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.ea-faq-list details {
  background: #ffffff;
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.7rem;
}

.ea-footer {
  padding: 1.5rem 5vw 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.ea-footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ea-social-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ea-social-circle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}

.ea-social-ig {
  background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.ea-social-tt {
  background: #000000;
}

.ea-footer-social a {
  color: var(--ea-primary);
  text-decoration: none;
}

.ea-footer-admin a {
  font-size: 0.8rem;
  opacity: 0.75;
}

.ea-modal {
  position: fixed;
  inset: 0;
  display: none;
}

.ea-modal.is-open {
  display: block;
}

.ea-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.ea-modal-dialog {
  position: absolute;
  inset: 7vh 5vw auto;
  max-height: 86vh;
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.25rem 1.25rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
}

.ea-modal-iframe {
  width: 100%;
  height: 60vh;
  border: none;
  border-radius: 12px;
  margin-top: 0.75rem;
}

.ea-modal-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.ea-whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.ea-whatsapp-icon {
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .ea-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .ea-hero-visual {
    order: -1;
    min-height: 220px;
  }

  .ea-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .ea-nav {
    flex-wrap: wrap;
  }
}
