/* ==========================================================================
   MALAYSIA EVISA PROCESSING PORTAL - CORE DESIGN SYSTEM
   Color Palette: Pure White (#FFFFFF), Deep Black (#09090B), Vibrant Orange (#FF5500 / #F97316)
   Strict Constraint: NO DARK BACKGROUNDS ANYWHERE.
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-pure: #ffffff;
  --bg-light: #ffffff;
  --bg-subtle: #fbfbfd;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-orange-soft: #fff5ed;
  --bg-orange-light: #ffedd5;

  /* Typography & Neutral Colors */
  --text-primary: #09090b;       /* Deep high-contrast black */
  --text-secondary: #334155;     /* Slate dark text */
  --text-muted: #64748b;         /* Crisp muted slate */
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Malaysian Orange Tone */
  --orange-primary: #ff5500;     /* Signature Malaysian Orange */
  --orange-hover: #e04b00;       /* Darker orange on hover */
  --orange-active: #c44100;
  --orange-glow: rgba(255, 85, 0, 0.25);
  --orange-border: rgba(255, 85, 0, 0.2);

  /* Deep Black Accents */
  --black-primary: #09090b;
  --black-hover: #18181b;
  --black-border: #09090b;

  /* Border & Divider Lines */
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;
  --border-focus: #ff5500;

  /* Status Colors */
  --status-success: #16a34a;
  --status-success-bg: #f0fdf4;
  --status-pending: #f59e0b;
  --status-pending-bg: #fefce8;
  --status-review: #ff5500;
  --status-review-bg: #fff5ed;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 30px -4px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-orange: 0 8px 25px -4px rgba(255, 85, 0, 0.35);

  /* Radius & Transitions */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Font Family */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-pure);
  color: var(--text-primary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  background-color: var(--bg-pure);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 960px;
}

/* Top Announcement Strip (Pure White with Crisp Border & Orange Accent) */
.top-announcement {
  background-color: var(--bg-pure);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-orange-soft);
  color: var(--orange-primary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid var(--orange-border);
}

.top-contact-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.top-link:hover {
  color: var(--orange-primary);
}

/* Header & Navigation (Clean White Glassmorphism) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.logo-symbol {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--orange-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  position: relative;
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--black-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-title span {
  color: var(--orange-primary);
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-item a {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--orange-primary);
}

.nav-item.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange-primary);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.925rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(255, 85, 0, 0.35);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 rgba(255, 85, 0, 0.45);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-black {
  background: var(--black-primary);
  color: #ffffff;
}

.btn-black:hover {
  background: var(--black-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline-black {
  background: #ffffff;
  color: var(--black-primary);
  border: 1.5px solid var(--black-primary);
}

.btn-outline-black:hover {
  background: var(--black-primary);
  color: #ffffff;
}

.btn-outline-orange {
  background: #ffffff;
  color: var(--orange-primary);
  border: 1.5px solid var(--orange-primary);
}

.btn-outline-orange:hover {
  background: var(--orange-primary);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.btn-white {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.825rem;
  border-radius: var(--radius-sm);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  background-color: var(--bg-pure);
}

.section-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--bg-orange-soft);
  color: var(--orange-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border: 1px solid var(--orange-border);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--black-primary);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--orange-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Hero Section (Clean Crisp Pure White) */
.hero-section {
  padding: 4.5rem 0 5.5rem 0;
  background: #ffffff;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-badge-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-primary);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.hero-badge-pill span {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--black-primary);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: var(--orange-primary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.guarantee-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-orange-soft);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--orange-border);
}

.guarantee-text {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--black-primary);
  line-height: 1.3;
}

.guarantee-text span {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Hero Interactive Card / Quick Lookup */
.hero-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.hero-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black-primary);
  margin-bottom: 0.25rem;
}

