:root {
  --primary: #0b69c4;
  --primary-2: #0ea2ff;
  --accent: #f79b2a;
  --accent-2: #f57a00;
  --text: #123b2d;
  --muted: #48657d;
  --white: #ffffff;
  --soft: #f4f9ff;
  --line: rgba(11, 105, 196, 0.12);
  --dark-panel: #0a2346;
  --shadow: 0 30px 60px rgba(11, 105, 196, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8f0ff;
}

.eyebrow.dark {
  color: var(--primary-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 25, 40, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.topbar {
  display: none;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 110px;
  width: min(1700px, calc(100% - 18px));
  margin-left: -10px;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: -8px;
  color: var(--primary);
  text-decoration: none;
  min-height: 100px;
}

.brand-logo {
  width: clamp(135px, 13vw, 190px);
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  max-height: 72px;
}

.brand-name {
  font-size: clamp(0.8rem, 1vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.05;
  max-width: 220px;
}

.brand-mark {
  display: none;
}

.brand-text {
  display: none;
}

.brand-text strong {
  font-size: clamp(1.8rem, 2.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-text span {
  font-size: 0.7rem;
  opacity: 0.9;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: -28px;
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 8px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary-2);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 1.1rem 2.1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  min-height: 64px;
  font-size: 1.08rem;
  box-shadow: 0 14px 28px rgba(247, 155, 42, 0.25);
}

.primary-btn {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(247, 155, 42, 0.25);
}

.nav-cta,
.primary-btn {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(247, 155, 42, 0.25);
  min-height: 68px;
  font-size: 1.1rem;
}

.secondary-btn {
  border: 1px solid rgba(11, 105, 196, 0.25);
  color: var(--primary);
  background: rgba(14, 162, 255, 0.08);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.button-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: button-spin 0.7s linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.18)),
    url("assets/my-hero-img.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.22));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 0 70px;
}

.hero-copy {
  max-width: 1000px;
  color: #4d0a0a;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(91, 16, 30, 0.2);
  border-radius: 999px;
  color: #4d0a0a;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 26px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: #4a0a0a;
}

.lead {
  margin: 22px auto 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(53, 14, 20, 0.8);
  max-width: 820px;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.hero-pills {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-pills li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(109, 21, 38, 0.18);
  font-size: 0.92rem;
  color: rgba(50, 14, 22, 0.8);
}

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

.floating-card {
  position: absolute;
  background: rgba(6, 14, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--white);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.card-one {
  right: 40px;
  top: 30px;
}

.card-two {
  left: 40px;
  bottom: 24px;
}

.card-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  max-width: 780px;
  margin-inline: auto;
}

.services {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(12, 25, 46, 0.06);
}

.service-thumb {
  min-height: 190px;
  background-position: center;
  background-size: cover;
}

.thumb-one {
  background-image: url("assets/caption.jpg");
}

.thumb-two {
  background-image: url("assets/studying-blog.jpg");
}

.thumb-three {
  background-image: url("assets/torre-de-la-television-berlin.webp");
}

.thumb-four {
  background-image: url("assets/lodon-bridge-1024x684.webp");
}

.thumb-five {
  background-image: url("assets/pal-homepage-carousel.webp");
}

.thumb-six {
  background-image: url("assets/nathan-phillips-square.jpg");
}

.service-body {
  padding: 26px 22px 24px;
}

.service-body h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.3;
}

.service-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-body ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--text);
}

.service-body li + li {
  margin-top: 7px;
}

.service-body a {
  color: var(--primary-2);
  font-weight: 700;
}

.destinations {
  background: var(--white);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.destination-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #dfe8f7;
  min-height: 320px;
  box-shadow: 0 22px 42px rgba(7, 16, 30, 0.08);
}

.destination-card.large {
  grid-column: span 2;
  min-height: 440px;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.destination-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 22px 22px;
  background: linear-gradient(to top, rgba(2, 8, 20, 0.8), rgba(2, 8, 20, 0));
  color: var(--white);
}

.country-tag {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.destination-info h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.destination-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.stats-band {
  background: linear-gradient(135deg, #081833 0%, #163d7a 50%, #0e90d6 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-item strong {
  display: block;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.success-story {
  background: var(--soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 36px rgba(8, 18, 32, 0.06);
}

.testimonial-card p {
  margin: 0 0 22px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--text);
}

.person {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.person strong {
  font-size: 1.08rem;
}

.person span {
  color: var(--muted);
  font-size: 0.88rem;
}

.page-main,
.portal-main {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.page-hero {
  padding: 60px 0 30px;
}

.page-hero-small {
  padding-bottom: 20px;
}

.page-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
}

.page-section {
  padding: 0 0 100px;
}

.premium-form-shell {
  padding: 0;
  overflow: hidden;
}

.premium-form-layout {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr;
  gap: 0;
}

.travel-application-form {
  grid-column: 1;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.application-summary {
  grid-column: 2;
  background: linear-gradient(180deg, #0d233d 0%, #112f5d 100%);
  color: var(--white);
  padding: 28px 22px;
}

.submit-wrap {
  grid-column: 1;
  margin-top: 12px;
}

.summary-header {
  margin-bottom: 20px;
}

.summary-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-header h3 {
  margin: 12px 0 0;
  font-size: 1.8rem;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.summary-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-list span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.summary-list strong {
  font-size: 1rem;
}

.summary-note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  margin-top: 24px;
}

.summary-note strong {
  display: block;
  margin-bottom: 6px;
}

.summary-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.submit-wrap {
  margin-top: 12px;
}

.login-panel-header {
  margin-bottom: 16px;
}

.login-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(27, 77, 187, 0.08);
  color: var(--primary-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-copy {
  margin: 0 0 18px;
  color: var(--muted);
}

.form-shell,
.admin-shell {
  background: var(--white);
  border: 1px solid rgba(13, 23, 44, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(8, 17, 34, 0.06);
  padding: 28px;
}

.travel-application-form,
.admin-login-form,
.job-offer-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-width {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(13, 44, 109, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.password-input-wrap {
  position: relative;
}

.password-input-wrap input {
  padding-right: 46px;
}

.show-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.show-password-toggle:hover,
.show-password-toggle:focus-visible {
  background: rgba(27, 77, 187, 0.08);
  outline: none;
}

.show-password-toggle svg {
  width: 20px;
  height: 20px;
  stroke: #5f6b7a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.show-password-toggle.is-visible svg {
  stroke: var(--primary-2);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(27, 77, 187, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.login-panel,
.panel {
  background: #f8fbff;
  border: 1px solid rgba(13, 44, 109, 0.08);
  border-radius: 22px;
  padding: 24px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-actions .primary-btn,
.dashboard-actions .secondary-btn {
  padding: 0.7rem 1.05rem;
  min-height: 42px;
  font-size: 0.82rem;
  border-radius: 12px;
  line-height: 1.2;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.applications-panel {
  margin-top: 10px;
}

.application-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px 16px;
  margin-top: 14px;
}

.application-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: #f7f9fc;
  border: 1px solid rgba(13, 23, 44, 0.06);
  border-radius: 12px;
}

.application-field span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.application-field strong {
  color: var(--primary-1);
  line-height: 1.45;
  word-break: break-word;
}

.offer-grid {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.list-stack {
  display: grid;
  gap: 14px;
}

.featured-offer-card {
  display: grid;
  grid-template-columns: 120px 1.15fr 1.4fr;
  gap: 26px;
  align-items: center;
  padding: 28px 26px;
  border-radius: 26px;
  border: 1px solid rgba(162, 135, 92, 0.22);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 38px rgba(15, 25, 40, 0.05);
}

.featured-offer-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 18px 16px;
  border-radius: 22px;
  background: #f3efe8;
  border: 1px solid rgba(162, 135, 92, 0.18);
  text-align: center;
}

.featured-offer-day {
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 0.9;
  font-weight: 900;
  color: #1d1d1d;
  letter-spacing: -0.06em;
}

.featured-offer-month-year {
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4d4d4d;
  font-weight: 700;
}

.featured-offer-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 220px;
  background: linear-gradient(135deg, #0d3d73, #0b7ec3);
}

.featured-offer-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.featured-offer-image.placeholder {
  background: linear-gradient(135deg, #0d3d73, #0b7ec3);
}

.featured-offer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(162, 135, 92, 0.6);
  color: #8a6a2c;
  background: rgba(240, 234, 218, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.featured-offer-content h3 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
  color: #0f172a;
}

.featured-offer-location {
  margin: 14px 0 8px;
  font-size: 1.05rem;
  color: var(--muted);
}

.featured-offer-description {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.featured-offer-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 23, 44, 0.08);
  background: rgba(13, 23, 44, 0.02);
  border-radius: 12px;
  padding: 10px 16px;
}

.featured-offer-meta span {
  color: var(--primary-2);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.list-item {
  background: var(--white);
  border: 1px solid rgba(13, 23, 44, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
}

.list-item.compact {
  padding: 14px 16px;
}

.list-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.list-item-header strong {
  font-size: 1.03rem;
}

.list-item-header span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(27, 77, 187, 0.08);
  color: var(--primary-2);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.list-item p {
  margin: 0 0 8px;
  color: var(--muted);
}

.list-item .offer-image {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin: 10px 0 12px;
  border: 1px solid rgba(13, 23, 44, 0.06);
}

.list-item a {
  color: var(--primary-2);
  font-weight: 700;
}

@media (max-width: 960px) {
  .featured-offer-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-offer-date {
    min-height: auto;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .featured-offer-month-year {
    margin-top: 0;
    letter-spacing: 0.12em;
  }
}

.empty-state {
  padding: 18px;
  border: 1px dashed rgba(13, 23, 44, 0.18);
  border-radius: 14px;
  text-align: center;
  color: var(--muted);
  background: rgba(13, 23, 44, 0.02);
}

.consultation {
  background: var(--white);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.consultation-copy h2 {
  margin: 0 0 26px;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.consultation-form {
  margin-top: 26px;
  background: #f8fbff;
  border: 1px solid rgba(13, 44, 109, 0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(15, 25, 40, 0.05);
}

.document-help-shell {
  background: #ffffff;
  border: 1px solid rgba(13, 23, 44, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(8, 17, 34, 0.06);
  padding: 32px;
}

.document-help-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.document-help-copy {
  background: #f7f9fc;
  border: 1px solid rgba(13, 44, 109, 0.08);
  border-radius: 22px;
  padding: 24px;
}

.document-help-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.document-help-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.document-help-form,
.study-abroad-form {
  background: #f8fbff;
  border: 1px solid rgba(13, 44, 109, 0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(15, 25, 40, 0.05);
}

.study-abroad-shell {
  background: #ffffff;
  border: 1px solid rgba(13, 23, 44, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(8, 17, 34, 0.06);
  padding: 32px;
}

.study-abroad-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.study-abroad-copy {
  background: #f7f9fc;
  border: 1px solid rgba(13, 44, 109, 0.08);
  border-radius: 22px;
  padding: 24px;
}

.study-abroad-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.country-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.country-choice-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 23, 44, 0.08);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
}

.country-choice-item input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary-2);
}

.country-choice-item span {
  display: block;
  line-height: 1.4;
  word-break: break-word;
}

.selected-country-wrap {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(13, 23, 44, 0.08);
  border-radius: 12px;
  background: #fff;
}

.selected-country-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.selected-country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selected-country-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(27, 77, 187, 0.08);
  color: var(--primary-2);
  font-size: 0.9rem;
  font-weight: 600;
}

.remove-country-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 23, 44, 0.08);
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.empty-selection {
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-list,
.radio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.checkbox-item,
.radio-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 23, 44, 0.08);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  writing-mode: initial;
  text-orientation: initial;
}

.checkbox-item input,
.radio-item input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary-2);
}

.checkbox-item span,
.radio-item span {
  display: block;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  writing-mode: initial;
  text-orientation: initial;
  transform: none;
}

@media (max-width: 820px) {
  .document-help-grid,
  .study-abroad-layout {
    grid-template-columns: 1fr;
  }

  .country-choice-grid,
  .checkbox-list,
  .radio-list {
    grid-template-columns: 1fr;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(13, 44, 109, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(27, 77, 187, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  border: none;
  cursor: pointer;
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--primary-2);
  font-weight: 600;
}

#toast-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  min-width: 240px;
  max-width: 360px;
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(13, 23, 44, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(15, 25, 40, 0.18);
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  background: linear-gradient(180deg, #0e8f61, #0a6c4d);
}

.toast-error {
  background: linear-gradient(180deg, #d84949, #b43131);
}

.list-item-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.delete-item-btn {
  border: 0;
  background: rgba(216, 73, 73, 0.1);
  color: #b43131;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.delete-item-btn:hover {
  background: rgba(216, 73, 73, 0.18);
  transform: translateY(-1px);
}

.delete-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
}

.delete-modal.hidden {
  display: none;
}

.delete-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 34, 0.52);
}

.delete-modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100% - 32px));
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(13, 23, 44, 0.08);
  box-shadow: 0 28px 60px rgba(8, 17, 34, 0.2);
  padding: 28px 24px 20px;
}

.delete-modal-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: var(--text);
}

.delete-modal-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.delete-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.delete-modal-cancel,
.delete-modal-confirm {
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.delete-modal-cancel {
  background: rgba(13, 23, 44, 0.06);
  color: var(--text);
}

.delete-modal-confirm {
  background: linear-gradient(180deg, #d84949, #b43131);
  color: var(--white);
}

.contact-panel {
  background: linear-gradient(160deg, #091d3f 0%, #122b5c 100%);
  border-radius: 28px;
  padding: 30px 26px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  margin: 0 0 20px;
  font-size: 1.9rem;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item:first-child {
  border-top: none;
  padding-top: 0;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  font-size: 1.3rem;
}

.contact-item label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
  display: block;
  margin: 0;
  color: var(--white);
  font-weight: 600;
}

.site-footer {
  background: #061426;
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 32px;
  align-items: start;
  padding: 38px 0 18px;
}

.footer-inner h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--white);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 28px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 980px) {
  .service-grid,
  .destination-grid,
  .testimonial-grid,
  .stats-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner,
  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .destination-card.large {
    grid-column: span 2;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    order: 3;
    flex-wrap: wrap;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .premium-form-layout {
    grid-template-columns: 1fr;
  }

  .travel-application-form {
    grid-column: 1;
    padding: 20px 18px 12px;
    order: 1;
  }

  .submit-wrap {
    grid-column: 1;
    margin-top: 10px;
    margin-bottom: 8px;
    order: 3;
  }

  .application-summary {
    grid-column: 1;
    padding: 20px 18px 24px;
    order: 2;
    margin-bottom: 12px;
  }

  .summary-header h3 {
    font-size: 1.4rem;
  }

  .summary-list li {
    padding: 10px 0;
  }

  .topbar {
    display: none;
  }

  .navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 12px;
    padding: 16px 0;
  }

  .brand-wrap {
    width: auto;
    max-width: 56%;
    flex-shrink: 1;
    gap: 6px;
    margin-left: 0;
    margin-right: auto;
  }

  .brand-logo {
    width: clamp(78px, 22vw, 108px);
    max-height: 46px;
  }

  .brand-name {
    font-size: clamp(0.42rem, 1.8vw, 0.6rem);
    letter-spacing: 0.06em;
    max-width: 90px;
    line-height: 1;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
    flex-shrink: 0;
    margin-right: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 360px);
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(15, 25, 40, 0.08);
    padding: 18px 20px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    box-shadow: 0 12px 24px rgba(7, 17, 31, 0.08);
    z-index: 10;
  }

  .navbar.is-open .nav-links {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 54px 0 60px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .cta-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-visual {
    min-height: 200px;
  }

  .floating-card {
    position: static;
    margin-bottom: 12px;
  }

  .section {
    padding: 74px 0;
  }

  .service-grid,
  .destination-grid,
  .testimonial-grid,
  .stats-grid,
  .footer-inner,
  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .destination-card.large {
    grid-column: span 1;
  }

  .footer-inner {
    display: grid;
  }
}
