/* Willingrow Express-style landing page (dark + orange) */
:root {
  /* Brand */
  --orange: #f7941d;
  --orange-dark: #e07d00;
  --orange-light: #ffb347;
  --yellow: #fcd116;

  /* Dark theme */
  --dark: #0e0e0e;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --dark-4: #2f2f2f;

  /* Legacy aliases (kept so existing rules still work) */
  --teal: #f7941d;
  --teal-dark: #e07d00;
  --lime: #f7941d;
  --lime-hover: #e07d00;

  --footer-bg: #0a0a0a;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #d0d0d0;
  --bg-light: #f4f4f4;
  --white: #fff;
  --border: #e0e0e0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid #000;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
}

.logo span {
  color: var(--orange);
}

.logo img {
  max-height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--orange);
}

.main-nav a.is-active {
  color: var(--orange);
  position: relative;
}

.main-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-select {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--white);
}

.lang-select img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.header-links {
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.header-links a {
  color: var(--text-light);
}

.header-links a:hover {
  color: var(--orange);
}

.btn-track {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: filter 0.2s;
  white-space: nowrap;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-track:hover {
  filter: brightness(1.05);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 560px;
  background: var(--dark) url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') right center/cover no-repeat;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(247, 148, 29, 0.18) 0%, transparent 45%),
    linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.35) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 60%, 75% 0, 25% 60%, 0 100%);
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 30px;
}

.hero-content {
  flex: 1;
  max-width: 480px;
  color: var(--white);
  padding-top: 40px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-content h1 .accent {
  color: var(--orange);
  display: block;
}

.hero-tagline {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.6;
}

.btn-how {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.35);
  text-transform: uppercase;
}

.btn-how:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-how i {
  font-size: 16px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  color: var(--white);
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 60px;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.hero-dots span.active {
  background: var(--white);
}

/* Booking form */
.booking-card {
  background: var(--white);
  width: 420px;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  align-self: center;
  overflow: hidden;
}

.booking-tabs {
  display: flex;
  background: var(--dark-2);
}

.booking-tab {
  flex: 1;
  padding: 14px 12px;
  background: var(--dark-2);
  border: none;
  color: var(--text-light);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}

.booking-tab:hover {
  color: var(--white);
}

.booking-tab.active {
  background: var(--white);
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.booking-form {
  background: var(--white);
  padding: 24px;
}

.booking-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.booking-form .field {
  margin-bottom: 14px;
}

.booking-form select,
.booking-form input[type="text"],
.booking-form input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-family: inherit;
}

.booking-form select {
  appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
  padding-right: 32px;
}

.booking-form select:focus,
.booking-form input:focus {
  outline: none;
  border-color: var(--orange);
}

/* Country picker dropdown */
.country-picker-field > label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.label-help {
  border: none;
  background: none;
  padding: 0;
  color: #999;
  font-size: 14px;
  cursor: help;
  line-height: 1;
}

.label-help:hover {
  color: var(--teal);
}

.country-picker {
  position: relative;
}

.country-picker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 36px 10px 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.country-picker-trigger.is-placeholder .country-name {
  color: #999;
}

.country-picker-trigger .flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #eee;
}

.country-picker-trigger .country-name {
  flex: 1;
  font-weight: 600;
  color: var(--text-dark);
}

.country-picker-trigger .caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #888;
}

.country-picker.is-open .country-picker-trigger {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}

.country-picker-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.country-search-wrap {
  position: relative;
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.country-search {
  width: 100%;
  padding: 8px 32px 8px 10px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-family: inherit;
}

.country-search:focus {
  outline: none;
  border-color: var(--teal);
}

.country-search-wrap .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
  pointer-events: none;
}

.country-list {
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  list-style: none;
}

.country-list li .flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #eee;
}

.country-list li:hover {
  background: #f0f0f0;
}

.country-list li.is-highlighted {
  background: #1e90ff;
  color: var(--white);
}

.country-list li.is-selected {
  font-weight: 600;
}

