:root {
  --brand-dark: #0a2e50;
  --brand-navy: #0d3f6f;
  --brand-blue: #1b7fc4;
  --brand-sky: #4badd3;
  --brand-pale: #c4e4f5;
  --brand-light: #ebf6fc;
  --brand-red: #e52b2b;
  --brand-crimson: #c41f1f;
  --brand-muted: #5a7a8e;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: 0.4rem;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  margin: 0 auto;
}
/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.5s ease;
  background: #ffffff;
  display: none;
}
.navbar-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0.4rem 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  width: 5rem;
}
.nav-logo-box {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.05rem;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-box span {
  color: #fff;
  font-weight: 900;
  font-size: 0.3rem;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-brand-cn {
  font-weight: 700;
  font-size: 0.35rem;
  letter-spacing: 0.15em;
  color: #fff;
  transition: color 0.3s;
}
.nav-brand-en {
  color: var(--brand-pale);
  font-size: 0.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.8rem;
}

.nav-link {
  font-size: 0.35rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.025em;
  color: var(--brand-muted);
  background: none;
}
.nav-link:hover {
  color: var(--brand-red);
}

.nav-phone {
  font-size: 0.35rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.025em;
  color: var(--brand-pale);
}
.nav-phone:hover {
  color: var(--brand-red);
}

.nav-cta {
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.35rem;
  font-weight: 500;
  transition: background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--brand-crimson);
}
.nav-scrolled {
  display: block;
  box-shadow: 0 0 0.5rem 0 #9f9f9f;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  width: 100%;
  position: relative;
  height: 17.15rem;
  overflow: hidden;
  background: url(../img/banner.jpg) center/100% no-repeat;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.4rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.1rem);
  margin-bottom: 0.8rem;
}
.hero-badge-dot {
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 9999px;
  background: #fff;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hero-badge-text {
  color: #fff;
  font-size: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-title span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-tagline {
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 0.2rem;
}

.hero-red-box {
  display: inline-block;
  background: var(--brand-red);
  padding: 0.2rem 0.6rem;
  border-radius: 0.05rem;
  margin-top: 0.1rem;
}
.hero-red-box p {
  color: #fff;
  font-size: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.35rem;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

.hero-actions {
  display: flex;
  gap: 0.65rem;
  position: absolute;
  bottom: 2.925rem;
  left: 0;
  width: 100%;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.4rem;
  border-radius: 9999px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 0.25rem 0.375rem -0.075rem rgba(229, 43, 43, 0.3);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--brand-crimson);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.8rem;
  border-radius: 9999px;
  border: 0.05rem solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 500;
  font-size: 0.5rem;
  white-space: nowrap;
  transition: all 0.2s;
  background: transparent;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--brand-navy);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.3rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.4rem;
  padding: 0.5rem 0.8rem;
}

.hero-stat {
  text-align: center;
  padding: 0 0.2rem;
}
.hero-stat-num {
  color: #fff;
  font-weight: 900;
  font-size: 0.6rem;
  filter: drop-shadow(0 0.025rem 0.05rem rgba(0, 0, 0, 0.1));
}
.hero-stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.3rem;
  margin-top: 0.1rem;
  letter-spacing: 0.025em;
}
.hero-stat-sublabel {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  opacity: 0.6;
  transition: opacity 0.15s;
  background: none;
  border: none;
  color: inherit;
}
.hero-scroll:hover {
  opacity: 1;
}
.hero-scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.45rem;
  letter-spacing: 0.1em;
}
.hero-scroll-box {
  width: 0.7rem;
  height: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.1rem;
}
.hero-scroll-dot {
  width: 0.1rem;
  height: 0.2rem;
  background: #fff;
  border-radius: 9999px;
  animation: bounce 1s infinite;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 0.6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}
.section-label-bar {
  width: 1.1rem;
  height: 1px;
  background: var(--brand-red);
}
.section-label-text {
  color: var(--brand-red);
  font-size: 0.5rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 500;
}
.section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: .2rem;
}
.section-desc {
  color: var(--brand-muted);
  font-size: 0.5rem;
  margin: 0 auto;
  line-height: 1.625;
}

.bg-white {
  background: #fff;
}
.bg-brand-light {
  background: var(--brand-light);
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.manifesto-card {
  border-radius: 0.4rem;
  padding: 0.8rem;
  border: 1px solid rgba(196, 228, 245, 0.6);
  position: relative;
}
.manifesto-card-left {
  background: var(--brand-light);
}
.manifesto-card-right {
  background: linear-gradient(
    to bottom right,
    rgba(75, 173, 211, 0.15),
    rgba(27, 127, 196, 0.1)
  );
  position: relative;
  overflow: hidden;
  border-color: rgba(75, 173, 211, 0.3);
}
.manifesto-card-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: rgba(75, 173, 211, 0.15);
  border-radius: 9999px;
  transform: translate(0.8rem, -0.8rem);
  filter: blur(1rem);
}

.manifesto-label {
  font-size: 0.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.manifesto-label-muted {
  color: var(--brand-muted);
}
.manifesto-label-blue {
  color: var(--brand-blue);
}

.manifesto-big-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: 0.3rem;
}
.manifesto-big-num span {
  font-size: 0.75rem;
  font-weight: 700;
}
.manifesto-big-num .sky {
  color: var(--brand-sky);
}