.hero-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.quick-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-subtle);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.quick-tab-btn {
  background: transparent;
  border: none;
  padding: 0.6rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-tab-btn.active {
  background: #ffffff;
  color: var(--orange-primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.quick-tab-content {
  display: none;
}

.quick-tab-content.active {
  display: block;
}

/* How It Works (Steps) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-md);
}

.step-number-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-orange-soft);
  color: var(--orange-primary);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--orange-border);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black-primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Visa Categories Cards */
.visa-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.visa-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
}

.visa-card:hover {
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.visa-card.featured {
  border: 2px solid var(--orange-primary);
}

.visa-featured-pill {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--orange-primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(255, 85, 0, 0.4);
}

.visa-card-head {
  margin-bottom: 1.5rem;
}

.visa-card-type {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.visa-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black-primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.visa-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.visa-price-currency {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black-primary);
}

.visa-price-val {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black-primary);
  line-height: 1;
}

.visa-price-period {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 500;
}

.visa-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.visa-pill {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.visa-req-list {
  list-style: none;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.visa-req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.visa-req-item svg {
  color: var(--orange-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content .section-title {
  text-align: left;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-point-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.point-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.point-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black-primary);
  line-height: 1.3;
}

.about-checklist {
  list-style: none;
  margin: 1.5rem 0;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.about-checklist svg {
  color: var(--orange-primary);
  flex-shrink: 0;
}

.about-visual-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.official-badge-banner {
  background: var(--bg-orange-soft);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.official-badge-banner h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black-primary);
  margin-bottom: 0.35rem;
}

.official-badge-banner p {
  font-size: 0.825rem;
  color: var(--text-secondary);
}

/* Application Form Wizard */
.apply-wizard-wrapper {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}

.apply-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black-primary);
  margin-bottom: 0.4rem;
}

.form-label span.req {
  color: var(--orange-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Option Select Cards for Speed & Visa */
.speed-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.speed-option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #ffffff;
}

.speed-option-label:hover {
  border-color: var(--orange-primary);
}

.speed-option-label input[type="radio"] {
  display: none;
}

.speed-option-label.selected,
.speed-option-label:has(input[type="radio"]:checked) {
  border-color: var(--orange-primary);
  background: var(--bg-orange-soft);
}

.speed-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.custom-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.speed-option-label:has(input[type="radio"]:checked) .custom-radio-dot {
  border-color: var(--orange-primary);
}

.speed-option-label:has(input[type="radio"]:checked) .custom-radio-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-primary);
}

.speed-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black-primary);
}

.speed-time {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.speed-fee-badge {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--orange-primary);
}

/* Application Summary Card */
.order-summary-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.order-summary-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black-primary);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black-primary);
  border-top: 1.5px dashed var(--border-light);
  padding-top: 1rem;
  margin-top: 1rem;
}

.summary-row.total .total-amount {
  color: var(--orange-primary);
  font-size: 1.5rem;
}

.summary-guarantees {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.summary-guarantees li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  list-style: none;
}

/* Status Tracker Component */
.tracker-box {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}

.tracker-search-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tracker-search-input {
  flex: 1;
  padding: 0.95rem 1.25rem;
  font-size: 1.05rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  outline: none;
  background: #ffffff;
}

.tracker-search-input:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.status-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  margin: 2.5rem 0 2rem 0;
}

.status-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--border-light);
  z-index: 1;
}

.timeline-progress-bar {
  position: absolute;
  top: 24px;
  left: 30px;
  height: 3px;
  background: var(--orange-primary);
  z-index: 2;
  transition: width 0.6s ease;
}

.timeline-node {
  position: relative;
  z-index: 3;
  text-align: center;
}

.timeline-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.timeline-node.completed .timeline-circle {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: #ffffff;
  box-shadow: 0 0 0 4px var(--bg-orange-light);
}

.timeline-node.active .timeline-circle {
  background: #ffffff;
  border-color: var(--orange-primary);
  color: var(--orange-primary);
  box-shadow: 0 0 0 4px var(--orange-glow);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0px var(--orange-glow); }
  70% { box-shadow: 0 0 0 8px rgba(255, 85, 0, 0); }
  100% { box-shadow: 0 0 0 0px rgba(255, 85, 0, 0); }
}