.country-list li[hidden] {
  display: none;
}

.package-details label {
  margin-bottom: 8px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.package-grid input {
  text-align: center;
  padding: 8px 4px;
}

.package-grid input::placeholder {
  font-size: 11px;
  color: #aaa;
}

.multi-packages-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

a.multi-packages-row:hover {
  color: var(--orange-dark);
}

.checkbox-row input {
  width: 16px;
  height: 16px;
}

.multi-packages-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.multi-packages-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.multi-packages-row:hover .multi-packages-plus {
  background: var(--orange-dark);
  transform: scale(1.05);
}

.multi-packages-input:checked + .multi-packages-plus {
  background: var(--orange-dark);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.25);
}

.multi-packages-input:focus-visible + .multi-packages-plus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Carriers list */
.carriers-panel {
  margin-bottom: 14px;
  padding: 12px;
  background: #fff8ed;
  border: 1px solid #f3dab0;
  border-radius: 6px;
}

.carriers-panel.is-loading {
  opacity: 0.7;
}

.carriers-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.carriers-message {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.carriers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.carriers-list--compact {
  gap: 6px;
}

.carrier-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-dark);
  background: var(--white);
  border: 1px solid #f3dab0;
  border-radius: 30px;
}

.carrier-tag--empty {
  font-weight: 400;
  color: var(--text-muted);
  border-style: dashed;
}

.checkbox-row .info-icon {
  color: #4a90d9;
  cursor: help;
}

.btn-quote {
  width: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.35);
}

.btn-quote:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* ASK US tab */
.ask-us-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 16px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 200;
  cursor: pointer;
  border: none;
  border-radius: 6px 0 0 6px;
  box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.25);
}

.ask-us-tab:hover {
  filter: brightness(1.05);
}

/* ========== MIDDLE SECTION ========== */
.middle-section {
  background: var(--bg-light);
  padding: 50px 0;
}

.middle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-left: 14px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.offer-card,
.reviews-card {
  background: var(--white);
  padding: 24px;
  border: 1px solid #e5e5e5;
  min-height: 280px;
}

.route-display {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.route-from,
.route-to {
  font-size: 15px;
  font-weight: 600;
}

.route-arrow {
  color: var(--orange);
  font-size: 20px;
}

.route-to .processing {
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
}

.providers-block {
  margin-bottom: 20px;
}

.providers-block h4,
.members-block h4 {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.provider-logo {
  font-size: 28px;
  font-weight: 700;
  color: #e31837;
  letter-spacing: -1px;
}

.provider-logo span {
  color: #333;
}

.member-logo {
  font-size: 24px;
  font-weight: 800;
  color: #003366;
  letter-spacing: 2px;
}

/* Reviews */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.rating-summary .text {
  font-size: 14px;
  color: var(--text-muted);
}

.rating-summary .text strong {
  color: var(--text-dark);
}

.rating-summary .score {
  font-weight: 700;
  color: var(--text-dark);
}

.rating-summary .thumb {
  color: #4a90d9;
  font-size: 28px;
}

.review-item {
  margin-bottom: 16px;
}

.review-item .name {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}

.stars {
  color: #f5a623;
  font-size: 12px;
  margin-bottom: 6px;
}

.review-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn-read-more {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.btn-read-more:hover {
  background: var(--teal-dark);
}

.review-dots {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.review-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a90d9;
  opacity: 0.4;
  cursor: pointer;
}

.review-dots span.active {
  opacity: 1;
}

/* ========== FEATURES (TEAL) ========== */
.features-section {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(247, 148, 29, 0.12), transparent 50%);
  pointer-events: none;
}

.features-section h2 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 0 20px;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--orange);
  background: rgba(247, 148, 29, 0.12);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.feature-item p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.95;
}

/* ========== INFO SECTION ========== */
.info-section {
  background: var(--dark);
  color: var(--white);
  padding: 0 0 70px;
}