.manifesto-text {
  font-size: 0.35rem;
  margin-bottom: 0.6rem;
  line-height: 1.625;
}
.manifesto-text-muted {
  color: var(--brand-muted);
}
.manifesto-text-navy {
  color: rgba(13, 63, 111, 0.7);
}

.manifesto-link {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.35rem;
}
.manifesto-link-muted {
  color: rgba(13, 63, 111, 0.5);
}
.manifesto-link-red {
  color: var(--brand-red);
  font-weight: 500;
}

.brand-statement {
  text-align: center;
}
.brand-statement-label {
  color: var(--brand-muted);
  font-size: 0.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.brand-statement-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.625;
  margin-bottom: 0.4rem;
}
.brand-statement-title .red {
  color: var(--brand-red);
}
.brand-statement-text {
  color: var(--brand-muted);
  font-size: 0.35rem;
  max-width: 16.8rem;
  margin: 0 auto;
  line-height: 1.625;
}
.brand-statement-text strong {
  color: rgba(13, 63, 111, 0.8);
  font-weight: 700;
}
.manifesto-card .btn-primary {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.25rem;
}

.feature-card {
  border-radius: 0.4rem;
  overflow: hidden;
  border: 1px solid rgba(229, 43, 43, 0.2);
  background: linear-gradient(
    to bottom right,
    rgba(229, 43, 43, 0.1),
    rgba(229, 43, 43, 0.05)
  );
  background-color: #fff;
  cursor: pointer;
  transition: transform 0.3s;
  display:flex;
  align-items: stretch;
}
.feature-card:hover {
  transform: scale(1.02);
}
.feature-card:nth-child(2) {
  border-color: rgba(75, 173, 211, 0.25);
  background: linear-gradient(
    to bottom right,
    rgba(75, 173, 211, 0.1),
    rgba(27, 127, 196, 0.05)
  );
}
.feature-card:nth-child(3) {
  border-color: rgba(43, 142, 200, 0.2);
  background: linear-gradient(
    to bottom right,
    rgba(43, 142, 200, 0.1),
    rgba(75, 173, 211, 0.05)
  );
}

.feature-card-img {
  width: 100%;
  overflow: hidden;
}
.feature-card-img img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}
.feature-card:hover .feature-card-img img {
  transform: scale(1.05);
}
.feature-card-body {
  padding: 0.6rem;
  background: #fff;
}
.feature-card-body .btn-primary {
  margin-top: 0.5rem;
}
.feature-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}
.feature-icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  flex-shrink: 0;
  font-size: 0.5rem;
}
.feature-icon-red {
  background: rgba(229, 43, 43, 0.1);
  color: var(--brand-red);
}
.feature-icon-blue {
  background: rgba(75, 173, 211, 0.15);
  color: var(--brand-blue);
}
.feature-icon-navy {
  background: rgba(43, 142, 200, 0.1);
  color: #1b6fa8;
}

.tag {
  display: inline-block;
  padding: 0.175rem 0.3rem;
  border-radius: 9999px;
  font-size: 0.45rem;
  font-weight: 500;
}
.tag-red {
  background: rgba(229, 43, 43, 0.1);
  color: var(--brand-red);
}
.tag-blue {
  background: rgba(75, 173, 211, 0.15);
  color: var(--brand-blue);
}
.tag-navy {
  background: rgba(43, 142, 200, 0.1);
  color: #1b6fa8;
}

.feature-card-title {
  font-weight: 700;
  font-size: 0.6rem;
  color: var(--brand-navy);
  margin-bottom: 0.1rem;
}
.feature-card-subtitle {
  font-size: 0.45rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.feature-card-subtitle-red {
  color: var(--brand-red);
}
.feature-card-subtitle-blue {
  color: var(--brand-blue);
}
.feature-card-subtitle-navy {
  color: #1b6fa8;
}
.feature-card-desc {
  color: var(--brand-muted);
  font-size: 0.45rem;
  line-height: 1.625;
}

.feature-footer {
  text-align: center;
  margin-top: 1.2rem;
}
.feature-footer-text {
  color: var(--brand-muted);
  font-size: 0.35rem;
}
.feature-footer-text .red {
  color: var(--brand-red);
  font-weight: 600;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.dest-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.dest-tab {
  padding: 0.2rem 0.4rem;
  border-radius: 9999px;
  font-size: 0.35rem;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(196, 228, 245, 0.6);
  background: var(--brand-light);
  color: var(--brand-muted);
}
.dest-tab.active {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: 0 0.1rem 0.15rem -0.025rem rgba(229, 43, 43, 0.2);
}
.dest-tab:hover:not(.active) {
  color: var(--brand-navy);
}

.dest-panel {
  border-radius: 0.4rem;
  overflow: hidden;
  border: 1px solid;
  transition: all 0.5s;
  padding-bottom: 0.75rem;
}
.dest-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
}
.dest-panel .btn-primary {
  margin: 0.75rem auto 0;
  display: block;
  width: 9.6rem;
  text-align: center;
}
.dest-panel .btn-primary i {
  margin-left: 0.2rem;
}
.dest-img-wrap {
  position: relative;
  height: 5.6rem;
  overflow: hidden;
}
.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.dest-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.1),
    transparent
  );
}
.dest-img-badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.dest-img-flag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
}
.dest-img-tag {
  padding: 0.1rem 0.3rem;
  border-radius: 9999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.325rem;
  font-weight: 500;
  white-space: nowrap;
}
.dest-img-tagline {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  right: 0.4rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.45rem;
  line-height: 1.25;
}