.timeline-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--black-primary);
  line-height: 1.3;
}

.timeline-node.upcoming .timeline-label {
  color: var(--text-muted);
}

/* Result Card */
.tracking-result-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.result-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.result-ref-number {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange-primary);
}

.result-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-badge-approved {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.status-badge-review {
  background: var(--bg-orange-soft);
  color: var(--orange-primary);
  border: 1px solid var(--orange-border);
}

.status-badge-submitted {
  background: #f8fafc;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.result-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.result-detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.detail-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black-primary);
}

.result-note-box {
  background: var(--bg-orange-soft);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.875rem;
  color: var(--black-primary);
}

/* Contact Section & Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-2px);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-orange-soft);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--orange-border);
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black-primary);
  margin-bottom: 0.25rem;
}

.contact-info-val {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-info-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.contact-form-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-focus);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black-primary);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-orange-soft);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--orange-primary);
  color: #ffffff;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer (Pure White with Crisp Gray Dividers - No Dark Background) */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 0 2rem 0;
  color: var(--text-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-orange-soft);
  color: var(--orange-primary);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid var(--orange-border);
}

/* Alerts and Toast Messages */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-success {
  background-color: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.alert-info {
  background-color: var(--bg-orange-soft);
  color: var(--orange-primary);
  border: 1px solid var(--orange-border);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .status-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .status-timeline::before,
  .timeline-progress-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-guarantees {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .result-details-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --malaysia-blue: #0b2e64;
  --malaysia-blue-deep: #061c3f;
  --malaysia-red: #c9153d;
  --malaysia-red-dark: #a40f31;
  --malaysia-sky: #a9cde1;
  --malaysia-gold: var(--malaysia-sky);
  --malaysia-cream: #f6f1e7;
  --malaysia-mist: #eaf0f7;
  --bg-pure: #fffdf8;
  --bg-light: #fffdf8;
  --bg-subtle: var(--malaysia-cream);
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-orange-soft: #f9e8eb;
  --bg-orange-light: #f4d8de;
  --text-primary: #10223b;
  --text-secondary: #45556b;
  --text-muted: #68778a;
  --text-light: #8793a3;
  --orange-primary: var(--malaysia-red);
  --orange-hover: var(--malaysia-red-dark);
  --orange-active: #820b26;
  --orange-glow: rgba(201, 21, 61, 0.16);
  --orange-border: rgba(201, 21, 61, 0.24);
  --black-primary: var(--malaysia-blue-deep);
  --black-hover: var(--malaysia-blue);
  --black-border: var(--malaysia-blue-deep);
  --border-light: #ced7e2;
  --border-subtle: #e2e7ec;
  --border-focus: var(--malaysia-red);
  --shadow-sm: 0 2px 0 rgba(6, 28, 63, 0.05);
  --shadow-md: 0 14px 40px rgba(6, 28, 63, 0.1);
  --shadow-lg: 0 28px 70px rgba(6, 28, 63, 0.18);
  --shadow-orange: 0 10px 28px rgba(201, 21, 61, 0.22);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --font-main: 'Manrope', sans-serif;
  --font-display: 'Manrope', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

body {
  background: var(--bg-pure);
}

::selection {
  background: var(--malaysia-gold);
  color: var(--malaysia-blue-deep);
}

.container {
  max-width: 1320px;
}

.top-announcement {
  background: var(--malaysia-blue-deep);
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  padding: 0.6rem 0;
}

.announcement-badge {
  background: transparent;
  border: 0;
  color: var(--malaysia-gold);
  padding: 0;
  letter-spacing: 0.08em;
}

.top-link {
  color: rgba(255, 255, 255, 0.78);
}

.top-link:hover {
  color: var(--malaysia-gold);
}

.site-header {
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid rgba(11, 46, 100, 0.14);
  box-shadow: none;
}

.nav-wrapper {
  height: 76px;
}

.logo-symbol {
  width: 46px;
  height: 32px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 2rem;
}

.logo-title {
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  color: var(--malaysia-blue-deep);
}

.logo-title span {
  color: var(--malaysia-red);
}

.logo-sub {
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.nav-menu {
  gap: 2.2rem;
}

.nav-item a {
  color: var(--malaysia-blue-deep);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.nav-item.active a::after {
  height: 3px;
  background: var(--malaysia-red);
}

.btn {
  border-radius: 5px;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--malaysia-red);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--malaysia-red-dark);
  box-shadow: 0 14px 32px rgba(201, 21, 61, 0.3);
}

.btn-black {
  background: var(--malaysia-blue-deep);
}

.btn-outline-black {
  color: var(--malaysia-blue-deep);
  border-color: var(--malaysia-blue-deep);
}

.section {
  padding: 7rem 0;
}

.section-subtle {
  background: var(--malaysia-cream);
  border-color: rgba(11, 46, 100, 0.1);
}

.section-header {
  max-width: 760px;
  margin-bottom: 4rem;
}

.section-badge {
  background: transparent;
  border: 0;
  border-left: 4px solid var(--malaysia-red);
  border-radius: 0;
  color: var(--malaysia-red);
  padding: 0.1rem 0 0.1rem 0.75rem;
  letter-spacing: 0.13em;
}

.section-title {
  font-family: var(--font-display);
  color: var(--malaysia-blue-deep);
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 650;
}

.section-title span {
  color: var(--malaysia-red);
}

.section-desc {
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-section {
  min-height: 730px;
  padding: 6.5rem 0 5.5rem;
  border: 0;
  background:
    linear-gradient(90deg, rgba(6, 28, 63, 0.96) 0%, rgba(6, 28, 63, 0.88) 42%, rgba(6, 28, 63, 0.42) 72%, rgba(6, 28, 63, 0.18) 100%),
    url('../images/malaysia-hero.webp') center / cover no-repeat;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 75%, rgba(6, 28, 63, 0.6));
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 430px);
  gap: clamp(3rem, 7vw, 7rem);
  position: relative;
  z-index: 1;
}

.hero-badge-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  border-radius: 4px;
  padding: 0.5rem 0.8rem;
}

.hero-badge-pill .dot {
  background: var(--malaysia-gold);
  box-shadow: 0 0 0 4px rgba(244, 197, 66, 0.16);
}

.hero-badge-pill span {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  max-width: 760px;
  margin-bottom: 1.6rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(4rem, 6.2vw, 6.8rem);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-title .highlight {
  color: var(--malaysia-gold);
  font-style: italic;
}

.hero-subtitle {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-cta-group .btn-outline-black {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

.hero-cta-group .btn-outline-black:hover {
  background: #ffffff;
  color: var(--malaysia-blue-deep);
}

.hero-guarantees {
  border-color: rgba(255, 255, 255, 0.24);
  gap: 1rem;
}

.guarantee-icon {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--malaysia-gold);
  color: var(--malaysia-blue-deep);
}

.guarantee-text {
  color: #ffffff;
}

.guarantee-text span {
  color: rgba(255, 255, 255, 0.64);
}

.hero-card {
  padding: 2.2rem;
  background: rgba(255, 253, 248, 0.97);
  border: 0;
  border-left: 6px solid var(--malaysia-red);
  border-radius: 3px 20px 20px 3px;
  box-shadow: 0 30px 90px rgba(2, 13, 31, 0.38);
}

.hero-card-title,
.step-title,
.visa-card-title,
.official-badge-banner h4,
.order-summary-title,
.contact-form-card h3 {
  font-family: var(--font-display);
}

.hero-card-title {
  font-size: 1.75rem;
  color: var(--malaysia-blue-deep);
}

.quick-tabs {
  border: 0;
  border-radius: 4px;
  background: var(--malaysia-mist);
}

.quick-tab-btn {
  border-radius: 3px;
}

.quick-tab-btn.active {
  border: 0;
  color: var(--malaysia-red);
}

.malaysia-route-strip {
  background: var(--malaysia-gold);
  color: var(--malaysia-blue-deep);
  border-bottom: 1px solid rgba(6, 28, 63, 0.16);
}

.route-strip-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 3rem;
}

.route-intro {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(6, 28, 63, 0.28);
}

.route-intro span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.route-intro strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.route-stops {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.route-stops span {
  display: flex;
  flex-direction: column;
  font-size: 0.76rem;
  color: rgba(6, 28, 63, 0.72);
}

.route-stops b {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--malaysia-blue-deep);
}

.entry-guide-section {
  background: var(--malaysia-cream);
}

.entry-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.entry-guide-copy .section-title,
.entry-guide-copy .section-desc {
  text-align: left;
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  margin-top: 1.8rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--malaysia-red);
  color: var(--malaysia-blue-deep);
  font-weight: 700;
}

.text-link span {
  color: var(--malaysia-red);
}

.entry-document-list {
  border-top: 1px solid rgba(11, 46, 100, 0.22);
}

.entry-document {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(11, 46, 100, 0.22);
}

.entry-document.active {
  border-bottom-color: var(--malaysia-red);
}

.document-number {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1;
  color: var(--malaysia-red);
}

.document-kicker {
  color: var(--malaysia-red);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  margin-bottom: 0.45rem;
}

.entry-document h3 {
  color: var(--malaysia-blue-deep);
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.entry-document p:last-child {
  color: var(--text-secondary);
  line-height: 1.75;
}

#how-it-works {
  background: var(--malaysia-blue-deep);
  border: 0;
}

#how-it-works .section-badge {
  color: var(--malaysia-gold);
  border-color: var(--malaysia-gold);
}

