/* Serene Overseas – single destination page + apply form */
.serene-single {
  --navy: #01365e;
  --accent: #de2353;
  --ink: #2b3440;
  --muted: #6a7480;
  --line: #e9e6ed;
  color: var(--ink);
}
.serene-single * {
  box-sizing: border-box;
}
.serene-single .ss-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.serene-single .ss-hero {
  position: relative;
  background: #0d2b4e center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.serene-single .ss-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(1, 54, 94, 0.92),
    rgba(1, 54, 94, 0.55) 60%,
    rgba(1, 54, 94, 0.25)
  );
}
.serene-single .ss-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 56px;
}
.serene-single .ss-flag {
  width: 56px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}
.serene-single .ss-eyebrow {
  display: block;
  color: #cfe0f5;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.serene-single .ss-title {
  color: #fff;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 18px;
}
.serene-single .ss-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.serene-single .ss-badge {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 0;
  color: #fff;
}
.serene-single .ss-badge.is-free {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}
.serene-single .ss-badge.is-partial {
  background: linear-gradient(135deg, #f4a623, #e8941a);
}
.serene-single .ss-badge.ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.serene-single .ss-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 34px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 26px rgba(222, 35, 83, 0.35);
}
.serene-single .ss-cta:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* Facts */
.serene-single .ss-facts {
  background: var(--navy);
  max-width: 1133px;
  margin: auto;
  margin-top: -30px;
}
.serene-single .ss-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.serene-single .ss-fact {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.serene-single .ss-fact:last-child {
  border-right: 0;
}
.serene-single .ss-fact-k {
  display: block;
  color: #9fc0e6;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.serene-single .ss-fact-v {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* Body */
.serene-single .ss-body {
  padding: 64px 20px;
}
.serene-single .ss-h2 {
  color: var(--navy);
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 22px;
}
.serene-single .ss-h2 .ss-count {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  padding: 2px 12px;
  vertical-align: middle;
  margin-left: 8px;
}
.serene-single .ss-prose {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 820px;
}
.serene-single .ss-overview {
  margin-bottom: 56px;
}

/* Universities */
.serene-single .ss-uni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.serene-single .ss-uni-card {
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.serene-single .ss-uni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(1, 54, 94, 0.12);
}
.serene-single .ss-uni-img {
  height: 120px;
  background: #dfe6ef center/cover no-repeat;
}
.serene-single .ss-uni-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding: 16px 16px 8px;
  flex: 1 1 auto;
}
.serene-single .ss-uni-link {
  display: inline-block;
  padding: 0 16px 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}
.serene-single .ss-uni-link:hover {
  text-decoration: underline;
}
.serene-single .ss-unis {
  margin-bottom: 56px;
}

/* Apply section */
.serene-single .ss-apply-wrap {
  background: #f6f8fc;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 44px;
  scroll-margin-top: 90px;
}
.serene-single .ss-apply-head {
  text-align: center;
  margin-bottom: 30px;
}
.serene-single .ss-apply-head p {
  color: var(--muted);
  margin: 6px 0 0;
}

/* Multi-step form */
.serene-apply {
  max-width: 720px;
  margin: 0 auto;
}
.serene-apply .sa-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
  position: relative;
}
.serene-apply .sa-progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.serene-apply .sa-step-dot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.serene-apply .sa-step-dot i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s ease;
}
.serene-apply .sa-step-dot.is-active i,
.serene-apply .sa-step-dot.is-done i {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.serene-apply .sa-step-dot.is-active b {
  color: var(--navy);
}
.serene-apply .sa-step {
  display: none;
  animation: sa-fade 0.3s ease;
}
.serene-apply .sa-step.is-active {
  display: block;
}
@keyframes sa-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.serene-apply h3 {
  color: var(--navy);
  font-size: 20px;
  margin: 0 0 18px;
}
.serene-apply .sa-field {
  margin-bottom: 16px;
}
.serene-apply .sa-field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 6px;
}
.serene-apply .sa-field input,
.serene-apply .sa-field select,
.serene-apply .sa-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease;
}
.serene-apply .sa-field input:focus,
.serene-apply .sa-field select:focus,
.serene-apply .sa-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(1, 54, 94, 0.08);
}
.serene-apply .sa-field.has-error input,
.serene-apply .sa-field.has-error select {
  border-color: var(--accent);
}
.serene-apply .sa-hint {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 16px;
}

/* University multi-select */
.serene-apply .sa-unis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-height: 340px;
  overflow: auto;
  padding: 2px;
}
.serene-apply .sa-uni {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.serene-apply .sa-uni:hover {
  border-color: var(--navy);
}
.serene-apply .sa-uni input {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.serene-apply .sa-uni.is-checked {
  border-color: var(--accent);
  background: rgba(222, 35, 83, 0.04);
}
.serene-apply .sa-uni-img {
  width: 38px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: #dfe6ef center/cover no-repeat;
}
.serene-apply .sa-uni-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* Review */
.serene-apply .sa-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px 18px;
}
.serene-apply .sa-review .sa-r {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.serene-apply .sa-review .sa-r:last-child {
  border-bottom: 0;
}
.serene-apply .sa-review .sa-r span:first-child {
  color: var(--muted);
}
.serene-apply .sa-review .sa-r span:last-child {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* Nav + honeypot + result */
.serene-apply .sa-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.serene-apply .sa-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}
.serene-apply .sa-btn {
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 0;
  transition: all 0.25s ease;
}
.serene-apply .sa-next,
.serene-apply .sa-submit {
  background: var(--accent);
  color: #fff;
  margin-left: auto;
}
.serene-apply .sa-next:hover,
.serene-apply .sa-submit:hover {
  background: var(--navy);
}
.serene-apply .sa-back {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 50px;
}
.serene-apply .sa-back:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.serene-apply .sa-result {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}
.serene-apply .sa-result.ok {
  background: #e7f8ee;
  color: #1c8a4c;
  border: 1px solid #bfe9cf;
}
.serene-apply .sa-result.err {
  background: #fdeaef;
  color: #c02851;
  border: 1px solid #f6c9d6;
}

/* Responsive */
@media (max-width: 900px) {
  .serene-single .ss-title {
    font-size: 38px;
  }
  .serene-single .ss-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .serene-single .ss-fact:nth-child(2) {
    border-right: 0;
  }
  .serene-single .ss-uni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .serene-single .ss-apply-wrap {
    padding: 24px 16px;
  }
  .serene-single .ss-uni-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .serene-apply .sa-unis {
    grid-template-columns: 1fr;
  }
  .serene-apply .sa-step-dot b {
    display: none;
  }
  .serene-single .ss-fact-v {
    font-size: 13px;
  }
  .serene-single .ss-fact {
    padding: 13px 13px;
  }
  .serene-single .ss-body {
    padding: 40px 20px;
  }
  .serene-single .ss-h2 {
    font-size: 22px;
  }
  .serene-single p {
    font-size: 16px;
  }
}