.dest-info {
  padding: 0.6rem;
}
.dest-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.dest-info-box {
  background: #fff;
  border-radius: 0.3rem;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.dest-info-label {
  font-size: 0.3rem;
  color: var(--brand-muted);
  margin-bottom: 0.1rem;
}
.dest-info-value-red {
  font-weight: 700;
  font-size: 0.45rem;
  color: var(--brand-red);
}
.dest-info-value-navy {
  font-weight: 700;
  font-size: 0.45rem;
  color: var(--brand-navy);
}

.dest-advantage {
  border-radius: 0.3rem;
  padding: 0.4rem;
  margin-bottom: 0.5rem;
}
.dest-advantage-header {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}
.dest-advantage-title {
  font-size: 0.3rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.dest-advantage-text {
  font-size: 0.35rem;
  color: rgba(13, 63, 111, 0.8);
  line-height: 1.625;
}

.dest-tip {
  background: #fff;
  border-radius: 0.3rem;
  padding: 0.4rem;
  border: 1px solid rgba(196, 228, 245, 0.6);
}
.dest-tip-text {
  font-size: 0.35rem;
  color: rgba(13, 63, 111, 0.8);
  line-height: 1.625;
}

.dest-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(196, 228, 245, 0.6);
}
.dest-detail-col {
  padding: 0.6rem;
  border-bottom: 1px solid rgba(196, 228, 245, 0.6);
  border-right: none;
}
.dest-detail-col:last-child {
  border-bottom: none;
}

.dest-detail-header {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}
.dest-detail-icon {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-sky);
  font-size: 0.35rem;
}
.dest-detail-title {
  font-size: 0.35rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.dest-school-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0.3rem;
  border-radius: 0.2rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--brand-light);
  border: 1px solid transparent;
}
.dest-school-btn:hover {
  background: rgba(196, 228, 245, 0.4);
}
.dest-school-btn.active {
  background: rgba(75, 173, 211, 0.1);
  border-color: rgba(75, 173, 211, 0.3);
}
.dest-school-name {
  font-size: 0.3rem;
  font-weight: 500;
  color: rgba(13, 63, 111, 0.8);
}
.dest-school-note {
  font-size: 0.3rem;
  color: var(--brand-muted);
}
.dest-school-rank {
  font-size: 0.3rem;
  font-weight: 700;
  white-space: nowrap;
}

.dest-req {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}
.dest-req-dot {
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 9999px;
  background: var(--brand-red);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.dest-req-label {
  font-size: 0.3rem;
  color: var(--brand-muted);
}
.dest-req-value {
  font-size: 0.35rem;
  font-weight: 500;
  color: rgba(13, 63, 111, 0.8);
}

.dest-timeline {
  display: flex;
  gap: 0.3rem;
  align-items: flex-start;
  margin-bottom: 0.3rem;
}
.dest-timeline-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  border: 0.05rem solid var(--brand-red);
  background: #fff;
  flex-shrink: 0;
}
.dest-timeline-line {
  width: 1px;
  height: 0.5rem;
  background: var(--brand-pale);
  margin-top: 0.1rem;
}
.dest-timeline-date {
  font-size: 0.3rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--brand-red);
}
.dest-timeline-event {
  font-size: 0.3rem;
  color: rgba(13, 63, 111, 0.7);
  line-height: 1.25;
}

.dest-nav {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.6rem;
}
.dest-nav-btn {
  width: 0.9rem;
  height: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--brand-pale);
  color: var(--brand-muted);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-size: 0.35rem;
}
.dest-nav-btn:hover {
  border-color: var(--brand-sky);
  color: var(--brand-blue);
}

/* ============================================
   DOMESTIC
   ============================================ */

/* Overview */
.dom-overview {
  background: #fff;
  border-radius: 0.5rem;
  margin-top: 1rem;
  padding: 0.4rem;
  box-shadow: 0 0.1rem 0.6rem rgba(13, 63, 111, 0.06);
  border: 1px solid rgba(196, 228, 245, 0.6);
}
.dom-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.dom-overview-item {
  width: 100%;
  padding: 0.4rem;
  border-radius: 0.35rem;
  background: rgba(238, 248, 251, 0.5);
  border: 1px solid rgba(196, 228, 245, 0.4);
  transition: all 0.25s ease;
}
.dom-overview-item:hover {
  background: #fff;
  border-color: rgba(75, 173, 211, 0.4);
  transform: translateY(-0.075rem);
  box-shadow: 0 0.2rem 0.6rem rgba(13, 63, 111, 0.06);
}
.dom-overview-icon {
  width: 1.3rem;
  height: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-size: 0.65rem;
  margin-bottom: 0.25rem;
}
.dom-overview-icon.blue {
  background: rgba(42, 111, 143, 0.1);
  color: #2a6f8f;
}
.dom-overview-icon.orange {
  background: rgba(230, 138, 46, 0.1);
  color: #e68a2e;
}
.dom-overview-icon.green {
  background: rgba(47, 125, 92, 0.1);
  color: #2f7d5c;
}
.dom-overview-title {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.dom-overview-list {
  margin: 0;
  font-size: 0.5rem;
  color: rgba(13, 63, 111, 0.75);
  line-height: 1.8;
}
.dom-overview-list li {
  margin-bottom: 0.1rem;
}
.dom-overview-note {
  text-align: center;
  font-size: 0.45rem;
  color: var(--brand-muted);
  margin-top: 0.4rem;
  line-height: 1.6;
}

/* Featured */
.featured-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 1rem;
  margin-bottom: 0.625rem;
  border-left: 0.1rem solid var(--brand-navy);
  line-height: 0.575rem;
}
.featured-title i {
  color: var(--brand-red);
  font-size: 0.5rem;
}