#how-it-works .section-title {
  color: #ffffff;
}

#how-it-works .section-title span {
  color: var(--malaysia-gold);
}

#how-it-works .section-desc {
  color: rgba(255, 255, 255, 0.68);
}

.steps-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.step-card {
  min-height: 280px;
  padding: 2.3rem 1.8rem;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: none;
}

.step-card:last-child {
  border-right: 0;
}

.step-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.step-number-badge {
  width: auto;
  height: auto;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  color: var(--malaysia-gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}

.step-title {
  color: #ffffff;
  font-size: 1.55rem;
}

.step-desc {
  color: rgba(255, 255, 255, 0.65);
}

.visa-categories-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(11, 46, 100, 0.22);
  border: 1px solid rgba(11, 46, 100, 0.22);
}

.visa-card {
  border: 0;
  border-radius: 0;
  padding: 2.8rem;
  box-shadow: none;
}

.visa-card:hover {
  border: 0;
  transform: none;
  box-shadow: inset 0 5px 0 var(--malaysia-red);
}

.visa-card.featured {
  border: 0;
  background: var(--malaysia-mist);
}

.visa-featured-pill {
  top: 0;
  right: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--malaysia-red);
  padding: 0.45rem 0.85rem;
}

.visa-card-title {
  font-size: 1.8rem;
  color: var(--malaysia-blue-deep);
}