.info-section h2 .accent,
.features-section h2 .accent {
  color: var(--orange);
}

.info-section h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.info-section p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 16px;
  max-width: 900px;
}

.info-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.btn-lime {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-size: 13px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.3);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-lime:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--footer-bg);
  color: #bbb;
  padding: 50px 0 0;
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a:hover {
  color: var(--white);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pay-icon {
  background: var(--white);
  color: #333;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.pay-icon.visa { color: #1a1f71; }
.pay-icon.mc { color: #eb001b; }
.pay-icon.paypal { color: #003087; }
.pay-icon.amex { color: #006fcf; }

.norton-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #444;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 11px;
  color: #ccc;
}

.norton-badge i {
  color: #f5a623;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: background 0.2s;
}

.social-icons a:hover {
  background: var(--teal);
}

.copyright {
  font-size: 11px;
  color: #888;
  text-align: right;
  line-height: 1.6;
}

/* Checkmark bullets on left */
.section-check {
  position: relative;
}

.section-check::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: -30px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-card {
    width: 100%;
    max-width: 460px;
  }

  .hero-content {
    max-width: 100%;
  }

  .main-nav {
    display: none;
  }

  .middle-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-buttons {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .copyright {
    text-align: center;
  }
}

/* ========== QUOTE PAGE ========== */

/* Stepper */
.stepper {
  display: flex;
  background: #f4f4f4;
  border-bottom: 1px solid #e0e0e0;
}

.step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  position: relative;
  background: #f4f4f4;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 22px solid #f4f4f4;
  z-index: 2;
}

.step:not(:last-child)::before {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 22px solid #e0e0e0;
  z-index: 1;
}

.step.active {
  background: var(--teal);
  color: var(--white);
}

.step.active:not(:last-child)::after {
  border-left-color: var(--teal);
}

.step.active:not(:last-child)::before {
  border-left-color: var(--teal-dark);
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ccc;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.step.active .step-num {
  background: var(--white);
  color: var(--teal);
}

.step-label {
  font-size: 14px;
}

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  font-size: 13px;
  flex-wrap: wrap;
}

.filter-bar-message {
  color: var(--text-muted);
}

.filter-bar-controls {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
}

.filter-control select {
  padding: 6px 24px 6px 10px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 12px;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
}

/* Layout */
.quote-section {
  padding: 24px 0 60px;
  background: var(--bg-light);
  min-height: 60vh;
}

.quote-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
}

/* Order summary sidebar */
.order-summary-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  padding: 16px;
  font-size: 13px;
  height: fit-content;
}

.order-summary-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  background: #eef6f6;
  padding: 8px 12px;
  margin: -16px -16px 12px;
  border-bottom: 1px solid #e0e8e8;
}

.order-summary-card .hint {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.order-row {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.order-row.totals {
  gap: 12px;
  justify-content: flex-start;
  font-size: 12px;
}

.order-row .ol {
  font-weight: 700;
  color: var(--text-dark);
  min-width: 40px;
}

.order-row .or {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dark);
  flex: 1;
}

.order-row .or .flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border: 1px solid #eee;
}

.change-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}

.change-link:hover {
  color: var(--teal-dark);
}