/* Recommend cards */
.rec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.rec-card {
  background: #fff;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.5rem rgba(13, 63, 111, 0.05);
  border: 1px solid rgba(196, 228, 245, 0.5);
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 1.75rem;
}
.rec-card .btn-primary {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.rec-card:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.3rem 0.8rem rgba(13, 63, 111, 0.1);
}
.rec-header {
  padding: 0.5rem 0.6rem;
  background: linear-gradient(135deg, rgb(33 126 185) 0%, #2d85bd 100%);
  border-bottom: 1px solid rgba(196, 228, 245, 0.5);
}
.rec-header h3 {
  font-size: 0.55rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}
.rec-header h3 i {
  color: var(--brand-sky);
  font-size: 0.45rem;
}
.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
  font-size: 0.4rem;
  font-weight: 600;
  color: var(--brand-blue);
  background: rgb(255 255 255);
  border: 1px solid rgba(27, 127, 196, 0.15);
}
.rec-badge i {
  font-size: 0.275rem;
}
.rec-content {
  padding: 0.5rem 0.6rem;
  font-size: 0.45rem;
  color: rgba(13, 63, 111, 0.8);
  line-height: 1.7;
}

/* Content elements */
.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
}
.icon-text i {
  margin-top: 0.075rem;
  font-size: 0.35rem;
  flex-shrink: 0;
  color: var(--brand-blue);
}
.icon-text strong {
  color: var(--brand-navy);
  font-weight: 600;
  flex-shrink: 0;
}

.divider-light {
  height: 1px;
  background: rgba(196, 228, 245, 0.6);
  margin: 0.4rem 0;
}

.uni-list {
  margin: 0.2rem 0 0 0;
  /* padding-left: 0.45rem; */
  font-size: 0.45rem;
  color: rgba(13, 63, 111, 0.75);
  line-height: 1.8;
}
.uni-list li {
  margin-bottom: 0.1rem;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-top: 0.35rem;
}
.stat-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.15rem 0.3rem;
  border-radius: 9999px;
  font-size: 0.4rem;
  font-weight: 500;
  color: var(--brand-navy);
  background: rgba(196, 228, 245, 0.4);
  border: 1px solid rgba(196, 228, 245, 0.6);
  transition: all 0.2s;
}
.stat-bubble:hover {
  background: rgba(75, 173, 211, 0.15);
  border-color: rgba(75, 173, 211, 0.3);
}
.stat-bubble i {
  font-size: 0.275rem;
  color: var(--brand-sky);
}

.small-note {
  margin-top: 0.35rem;
  padding: 0.25rem 0.35rem;
  border-radius: 0.25rem;
  font-size: 0.4rem;
  color: rgba(13, 63, 111, 0.7);
  background: rgba(75, 173, 211, 0.06);
  border: 1px solid rgba(75, 173, 211, 0.12);
  line-height: 1.6;
}
.small-note i {
  margin-right: 0.1rem;
}

.tool-tabs {
  display: inline-flex;
  background: #ffffff;
  border-radius: 9999px;
  padding: 0.1rem;
  margin-bottom: 1rem;
  gap: 0.425rem;
  box-shadow: 0 0.05rem 0.3rem rgba(13, 63, 111, 0.06);
}
.tool-tab {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.35rem;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  color: var(--brand-muted);
  background: transparent;
}
.tool-tab:hover {
  color: var(--brand-navy);
  background: rgba(196, 228, 245, 0.3);
}
.tool-tab.active {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 0.025rem 0.05rem 0 rgba(0, 0, 0, 0.05);
}

.tool-panel-wrap {
  max-width: 16.8rem;
  margin: 0 auto;
}

.score-table-header {
  font-size: .5rem;
  display: grid;
  gap: 0.3rem;
  padding: 0.25rem;
  grid-template-columns: 1fr 1fr 2fr;
  align-items: center;
  color: var(--brand-muted);
  /* text-align: center; */
}  

.score-row {
  border-radius: 0.3rem;
  background: #ffffff;
  border: 1px solid rgba(196, 228, 245, 0.6);
padding: 0.25rem;
  transition: all 0.15s;
  margin-bottom: 0.3rem;
  box-shadow: 0 0.05rem 0.3rem rgba(13, 63, 111, 0.04);
}
.score-row:hover {
  border-color: rgba(75, 173, 211, 0.4);
  background: #ffffff;
  box-shadow: 0 0.1rem 0.4rem rgba(13, 63, 111, 0.08);
}
.score-row-inner {
  display: grid;
  gap: 0.3rem;
  align-items: center;
  grid-template-columns: 1fr 1fr 2fr;
}

.score-bar-col {
  display: none;
}
.score-col-2 {
  /* grid-column: span 2; */
}
.score-col-4 {
  /* grid-column: span 4; */
}
.score-text-right {
  text-align: right;
}

.score-bar-wrap {
  height: 0.15rem;
  background: rgba(196, 228, 245, 0.8);
  border-radius: 9999px;
  overflow: hidden;
}
.score-bar {
  height: 100%;
  border-radius: 9999px;
}

.score-tag {
  font-size: 0.3rem;
  padding: 0.1rem 0.25rem;
  border-radius: 9999px;
  display: inline-block;
}