.visa-price-val {
  color: var(--malaysia-blue-deep);
  font-family: var(--font-display);
  font-size: 3.2rem;
}

.visa-pill {
  border-radius: 3px;
}

.about-visual-card,
.apply-wizard-wrapper,
.tracker-box,
.contact-form-card {
  border: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.about-visual-card {
  background: var(--malaysia-blue-deep);
  color: #ffffff;
}

.official-badge-banner {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  text-align: left;
}

.official-badge-banner h4,
.official-badge-banner p,
.about-visual-card h5 {
  color: #ffffff !important;
}

.about-visual-card .visa-pill {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.about-point-card {
  border: 0;
  border-top: 4px solid var(--malaysia-red);
  border-radius: 0;
  box-shadow: none;
}

.apply-wizard-wrapper {
  border-top: 6px solid var(--malaysia-blue);
}

.form-control,
.speed-option-label {
  border-radius: 4px;
  border-color: #bac6d4;
}

.form-control:focus {
  border-color: var(--malaysia-red);
}

.order-summary-card {
  background: var(--malaysia-cream);
  border: 0;
  border-top: 5px solid var(--malaysia-red);
  border-radius: 3px;
  box-shadow: none;
}

#track {
  background: var(--malaysia-mist);
}

.tracker-box {
  border-top: 6px solid var(--malaysia-red);
}

.contact-info-card,
.faq-item {
  border-radius: 3px;
  box-shadow: none;
}

.contact-info-card {
  border: 0;
  border-left: 4px solid var(--malaysia-blue);
}

.contact-info-card:hover,
.faq-item:hover {
  transform: none;
  box-shadow: none;
}

.faq-list {
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--border-light);
}