/* Promo banners */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  margin-bottom: 14px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.promo-banner--teal {
  background: linear-gradient(110deg, #1a8a8a 0%, #2ea0a0 50%, #1a8a8a 100%);
}

.promo-banner--lime {
  background: linear-gradient(110deg, #7ab532 0%, #9ed24a 50%, #7ab532 100%);
}

.promo-banner-flash {
  flex-shrink: 0;
  background: var(--lime);
  color: var(--white);
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 22px;
  transform: rotate(-8deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.promo-banner-text {
  font-size: 15px;
  line-height: 1.4;
}

.promo-banner-text strong {
  font-weight: 800;
}

/* Unavailable banner */
.unavailable-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff5f5;
  border: 1px solid #f0c8c8;
  border-left: 4px solid #c0392b;
  padding: 18px 22px;
  margin-bottom: 14px;
}

.unavailable-banner i {
  color: #c0392b;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.unavailable-banner h2 {
  font-size: 16px;
  color: #c0392b;
  margin-bottom: 6px;
}

.unavailable-banner p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Service cards */
.service-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  margin-bottom: 14px;
}

.service-card-header {
  background: var(--teal-dark);
  color: var(--white);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.service-name {
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-name .badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.badge.express {
  background: var(--lime);
  color: var(--white);
}

.collection-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.95;
}

.service-card-body {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 22px 14px;
}

.carrier-logo {
  width: 110px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  border-radius: 4px;
}

.service-price-block {
  text-align: left;
}

.service-price {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

.service-price--na {
  font-size: 22px;
  color: #c0392b;
}

.service-price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: capitalize;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-days {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-days strong {
  display: block;
  font-size: 26px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.service-features i {
  color: var(--teal);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.service-card-footer {
  text-align: center;
  padding: 0 22px 16px;
}

.btn-buy {
  background: var(--lime);
  color: var(--white);
  border: none;
  padding: 11px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-buy:hover:not(:disabled) {
  background: var(--lime-hover);
}

.btn-buy--disabled,
.btn-buy:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.service-more-info {
  border-top: 1px solid #eee;
  font-size: 12px;
}

.service-more-info summary {
  list-style: none;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  color: var(--teal);
  font-weight: 600;
}

.service-more-info summary::-webkit-details-marker {
  display: none;
}

.service-more-info summary:hover {
  color: var(--teal-dark);
}

.service-breakdown {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.service-breakdown th,
.service-breakdown td {
  padding: 8px 22px;
  text-align: left;
  border-top: 1px solid #f0f0f0;
}

.service-breakdown th {
  font-weight: 600;
  color: var(--text-muted);
  width: 45%;
}

.service-breakdown td {
  text-align: right;
  font-weight: 600;
  color: var(--text-dark);
}

.service-breakdown .total-row th,
.service-breakdown .total-row td {
  background: #f8fafa;
  font-size: 14px;
  color: var(--teal-dark);
  font-weight: 700;
}

.service-card--featured {
  box-shadow: 0 2px 12px rgba(0, 122, 122, 0.12);
  border-color: var(--teal);
}

/* Empty state */
.empty-services {
  background: var(--white);
  border: 1px solid #e5e5e5;
  padding: 50px 30px;
  text-align: center;
}

.empty-services i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 14px;
}

.empty-services h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.empty-services p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .service-card-body {
    grid-template-columns: 100px 1fr;
    grid-template-areas:
      "logo price"
      "meta meta";
    gap: 14px;
  }
  .carrier-logo { grid-area: logo; width: 100%; height: 60px; }
  .service-price-block { grid-area: price; }
  .service-meta { grid-area: meta; flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .stepper { font-size: 11px; }
  .step { padding: 12px 22px; }
}

@media (max-width: 640px) {
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .step-label { display: none; }
  .promo-banner { flex-direction: column; text-align: center; }
}

/* ========== ADDRESSES / SHIPPING PAGE ========== */
.step.done {
  background: #3a3a3a;
  color: var(--white);
  text-decoration: none;
}

.step.done .step-num {
  background: var(--orange);
  color: var(--white);
}

.step.done:not(:last-child)::after {
  border-left-color: #3a3a3a;
}

a.step {
  color: inherit;
}

.addr-page {
  background: var(--bg-light);
  padding: 24px 0 60px;
}

.addr-service-bar {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  margin-bottom: 18px;
}

.addr-service-selected {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.addr-carrier-badge {
  width: 64px;
  height: 48px;
  background: var(--dark);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  flex-shrink: 0;
}

.addr-service-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.addr-service-selected strong {
  font-size: 16px;
  color: var(--text-dark);
}

.addr-service-price {
  display: inline-block;
  margin-left: 10px;
  color: var(--orange-dark);
  font-weight: 700;
}

.addr-service-info {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}

.addr-service-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.addr-read-more {
  margin-top: 8px;
  border: none;
  background: #fff3e0;
  color: var(--orange-dark);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
}

.addr-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.addr-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.addr-card--full {
  margin-bottom: 16px;
}

.addr-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.addr-card--green .addr-card-header {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
}

.addr-card--dark .addr-card-header {
  background: var(--dark);
}

.addr-card-header .flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.4);
}

.addr-card-header i {
  margin-right: 6px;
}

.addr-card-body {
  padding: 16px;
}

.addr-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.addr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.addr-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.addr-field--full {
  grid-column: 1 / -1;
}

.addr-field input,
.addr-field select,
.addr-field textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-family: inherit;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
}

.addr-field input:focus,
.addr-field select:focus,
.addr-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.addr-phone {
  display: flex;
  gap: 0;
}

.addr-phone select {
  width: 90px;
  flex-shrink: 0;
  border-right: none;
}

.addr-phone input {
  flex: 1;
}

.addr-readonly {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  background: #fafafa;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.addr-readonly .flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.addr-readonly a {
  margin-left: auto;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.addr-required-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

.addr-link {
  display: inline-block;
  margin: 8px 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
}

.addr-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 400;
}

.addr-check input {
  margin-top: 2px;
}

.addr-check a {
  color: var(--orange);
  font-weight: 600;
}

.addr-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.addr-radios label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.addr-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.btn-pay {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.35);
}

.btn-pay:hover {
  filter: brightness(1.05);
}

.btn-save-later {
  background: #fff3e0;
  color: var(--orange-dark);
  border: 1px solid #f3dab0;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}

.btn-save-later:hover {
  background: #ffe8c4;
}

@media (max-width: 900px) {
  .addr-service-bar,
  .addr-two-col,
  .addr-grid {
    grid-template-columns: 1fr;
  }
  .addr-actions {
    align-items: stretch;
  }
  .btn-pay,
  .btn-save-later {
    width: 100%;
  }
}

/* ========== GET QUOTE PAGE ========== */
.gq-page {
  background: var(--bg-light);
  padding: 28px 0 60px;
  min-height: 70vh;
}

.gq-title-banner {
  background: var(--dark);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  padding: 16px 22px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.gq-intro {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.gq-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px;
  align-items: start;
}

.gq-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.gq-order-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  padding: 12px 18px;
  flex-wrap: wrap;
}

.gq-order-bar strong {
  font-size: 15px;
  letter-spacing: 0.3px;
}

.gq-order-bar span {
  font-size: 12px;
  opacity: 0.95;
}

.gq-form-body {
  padding: 20px 18px 10px;
}

.gq-countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 8px;
}

.gq-countries .field {
  margin-bottom: 10px;
}

.gq-countries input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-family: inherit;
  text-transform: uppercase;
}

.gq-countries input[type="text"]:focus {
  outline: none;
  border-color: var(--orange);
}

.gq-package-block {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.gq-package-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.gq-package-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eee;
}

.gq-package-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.gq-package-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 8px;
}

.gq-remove-row {
  width: 32px;
  height: 32px;
  border: 1px solid #e5b4b4;
  background: #fff5f5;
  color: #c0392b;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-left: 4px;
}

.gq-remove-row:hover {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}

.gq-add-packages {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.gq-add-packages:hover {
  color: var(--orange-dark);
}

.gq-add-packages .multi-packages-plus {
  width: 20px;
  height: 20px;
  font-size: 15px;
}

.gq-submit {
  width: auto !important;
  padding: 10px 22px !important;
  margin-left: 0;
  white-space: nowrap;
  border-radius: 4px !important;
}

.gq-pkg-field {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  background: var(--white);
  height: 40px;
}

.gq-pkg-field input {
  border: none;
  padding: 0 10px;
  font-size: 13px;
  font-family: inherit;
  width: 70px;
  min-width: 0;
  background: transparent;
}

.gq-pkg-field input:focus {
  outline: none;
}

.gq-pkg-prefix,
.gq-pkg-suffix {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: #f5f5f5;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.gq-pkg-suffix {
  border-right: none;
  border-left: 1px solid var(--border);
}

.gq-pkg-qty input {
  width: 48px;
  text-align: center;
}

.gq-pkg-weight input {
  width: 64px;
}

.gq-pkg-dim input {
  width: 72px;
}

.gq-pkg-x {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
}

.gq-form-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: var(--text-dark);
  background: #fafafa;
}

.gq-form-footer strong {
  color: var(--orange-dark);
}

.gq-sidebar {
  background: var(--white);
  border: 2px solid var(--orange);
  padding: 24px 16px;
  text-align: center;
  min-height: 280px;
}

.gq-sidebar h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.gq-sidebar-art {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gq-box {
  width: 90px;
  position: relative;
  z-index: 1;
}

.gq-box-lid {
  height: 28px;
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  clip-path: polygon(8% 100%, 92% 100%, 100% 0, 0 0);
  margin-bottom: 2px;
}

.gq-box-body {
  height: 70px;
  background: linear-gradient(180deg, #2f2f2f 0%, #1a1a1a 100%);
  border: 2px solid #444;
  position: relative;
}

.gq-box-body::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #555;
  transform: translateX(-50%);
}

.gq-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(247, 148, 29, 0.35);
}

.gq-arrow-left {
  left: 8px;
}

.gq-arrow-right {
  right: 8px;
}

@media (max-width: 900px) {
  .gq-layout {
    grid-template-columns: 1fr;
  }
  .gq-sidebar {
    order: -1;
    min-height: auto;
    padding: 18px;
  }
  .gq-sidebar-art {
    height: 120px;
  }
}

@media (max-width: 700px) {
  .gq-countries {
    grid-template-columns: 1fr;
  }
  .gq-package-row {
    gap: 10px;
  }
  .gq-submit {
    width: 100% !important;
    margin-left: 0;
  }
}

/* ========== BECOME A PARTNER PAGE ========== */
.partner-page {
  background: var(--bg-light);
  padding: 28px 0 60px;
  min-height: 70vh;
}

.partner-hero {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.partner-hero-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
}

.partner-hero-body {
  background: linear-gradient(110deg, #2a2a2a 0%, #3d2a12 45%, #f7941d 100%);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 40px;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.partner-hero-body h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 420px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.partner-hero-art {
  position: relative;
  width: 280px;
  height: 140px;
  flex-shrink: 0;
  z-index: 2;
}

.partner-map {
  position: absolute;
  inset: 10px 0 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 40%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 40% 60%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 60% 30%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 75% 55%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 55% 75%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 30% 70%, #fff 1.5px, transparent 2px);
  background-size: 40px 40px;
}

.partner-box {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 88px;
  z-index: 3;
}

.partner-box-lid {
  height: 26px;
  background: linear-gradient(180deg, #ffb347 0%, #f7941d 100%);
  clip-path: polygon(8% 100%, 92% 100%, 100% 0, 0 0);
  margin-bottom: 2px;
}

.partner-box-body {
  height: 58px;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
  border: 2px solid #555;
  position: relative;
}

.partner-box-body::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #666;
  transform: translateX(-50%);
}

.partner-pin {
  position: absolute;
  color: var(--dark);
  font-size: 18px;
  z-index: 4;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

.partner-pin-1 { top: 18%; left: 18%; }
.partner-pin-2 { top: 30%; right: 22%; }
.partner-pin-3 { bottom: 18%; left: 30%; }
.partner-pin-4 { bottom: 28%; right: 12%; }

.partner-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 30px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dark);
}

.partner-lead {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.partner-list {
  margin: 0 0 20px;
  padding-left: 18px;
}

.partner-list li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.partner-list li::marker {
  color: var(--orange);
  font-weight: 700;
}

.partner-content p {
  margin-bottom: 14px;
}

.partner-content a {
  color: var(--orange-dark);
}

.partner-content a:hover {
  color: var(--orange);
}

.partner-closing {
  font-weight: 600;
  margin-bottom: 22px !important;
}

.partner-cta {
  display: inline-block;
  width: auto !important;
  padding: 12px 28px !important;
  text-align: center;
  text-decoration: none;
  border-radius: 30px !important;
}

@media (max-width: 768px) {
  .partner-hero-body {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }
  .partner-hero-body h1 {
    font-size: 28px;
  }
  .partner-hero-art {
    width: 100%;
    height: 120px;
  }
  .partner-content {
    padding: 20px;
  }
}

/* ========== FAQs PAGE ========== */
.faq-page {
  background: var(--bg-light);
  min-height: 70vh;
  padding-bottom: 60px;
}

.faq-hero {
  background: linear-gradient(110deg, #1a1a1a 0%, #3d2a12 50%, #f7941d 100%);
  color: var(--white);
  padding: 40px 0 48px;
  margin-bottom: 28px;
}

.faq-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.faq-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-bottom: 8px;
}

.faq-hero-text h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.15;
}

.faq-hero-sub {
  font-size: 14px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 6px;
  padding: 12px 16px;
  max-width: 520px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-search i {
  color: #999;
}

.faq-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: transparent;
}

.faq-hero-art {
  position: relative;
  width: 220px;
  height: 140px;
  flex-shrink: 0;
}

.faq-hero-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
}

.faq-hero-box-lid {
  height: 26px;
  background: linear-gradient(180deg, #ffb347 0%, #f7941d 100%);
  clip-path: polygon(8% 100%, 92% 100%, 100% 0, 0 0);
  margin-bottom: 2px;
}

.faq-hero-box-body {
  height: 58px;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
  border: 2px solid #555;
}

.faq-node {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-node-1 { top: 8%; left: 8%; }
.faq-node-2 { top: 0; right: 12%; }
.faq-node-3 { bottom: 10%; right: 20%; }

.faq-no-results {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.faq-category {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-category-header {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.faq-category-header::-webkit-details-marker {
  display: none;
}

.faq-cat-icon {
  transition: transform 0.2s;
}

.faq-category[open] > .faq-category-header .faq-cat-icon {
  transform: rotate(45deg);
}

.faq-category-body {
  padding: 0 4px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item-icon {
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] > summary .faq-item-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 16px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .faq-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-hero-text h1 {
    font-size: 26px;
  }
  .faq-hero-art {
    width: 100%;
    height: 110px;
  }
  .faq-search {
    max-width: 100%;
  }
}

/* ========== TRACK ORDER PAGE ========== */
.track-page {
  background: var(--bg-light);
  min-height: 70vh;
  padding-bottom: 60px;
}

.track-hero {
  background: linear-gradient(110deg, #1a1a1a 0%, #3d2a12 50%, #f7941d 100%);
  color: var(--white);
  padding: 40px 0;
  margin-bottom: 28px;
}

.track-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.track-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-bottom: 8px;
}

.track-hero-text h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.track-hero-sub {
  font-size: 14px;
  opacity: 0.9;
  max-width: 480px;
}

.track-hero-art {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  flex-shrink: 0;
}

.track-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 20px;
}

.track-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.track-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.track-form-row input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.track-form-row input:focus {
  outline: none;
  border-color: var(--orange);
}

.track-submit {
  width: auto !important;
  padding: 12px 28px !important;
  border-radius: 6px !important;
}

.track-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.track-demo-link {
  border: none;
  background: none;
  color: var(--orange-dark);
  font-weight: 700;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.track-result {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 20px;
}

.track-result--error {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-left: 4px solid #c0392b;
}

.track-result--error i {
  color: #c0392b;
  font-size: 22px;
  margin-top: 2px;
}

.track-result--error h2 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #c0392b;
}

.track-summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.track-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.track-status--transit {
  background: #fff3e0;
  color: var(--orange-dark);
}

.track-status--delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.track-summary h2 {
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.track-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.track-summary-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 13px;
}

.track-summary-stats .label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.track-timeline-title {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.track-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
  border-left: 2px solid #eee;
}

.track-timeline li {
  position: relative;
  padding: 0 0 22px 24px;
}

.track-timeline li:last-child {
  padding-bottom: 0;
}

.track-dot {
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px #ddd;
}

.track-timeline li.is-current .track-dot {
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(247, 148, 29, 0.35);
}

.track-event-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.track-event-detail {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.track-event-loc {
  font-size: 12px;
  color: var(--text-muted);
}

.track-event-loc i {
  color: var(--orange);
  margin-right: 4px;
}

.track-help-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px 24px;
}

.track-help-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.track-help-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.track-help-card a:not(.btn-quote) {
  color: var(--orange-dark);
  font-weight: 600;
}

.track-cta {
  display: inline-block;
  width: auto !important;
  padding: 11px 24px !important;
  text-decoration: none;
  border-radius: 30px !important;
  text-align: center;
}

@media (max-width: 768px) {
  .track-hero-text h1 {
    font-size: 26px;
  }
  .track-summary-stats {
    grid-template-columns: 1fr;
  }
  .track-submit {
    width: 100% !important;
  }
}

/* ========== AUTH (SIGN IN / REGISTER) ========== */
.auth-page {
  background: var(--bg-light);
  padding: 40px 0 70px;
  min-height: 70vh;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.auth-promo {
  background: linear-gradient(145deg, #1a1a1a 0%, #3d2a12 55%, #f7941d 100%);
  color: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.auth-promo h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}

.auth-promo > p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 22px;
}

.auth-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.auth-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

.auth-benefits i {
  color: var(--orange-light);
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.auth-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.auth-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 16px;
}

.auth-alert--error {
  background: #fff5f5;
  border: 1px solid #f0c8c8;
  color: #c0392b;
}

.auth-alert--success {
  background: #eefaf0;
  border: 1px solid #b7e4bf;
  color: #1e7a32;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.auth-field input {
  padding: 11px 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  color: var(--text-dark);
  border-radius: 4px;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--orange);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 18px;
  flex-wrap: wrap;
}

.auth-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
}

.auth-link {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
}

.auth-link:hover {
  color: var(--orange);
}

.auth-submit {
  border-radius: 6px !important;
}

.auth-switch {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }
}

/* ========== REGISTER PAGE ========== */
.register-page {
  background: var(--bg-light);
  padding: 28px 0 60px;
  min-height: 70vh;
}

.register-card {
  background: var(--white);
  border: 1px solid #dfe7ef;
  border-radius: 6px;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.register-card-header {
  background: var(--dark);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 14px 22px;
}

.register-card-body {
  padding: 22px 22px 18px;
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.reg-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.reg-field em,
.reg-check em,
.reg-required-note em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.reg-field input,
.reg-field select {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--border);
  background: #f7f7f7;
  font-size: 13px;
  font-family: inherit;
  font-weight: 400;
  color: var(--text-dark);
  border-radius: 3px;
}

.reg-field input:focus,
.reg-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.register-col .country-picker-field {
  margin-bottom: 12px;
}

.register-col .country-picker-field > label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.register-col .country-picker-trigger {
  background: #f7f7f7;
  border-radius: 3px;
}

.reg-checks {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reg-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.45;
  cursor: pointer;
}

.reg-check input {
  margin-top: 2px;
  flex-shrink: 0;
}

.reg-check a {
  color: var(--orange-dark);
  font-weight: 700;
}

.register-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.reg-required-note {
  font-size: 12px;
  color: var(--text-muted);
}

.register-submit {
  width: auto !important;
  padding: 11px 36px !important;
  border-radius: 6px !important;
}

.register-card .auth-switch {
  margin-top: 14px;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .register-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .register-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .register-submit {
    width: 100% !important;
  }
}