/* Matcher */
.matcher-q {
  background: #ffffff;
  border-radius: 0.4rem;
  padding: 0.6rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 0.05rem 0.3rem rgba(13, 63, 111, 0.04);
}
.matcher-header {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}
.matcher-icon {
  width: 0.7rem;
  height: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 0.4rem;
}
.matcher-label {
  font-weight: 600;
  font-size: 0.35rem;
  color: var(--brand-navy);
}
.matcher-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.matcher-opt {
  padding: 0.3rem 0.4rem;
  border-radius: 0.3rem;
  font-size: 0.35rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(196, 228, 245, 0.6);
  background: #fff;
  color: rgba(13, 63, 111, 0.7);
}
.matcher-opt:hover {
  border-color: rgba(75, 173, 211, 0.5);
  color: var(--brand-navy);
}
.matcher-opt.active {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: 0 0.025rem 0.05rem 0 rgba(229, 43, 43, 0.2);
}

.matcher-result {
  background: var(--brand-navy);
  border-radius: 0.4rem;
  padding: 0.6rem;
  color: #fff;
}
.matcher-result-title {
  font-weight: 700;
  font-size: 0.45rem;
  margin-bottom: 0.1rem;
}
.matcher-result-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.35rem;
  margin-bottom: 0.4rem;
  line-height: 1.625;
}
.matcher-dest-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.matcher-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}
.matcher-dest-tag {
  padding: 0.15rem 0.3rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.2rem;
  color: #fff;
  font-size: 0.3rem;
  font-weight: 500;
}
.matcher-tip {
  background: rgba(229, 43, 43, 0.2);
  border: 1px solid rgba(229, 43, 43, 0.3);
  border-radius: 0.3rem;
  padding: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
}
.matcher-tip-icon {
  color: var(--brand-red);
  font-size: 0.35rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.matcher-tip-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.3rem;
  line-height: 1.625;
}
.matcher-reset {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  transition: color 0.15s;
  background: none;
  border: none;
}
.matcher-reset:hover {
  color: #fff;
}

.matcher-submit-btn {
  width: 100%;
  padding: 0.4rem;
  background: var(--brand-red);
  color: #fff;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 0.35rem;
  transition: background 0.15s;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.matcher-submit-btn:hover {
  background: var(--brand-crimson);
}

/* Budget */
.budget-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}
.budget-tab {
  padding: 0.4rem;
  border-radius: 0.3rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(196, 228, 245, 0.6);
  background: #ffffff;
  color: var(--brand-muted);
  box-shadow: 0 0.025rem 0.15rem rgba(13, 63, 111, 0.03);
}
.budget-tab:hover {
  background: rgba(196, 228, 245, 0.3);
}

.budget-tab-icon {
  width: 0.8rem;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
  font-size: 0.45rem;
}
.budget-tab-label {
  font-size: 0.35rem;
  font-weight: 700;
}
.budget-tab-range {
  font-size: 0.3rem;
  margin-top: 0.05rem;
}

.budget-panel {
  border-radius: 0.4rem;
  border: 1px solid;
  padding: 0.7rem;
}
.budget-panel-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}
.budget-panel-icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}
.budget-panel-range {
  font-weight: 700;
  font-size: 0.5rem;
}
.budget-panel-note {
  font-size: 0.35rem;
  line-height: 1.625;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.budget-section-title {
  font-size: 0.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: 0.3rem;
}

.budget-dest-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.2rem;
  padding: 0.25rem 0.3rem;
  margin-bottom: 0.2rem;
}
.budget-dest-icon {
  font-size: 0.35rem;
  opacity: 0.6;
}
.budget-dest-text {
  font-size: 0.35rem;
  font-weight: 500;
}

.budget-cost-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.2rem;
  padding: 0.25rem 0.3rem;
  margin-bottom: 0.2rem;
}
.budget-cost-label {
  font-size: 0.35rem;
}
.budget-cost-value {
  font-size: 0.35rem;
  font-weight: 600;
}

.budget-bonus {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.3rem;
  padding: 0.4rem;
}
.budget-bonus-header {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
  font-size: 0.3rem;
  font-weight: 500;
}
.budget-bonus-text {
  font-size: 0.3rem;
  line-height: 1.625;
  opacity: 0.8;
}

/* ============================================
   SUCCESS CARDS
   ============================================ */
.success-grid {
  display: grid;
  gap: 0.2rem;
  grid-template-columns: repeat(1,1fr);
  padding-bottom: 0.75rem;
}