.site-footer {
  background: var(--malaysia-blue-deep);
  border: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .logo-title,
.site-footer .footer-col-title,
.site-footer .footer-links a,
.site-footer .footer-brand p,
.site-footer .footer-bottom,
.site-footer a {
  color: #ffffff !important;
}

.site-footer .logo-title span,
.site-footer .footer-links a:hover {
  color: var(--malaysia-gold) !important;
}

.site-footer .logo-sub,
.site-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.56) !important;
}

.site-footer .footer-bottom {
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer .footer-badge-pill {
  background: rgba(244, 197, 66, 0.1);
  border-color: rgba(244, 197, 66, 0.3);
  color: var(--malaysia-gold);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 3rem;
  }

  .hero-title {
    font-size: clamp(3.7rem, 7vw, 5.4rem);
  }

  .route-stops {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding-top: 5rem;
    background-position: 62% center;
  }

  .hero-grid,
  .entry-guide-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  .route-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .route-intro {
    border-right: 0;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card:nth-child(2) {
    border-right: 0;
  }

  .step-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 768px) {
  .top-announcement {
    display: none;
  }

  .nav-wrapper {
    height: 68px;
  }

  .nav-menu.open {
    top: 68px;
    background: var(--bg-pure);
  }

  .hero-section {
    min-height: auto;
    padding: 4.5rem 0;
    background-position: 65% center;
  }

  .hero-title {
    font-size: clamp(3.25rem, 16vw, 4.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-guarantees {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .route-stops {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .entry-document {
    grid-template-columns: 58px 1fr;
  }

  .document-number {
    font-size: 2.5rem;
  }

  .steps-grid,
  .visa-categories-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .visa-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-logo {
    gap: 0.45rem;
  }

  .logo-symbol {
    width: 34px;
    font-size: 1.55rem;
  }

  .logo-title,
  .logo-sub {
    white-space: nowrap;
  }

  .logo-title {
    font-size: 0.78rem;
  }

  .logo-sub {
    font-size: 0.52rem;
  }

  .mobile-toggle {
    padding: 0.4rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }
}

.nav-wrapper {
  height: 72px;
}

.nav-menu {
  gap: 2.6rem;
}

.nav-actions {
  margin-left: 1rem;
}

.hero-section {
  min-height: 660px;
  padding: 5.25rem 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero-title {
  max-width: 680px;
  font-size: clamp(3.7rem, 5.5vw, 5.6rem);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 590px;
}

.hero-cta-group {
  margin-bottom: 1.75rem;
}

.hero-note {
  max-width: 520px;
  padding-left: 1rem;
  border-left: 3px solid var(--malaysia-gold);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.6;
}

.hero-card {
  padding: 2rem;
  border-left-width: 4px;
  box-shadow: 0 24px 60px rgba(2, 13, 31, 0.3);
}

.section {
  padding: 5.75rem 0;
}

.section-header {
  max-width: 740px;
  margin: 0 0 3.25rem;
  text-align: left;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1.08;
}

.route-strip-inner {
  min-height: 104px;
}

.entry-guide-grid {
  gap: clamp(3rem, 6vw, 6rem);
}

.visa-card {
  padding: 2.5rem;
}

.apply-wizard-wrapper,
.tracker-box,
.contact-form-card {
  box-shadow: 0 12px 32px rgba(6, 28, 63, 0.08);
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
  }

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

  .hero-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    height: 68px;
  }

  .hero-title {
    font-size: clamp(3.1rem, 15vw, 4.2rem);
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--malaysia-blue-deep);
  color: var(--malaysia-blue-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.clean-home {
  color: var(--text-primary);
}

.clean-home .eyebrow {
  margin-bottom: 1rem;
  color: var(--malaysia-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 5.5rem 0;
  background:
    linear-gradient(90deg, rgba(6, 28, 63, 0.95) 0%, rgba(6, 28, 63, 0.8) 48%, rgba(6, 28, 63, 0.28) 100%),
    url('../images/malaysia-hero.webp') center / cover no-repeat;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.home-hero-copy {
  max-width: 680px;
}

.home-hero-copy .eyebrow {
  color: var(--malaysia-gold);
}

.home-hero h1 {
  max-width: 650px;
  color: #ffffff;
  font-size: clamp(4rem, 7vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.home-hero-lead {
  max-width: 580px;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.quiet-link {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.quiet-link:hover {
  border-bottom-color: #ffffff;
}

.entry-planner {
  padding: 2rem;
  background: #ffffff;
  border-top: 4px solid var(--malaysia-red);
}

.entry-planner-heading {
  margin-bottom: 1.5rem;
}

.entry-planner-heading h2 {
  color: var(--malaysia-blue-deep);
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.entry-planner-heading p {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.entry-planner .btn {
  width: 100%;
}

.home-section {
  padding: 6.5rem 0;
}

.home-split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.home-split-heading h2,
.home-cta h2 {
  max-width: 680px;
  color: var(--malaysia-blue-deep);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.home-split-heading > p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.entry-section {
  background: var(--malaysia-cream);
}

.document-rows,
.visa-rows {
  border-top: 1px solid rgba(11, 46, 100, 0.22);
}

.document-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 190px;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(11, 46, 100, 0.22);
}

.document-label {
  color: var(--malaysia-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.document-row h3,
.visa-row h3,
.process-list h3 {
  color: var(--malaysia-blue-deep);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.document-row p,
.visa-row p,
.process-list p {
  margin-top: 0.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.document-timing {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: right;
}

.visa-section {
  background: #ffffff;
}

.visa-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(360px, 1fr) 76px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(11, 46, 100, 0.18);
}

.visa-row-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.visa-row-details dt {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visa-row-details dd {
  color: var(--malaysia-blue-deep);
  font-size: 0.84rem;
  font-weight: 600;
}

.visa-row-action {
  justify-self: end;
  color: var(--malaysia-red);
  font-size: 0.88rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(201, 21, 61, 0.35);
}

.malaysia-feature-section {
  padding: 5rem 0;
  background: var(--malaysia-cream);
}

.malaysia-feature-heading {
  max-width: 800px;
  margin-bottom: 2rem;
}

.malaysia-feature-heading h2 {
  color: var(--malaysia-blue-deep);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.malaysia-feature-heading > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.malaysia-feature-visual {
  width: 84%;
  max-width: 980px;
  padding-right: 0;
  padding-left: 0;
}

.malaysia-feature-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  display: block;
  object-fit: cover;
}

.malaysia-feature-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.25rem;
}

.malaysia-feature-visual figcaption span,
.malaysia-feature-visual figcaption strong {
  font-size: 0.82rem;
  font-weight: 650;
}

.malaysia-feature-visual figcaption span {
  color: var(--malaysia-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.malaysia-feature-visual figcaption strong {
  color: var(--malaysia-blue-deep);
  text-align: right;
}

.destination-section {
  padding: 5rem 0;
  background: #ffffff;
}

.destination-grid {
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.destination-story img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  display: block;
  object-fit: cover;
}

.destination-story figcaption {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0 0;
}

.destination-story figcaption span {
  color: var(--malaysia-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-story figcaption strong {
  max-width: 300px;
  color: var(--malaysia-blue-deep);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: right;
}

.process-section {
  background: var(--malaysia-blue-deep);
}

.process-section .eyebrow {
  color: var(--malaysia-gold);
}

.process-section .home-split-heading h2 {
  color: #ffffff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.process-list li {
  min-height: 190px;
  padding: 2rem 2rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li + li {
  padding-left: 2rem;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--malaysia-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-list h3 {
  color: #ffffff;
}

.process-list p {
  color: rgba(255, 255, 255, 0.64);
}

.questions-section {
  background: var(--malaysia-cream);
}

.questions-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.questions-heading h2 {
  color: var(--malaysia-blue-deep);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.questions-heading > p:not(.eyebrow) {
  margin: 1.5rem 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.questions-heading .visa-row-action {
  display: inline-block;
}

.question-list {
  border-top: 1px solid rgba(11, 46, 100, 0.22);
}

.question-list > div {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(11, 46, 100, 0.22);
}

.question-list dt {
  color: var(--malaysia-blue-deep);
  font-size: 1rem;
  font-weight: 650;
}

.question-list dd {
  margin-top: 0.55rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.home-cta {
  padding: 5rem 0;
  background: #e7f2f7;
}

.home-cta .eyebrow {
  color: var(--malaysia-blue-deep);
}

.home-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
}

.sticky-apply-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid rgba(11, 46, 100, 0.16);
  backdrop-filter: blur(12px);
}

.sticky-apply-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sticky-apply-inner > div {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.sticky-apply-inner strong {
  color: var(--malaysia-blue-deep);
  font-size: 0.96rem;
}

.sticky-apply-inner span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.sticky-apply-inner .btn {
  flex-shrink: 0;
}

.sticky-apply-bar + .site-footer {
  padding-bottom: 78px;
}

.footer-minimal {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-summary {
  max-width: 430px;
}

.footer-summary p {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.footer-legal p {
  max-width: 560px;
  text-align: right;
}

.site-footer .logo-mark {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

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

  .entry-planner {
    max-width: 560px;
  }

  .home-split-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .questions-grid {
    grid-template-columns: 1fr;
  }

  .visa-row {
    grid-template-columns: 1fr 1fr 60px;
  }

  .visa-row-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: auto;
    padding: 4.5rem 0;
    background-position: 62% center;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .home-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-section {
    padding: 4.5rem 0;
  }

  .malaysia-feature-section,
  .destination-section {
    padding: 3.5rem 0;
  }

  .home-split-heading {
    margin-bottom: 2.5rem;
  }

  .document-row,
  .visa-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .document-timing,
  .visa-row-action {
    justify-self: start;
    text-align: left;
  }

  .visa-row-details {
    margin: 0.75rem 0;
  }

  .malaysia-feature-visual figcaption {
    flex-direction: column;
    gap: 0.4rem;
  }

  .malaysia-feature-visual figcaption strong {
    text-align: left;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-story figcaption {
    flex-direction: column;
    gap: 0.4rem;
  }

  .destination-story figcaption strong {
    text-align: left;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    min-height: auto;
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list span {
    margin-bottom: 1rem;
  }

  .home-cta-inner,
  .footer-minimal,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-legal p {
    text-align: left;
  }

  .sticky-apply-inner {
    min-height: 70px;
  }

  .sticky-apply-inner span {
    display: none;
  }

  .sticky-apply-inner strong {
    font-size: 0.82rem;
  }

  .sticky-apply-inner .btn {
    padding: 0.7rem 1rem;
    font-size: 0.78rem;
  }

  .sticky-apply-bar + .site-footer {
    padding-bottom: 70px;
  }
}
