.visa-apply-page,
.visa-success-page {
  background: #f6fafb;
  min-height: 100vh;
  color: #0f172a;
}

.visa-apply-hero {
  margin-top: 90px;
  padding: 70px 20px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .92), rgba(20, 184, 166, .82)),
    url('/img/tourism/visa/viet-nam.jpg') center/cover no-repeat;
  color: #fff;
}

.visa-apply-hero > div {
  max-width: 1100px;
  margin: 0 auto;
}

.visa-apply-hero span {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  margin-bottom: 16px;
}

.visa-apply-hero h1 {
  font-size: 40px;
  margin-bottom: 14px;
}

.visa-apply-hero p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
}

.visa-apply-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 70px;
}

.apply-section {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  margin-bottom: 26px;
}

.apply-section h2 {
  font-size: 24px;
  margin-bottom: 22px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.plan-card {
  cursor: pointer;
}

.plan-card input {
  display: none;
}

.plan-card-inner {
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  transition: .25s;
  height: 100%;
}

.plan-card input:checked + .plan-card-inner {
  border-color: #0f766e;
  background: #ecfeff;
}

.plan-card-inner h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.plan-price {
  font-size: 26px;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 6px;
}

.plan-sub-price {
  color: #64748b;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 16px;
}

.choose-text {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
}

.people-count-row {
  max-width: 220px;
}

.applicant-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  margin-top: 22px;
}

.applicant-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #0f766e;
}

.total-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.total-card p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.total-main {
  font-size: 22px;
  color: #dc2626;
}

.total-sub {
  color: #64748b;
}

.confirm-check {
  display: block;
  margin-top: 18px;
  font-weight: 700;
}

.submit-area {
  text-align: center;
  margin-top: 32px;
}

.visa-submit-btn {
  display: inline-block;
  border: none;
  background: #0f766e;
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.visa-submit-btn:hover {
  background: #0d5f59;
  color: #fff;
}

.visa-alert {
  background: #fee2e2;
  color: #991b1b;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 22px;
}

.success-card {
  max-width: 760px;
  margin: 140px auto 80px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .1);
  padding: 42px 30px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #0f766e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  font-weight: 900;
}

.success-card h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.success-card > p {
  color: #64748b;
  line-height: 1.8;
}

.order-info {
  text-align: left;
  background: #f8fafc;
  border-radius: 18px;
  padding: 22px;
  margin: 28px 0;
}

.order-info p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .visa-apply-hero {
    margin-top: 70px;
    padding: 56px 18px;
  }

  .visa-apply-hero h1 {
    font-size: 30px;
  }

  .plan-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .apply-section {
    padding: 22px;
  }

  .plan-price {
    font-size: 22px;
  }

  .success-card {
    margin: 100px 16px 60px;
  }
}
.form-row-full {
  grid-column: 1 / -1;
}