.success-card {
  border-radius: 0.3rem;
  background: #fff;
  padding: 0.5rem;
  transition: all 0.3s;
  border: 1px solid rgba(229, 43, 43, 0.2);
}
.success-card:hover {
  border-color: rgba(75, 173, 211, 0.5);
}
.success-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.success-card-user {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.success-card-avatar {
  width: 0.9rem;
  height: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(75, 173, 211, 0.15);
  color: var(--brand-blue);
  font-size: 0.55rem;
  flex-shrink: 0;
}
.success-card-name {
  font-weight: 600;
  font-size: 0.5rem;
  color: var(--brand-navy);
}
.success-card-school {
  font-size: 0.5rem;
  color: var(--brand-muted);
}

.success-tags {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}
.success-tag {
  padding: 0.1rem 0.25rem;
  border-radius: 0.2rem;
  font-size: 0.45rem;
  font-weight: 500;
}

.success-offers-title {
  color: var(--brand-muted);
  font-size: 0.5rem;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.success-offers-title i {
  color: var(--brand-sky);
}
.success-offers.flex{
  display: flex;
  flex-wrap: wrap;
}
.success-offer {
  min-width: 50%;
  font-size: 0.45rem;
  color: rgba(13, 63, 111, 0.8);
  line-height: 1.625;
  padding-left: 0.4rem;
}

.success-footer {
  text-align: center;
  margin-top: 1rem;
}
.success-footer-text {
  color: var(--brand-muted);
  font-size: 0.45rem;
  margin-bottom: 0.525rem;
}
.success-footer .btn-primary {
  /* font-size: 0.35rem; */
  display: block;
  width: 6rem;
  margin: 0 auto;
}
.success-footer-btn:hover {
  background: var(--brand-red);
  color: #fff;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 1rem 0.6rem;
}
.cta-bg-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #1b6fa8, #2b8ec8, #4badd3);
}
.cta-bg-img {
  position: absolute;
  inset: 0;
}
.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.25;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 63, 111, 0.8),
    rgba(27, 111, 168, 0.6),
    rgba(43, 142, 200, 0.4)
  );
}

.cta-glow-1 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 6.4rem;
  height: 6.4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  filter: blur(1.5rem);
  pointer-events: none;
}
.cta-glow-2 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 4.8rem;
  height: 4.8rem;
  background: rgba(196, 228, 245, 0.2);
  border-radius: 9999px;
  filter: blur(1.25rem);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}
.cta-badge-icon {
  color: #fff;
  font-size: 0.45rem;
}
.cta-badge-text {
  color: #fff;
  font-size: 0.45rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.cta-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.cta-title-highlight {
  background: var(--brand-red);
  padding: 0 0.2rem;
  border-radius: 0.05rem;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.5rem;
  line-height: 1.625;
  margin-bottom: 0.6rem;
}

.cta-check {
  display: flex;
  align-items:  center;
  gap: 0.25rem;
  margin-bottom: 0.2rem;
}
.cta-check-icon {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.55rem;
}
.cta-check-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.45rem;
}

.cta-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(0.3rem);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.4rem;
  padding: 0.4rem;
}
.cta-form-title {
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--brand-navy);
  margin-bottom: 0.1rem;
}
.cta-form-subtitle {
  color: var(--brand-muted);
  font-size: 0.45rem;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select {
  width: 100%;
  background: var(--brand-light);
  border: 1px solid var(--brand-pale);
  border-radius: 0.3rem;
  padding: 0.3rem 0.4rem;
  font-size: 0.55rem;
  color: var(--brand-navy);
  transition: border-color 0.15s;
}
.form-input::placeholder {
  color: var(--brand-muted);
}
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(75, 173, 211, 0.6);
}

.form-row {
  display: flex;
  gap: 0.3rem;
}
.form-col {
  flex: 1;
  position: relative;
}
.form-group {
  margin-bottom: 0.3rem;
}

.form-submit {
  width: 100%;
  padding: 0.35rem;
  border-radius: 0.3rem;
  background: var(--brand-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.55rem;
  transition: background 0.15s;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.form-submit:hover {
  background: var(--brand-crimson);
}

.form-note {
  color: var(--brand-muted);
  font-size: 0.45rem;
  text-align: center;
  margin-top: 0.3rem;
}

/* ============================================
   SELECT OPTIONS POPUP
   ============================================ */
.select-options {
  position: absolute;
  top: calc(100% + 0.15rem);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0.3rem;
  box-shadow: 0 0.2rem 0.8rem rgba(13, 63, 111, 0.12);
  border: 1px solid rgba(196, 228, 245, 0.8);
  padding: 0.3rem;
  z-index: 100;
  display: none;
}
.select-options.show {
  display: block;
}
.select-option {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.3rem;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.35rem;
  color: var(--brand-navy);
}
.select-option:hover {
  background: rgba(196, 228, 245, 0.3);
}
.select-option em {
  font-style: normal;
}
.check-box {
  width: 0.45rem;
  height: 0.45rem;
  border: 0.05rem solid var(--brand-pale);
  border-radius: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.select-option.selected .check-box {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}
.select-option.selected .check-box::after {
  content: "";
  width: 0.125rem;
  height: 0.225rem;
  border: solid #fff;
  border-width: 0 0.05rem 0.05rem 0;
  transform: rotate(45deg);
  margin-bottom: 0.05rem;
}
.select-option.selected em {
  color: var(--brand-blue);
  font-weight: 600;
}
.select-option-other {
  padding: 0.2rem 0.3rem;
}
.select-option-other .other-input {
  width: 100%;
  padding: 0.2rem 0.3rem;
  border: 1px solid var(--brand-pale);
  border-radius: 0.2rem;
  font-size: 0.35rem;
  color: var(--brand-navy);
  outline: none;
  transition: border-color 0.2s;
}
.select-option-other .other-input:focus {
  border-color: var(--brand-blue);
}
.select-option-other .other-input::placeholder {
  color: var(--brand-muted);
}
.confirm {
  margin-top: 0.2rem;
  padding: 0.25rem;
  text-align: center;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.35rem;
  font-weight: 500;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.confirm:hover {
  background: var(--brand-navy);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brand-navy);
  padding: 1.6rem 0.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}
.footer-brand-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.35rem;
  letter-spacing: 0.15em;
}
.footer-brand-en {
  color: var(--brand-pale);
  font-size: 0.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.35rem;
  line-height: 1.625;
  margin-bottom: 0.4rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-social-icon {
  width: 0.8rem;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  cursor: pointer;
  font-size: 0.35rem;
}
.footer-social-icon:hover {
  border-color: var(--brand-sky);
  color: var(--brand-sky);
}

.footer-section-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.footer-phone {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.footer-phone:hover {
  color: var(--brand-pale);
}
.footer-phone-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.3rem;
  margin-bottom: 0.5rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.1rem;
}
.footer-nav-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.3rem;
  padding: 0.1rem 0;
  transition: color 0.2s;
}
.footer-nav-link:hover {
  color: var(--brand-sky);
}

.footer-region-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.3rem;
  margin-bottom: 0.1rem;
}
.footer-region-list {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.3rem;
  line-height: 1.625;
  margin-bottom: 0.3rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.3rem;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.3rem;
}
.footer-links a {
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--brand-sky);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.js-hidden {
  /* transform: translateY(32px); */
  /* transition:
    opacity 0.7s ease,
    transform 0.7s ease; */
}
.js-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-hidden-x {
  transform: translateX(-0.5rem);
  transition: all 0.5s ease;
}
.js-visible-x {
  opacity: 1;
  transform: translateX(0);
}

.feature-card-init {
  /* transform: translateY(30px); */
  /* transition:
    opacity 0.6s ease,
    transform 0.6s ease; */
}
.success-card-init {
  transform: translateY(0.5rem);
  transition: all 0.5s ease;
}
.score-bar-init {
  width: 0%;
  transition: width 1s ease-out;
}

.text-center {
  text-align: center;
}
.hidden {
  display: none;
}

/* ============================================
   MOVED FROM main.js INLINE STYLES
   ============================================ */
.mobile-menu-btn i {
  font-size: 0.5rem;
}
.nav-scrolled .mobile-menu-btn {
  color: var(--brand-navy);
}

.hero-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.card-animate-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.dest-dot {
  height: 0.2rem;
  border-radius: 9999px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.dest-timeline-start {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.dest-star {
  color: var(--brand-red);
  font-size: 0.35rem;
}

.dest-theme-0 {
  --dest-border: rgba(229, 43, 43, 0.3);
  --dest-bg: rgba(229, 43, 43, 0.05);
  --dest-bar: var(--brand-red);
}
.dest-theme-1 {
  --dest-border: rgba(27, 127, 196, 0.3);
  --dest-bg: rgba(27, 127, 196, 0.05);
  --dest-bar: var(--brand-blue);
}
.dest-theme-2 {
  --dest-border: rgba(27, 127, 196, 0.3);
  --dest-bg: rgba(27, 127, 196, 0.05);
  --dest-bar: var(--brand-blue);
}
.dest-theme-3 {
  --dest-border: rgba(13, 63, 111, 0.3);
  --dest-bg: rgba(13, 63, 111, 0.05);
  --dest-bar: var(--brand-navy);
}
.dest-theme-4 {
  --dest-border: rgba(75, 173, 211, 0.3);
  --dest-bg: rgba(75, 173, 211, 0.05);
  --dest-bar: var(--brand-sky);
}

.dest-panel {
  border-color: var(--dest-border);
}
.dest-info {
  background: var(--dest-bg);
}
.dest-advantage {
  background: var(--dest-bg);
  border: 1px solid var(--dest-border);
}

.flex-a-c-g8 {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.flex-a-c-g16 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.flex-a-c-g8-mb2 {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.05rem;
}
.flex-col-g8 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.flex-col-g12 {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.flex-col-g4 {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.text-12-muted {
  font-size: 0.3rem;
  color: var(--brand-muted);
}
.text-12-muted-mb2 {
  font-size: 0.3rem;
  color: var(--brand-muted);
  margin-bottom: 0.05rem;
}
.text-18-700-red {
  font-weight: 700;
  font-size: 0.45rem;
  color: var(--brand-red);
}
.text-12-op70 {
  font-size: 0.3rem;
  opacity: 0.7;
}

.score-level-text {
  font-weight: 700;
  font-size: 0.45rem;
}
.inline-flex-col {
  display: inline-flex;
  flex-direction: column;
}
.score-value-text {
  font-weight: 600;
  font-size: 0.45rem;
  color: var(--brand-navy);
}
.score-desc-text {
  font-size: 0.4rem;
  color: var(--brand-muted);
}
.score-schools-text {
  font-size: 0.45rem;
  color: rgba(13, 63, 111, 0.7);
  line-height: 1.625;
}

.tool-flex-col-g12 {
}
#global .btn-primary {
  width: 10.7rem;
  margin: 0 auto 0;
  text-align: center;
  display: block;
  position: relative;
}
#tools .btn-primary:hover .laywechtcode {
  display: block;
}
#tools .btn-primary .laywechtcode img {
  width: 100%;
}
#tools .btn-primary .laywechtcode::after {
  content: "";
  border: 0.25rem solid #ffffff;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  position: absolute;
  top: -0.475rem;
  left: 50%;
  transform: translateX(-50%);
  /*  */
}
.tool-note {
  text-align: center;
  color: var(--brand-muted);
  font-size: 0.5rem;
  margin-top: 0.4rem;
  margin-bottom: .4rem;
}
.mb-16 {
  margin-bottom: 0.4rem;
}
.tool-flex-col-g24 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.budget-tab-sky.active {
  background: rgba(75, 173, 211, 0.1);
  border-color: rgba(75, 173, 211, 0.3);
  color: var(--brand-sky);
  box-shadow: 0 0.025rem 0.05rem 0 rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
.budget-tab-blue.active {
  background: rgba(27, 127, 196, 0.1);
  border-color: rgba(27, 127, 196, 0.3);
  color: var(--brand-blue);
  box-shadow: 0 0.025rem 0.05rem 0 rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
.budget-tab-navy.active {
  background: rgba(13, 63, 111, 0.1);
  border-color: rgba(13, 63, 111, 0.3);
  color: var(--brand-navy);
  box-shadow: 0 0.025rem 0.05rem 0 rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
.budget-tab-red.active {
  background: rgba(229, 43, 43, 0.1);
  border-color: rgba(229, 43, 43, 0.3);
  color: var(--brand-red);
  box-shadow: 0 0.025rem 0.05rem 0 rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
.budget-tab .budget-tab-icon {
  font-size: 0.45rem;
  color: var(--brand-muted);
}
.budget-tab-sky.active .budget-tab-icon {
  color: var(--brand-sky);
}
.budget-tab-blue.active .budget-tab-icon {
  color: var(--brand-blue);
}
.budget-tab-navy.active .budget-tab-icon {
  color: var(--brand-navy);
}
.budget-tab-red.active .budget-tab-icon {
  color: var(--brand-red);
}

.budget-panel-sky {
  border-color: rgba(75, 173, 211, 0.3);
  background: rgba(75, 173, 211, 0.1);
  color: var(--brand-sky);
}
.budget-panel-blue {
  border-color: rgba(27, 127, 196, 0.3);
  background: rgba(27, 127, 196, 0.1);
  color: var(--brand-blue);
}
.budget-panel-navy {
  border-color: rgba(13, 63, 111, 0.3);
  background: rgba(13, 63, 111, 0.1);
  color: var(--brand-navy);
}
.budget-panel-red {
  border-color: rgba(229, 43, 43, 0.3);
  background: rgba(229, 43, 43, 0.1);
  color: var(--brand-red);
}
.budget-panel-sky .budget-panel-icon {
  color: var(--brand-sky);
}
.budget-panel-blue .budget-panel-icon {
  color: var(--brand-blue);
}
.budget-panel-navy .budget-panel-icon {
  color: var(--brand-navy);
}
.budget-panel-red .budget-panel-icon {
  color: var(--brand-red);
}

.budget-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.budget-panel-grid > div {
  position: relative;
}
.budget-panel-grid .btn-primary {
  width: 9.35rem;
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.tag-default {
  background: var(--brand-light);
  color: var(--brand-muted);
}

/* ============================================
   TIMELINE SCHEDULE TABLE
   ============================================ */
.timeline-table-wrap {
  background: #fff;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.6rem rgba(13, 63, 111, 0.06);
  border: 1px solid rgba(196, 228, 245, 0.6);
}
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.45rem;
}
.timeline-table thead {
  background: var(--brand-blue);
}
.timeline-table thead th {
  color: #fff;
  font-weight: 600;
  padding: 0.4rem 0.5rem;
  text-align: center;
  font-size: 0.45rem;
  letter-spacing: 0.05em;
  width: 20%;
}
.timeline-table thead th:first-child {
  border-radius: 0.4rem 0 0 0;
}
.timeline-table thead th:last-child {
  border-radius: 0 0.4rem 0 0;
  width: 40%;
}
.timeline-table tbody tr {
  border-bottom: 1px solid rgba(196, 228, 245, 0.6);
  transition: background 0.2s;
}
.timeline-table tbody tr:last-child {
  border-bottom: none;
}
.timeline-table tbody tr:hover {
  background: rgba(75, 173, 211, 0.05);
}
.timeline-table td {
  padding: 0.3rem;
  line-height: 1.625;
  color: var(--brand-navy);
}
.timeline-stage {
  font-weight: 700;
  color: var(--brand-navy);
  white-space: nowrap;
  min-width: 3rem;
}
.timeline-stage i {
  color: var(--brand-red);
  margin-right: 0.1rem;
  font-size: 0.35rem;
}
.timeline-time {
  font-weight: 700;
  color: var(--brand-red);
}
.timeline-task {
  font-weight: 500;
  color: rgba(13, 63, 111, 0.85);
  /* white-space: nowrap; */
  min-width: 3.5rem;
}
.timeline-action {
  color: rgba(13, 63, 111, 0.7);
  font-size: 0.45rem;
}
#timeline .btn-primary {
  display: block;
  width: 10.8rem;
  margin: 1rem auto 0;
  text-align: center;
}

/* Success Swiper */
.success-swiper {
  overflow: hidden;
  padding-bottom: 0.7rem;
}
.success-swiper .swiper-slide {
  height: auto;
}
.success-swiper .swiper-pagination {
  bottom: 0;
}
.success-swiper .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  background: var(--brand-pale);
  opacity: 1;
  transition: all 0.2s;
}
.success-swiper .swiper-pagination-bullet-active {
  width: 1rem;
  border-radius: 0.1rem;
  background: var(--brand-red);
}
.success-swiper .swiper-button-prev,
.success-swiper .swiper-button-next {
  width: 0.8rem;
  height: 0.8rem;
  background-size: 0.35rem 0.35rem;
  top: auto;
  bottom: 0.1rem;
}
.success-swiper .swiper-button-prev {
  left: calc(50% - 2rem);
}
.success-swiper .swiper-button-next {
  right: calc(50% - 2rem);
}
