* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #3a3286;
  color: #f5f6ff;
}

.site-header {
  background: #1a1f3a;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1000;
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
  }
  
  .mobile-menu-container {
    display: flex !important;
    margin-left: auto;
  }
}

@media (min-width: 769px) {
  .mobile-menu-container {
    display: none !important;
  }
}

.header-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-logo .metro-text {
  font-size: 32px;
  font-weight: 600;
  color: #8b9aff;
  line-height: 1;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.header-logo .pcs-text {
  font-size: 32px;
  font-weight: 600;
  color: #f97316;
  line-height: 1;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-logo .pcs-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  display: inline-block;
}

.header-logo .tagline {
  font-size: 12px;
  color: #a0a0a0;
  font-weight: 400;
  margin-top: 2px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

.header-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.header-nav a:hover {
  opacity: 0.8;
}

.header-nav .track-button {
  background: #000000;
  border: 1px solid #ff00ff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.header-nav .track-button:hover {
  background: rgba(255, 0, 255, 0.1);
  border-color: #ff00ff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-track-button-header {
    display: block;
    background: transparent;
    border: 1px solid rgba(205, 211, 247, 0.3);
    color: #f5f6ff;
    cursor: pointer;
    font-size: 14px;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  
  .mobile-track-button-header:hover {
    background: rgba(205, 211, 247, 0.1);
    border-color: rgba(205, 211, 247, 0.5);
  }
}

@media (min-width: 769px) {
  .mobile-track-button-header {
    display: none;
  }
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Side Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 85%;
  height: 100%;
  background: #1a1f3a;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-side-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(205, 211, 247, 0.2);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-close:hover {
  opacity: 0.8;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: rgba(205, 211, 247, 0.1);
}

.mobile-track-button {
  background: #000000;
  border: 1px solid #ff00ff;
  color: #ffffff;
  margin: 16px 20px;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.mobile-track-button:hover {
  background: rgba(255, 0, 255, 0.1);
}

@media (max-width: 768px) {
  .header-logo {
    font-size: 24px;
  }

  .header-logo .metro-text,
  .header-logo .pcs-text {
    font-size: 24px;
  }

  .header-logo .tagline {
    font-size: 10px;
  }
}

.page {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px 0;
}

.card {
  width: 100%;
  max-width: 660px;
  background: #121a2f;
  border-radius: 18px;
  padding: 28px 32px 34px;
  box-shadow: 0 30px 60px rgba(10, 14, 29, 0.45);
  margin-bottom: 0;
}

.card.carrier-selection-card {
  padding-bottom: 20px;
}

.brand {
  background: #2f2f66;
  border-radius: 10px;
  padding: 18px 24px;
  display: grid;
  gap: 4px;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.brand small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

h1 {
  margin: 18px 0 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subtitle {
  margin: 14px auto 0;
  text-align: center;
  color: #cdd3f7;
  max-width: 420px;
}

.form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.section-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #cdd3f7;
}

.field {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #cdd3f7;
}

input {
  padding: 12px 14px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  background: #f5f6ff;
  color: #1b1f2a;
}

input:focus {
  outline: 2px solid rgba(251, 146, 60, 0.6);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: #f5f6ff;
  border-radius: 999px;
  padding: 0;
  overflow: hidden;
}

.phone-prefix {
  padding: 12px 8px 12px 14px;
  font-size: 15px;
  color: #1b1f2a;
  font-weight: 600;
  user-select: none;
  pointer-events: none;
  background: #f5f6ff;
}

.phone-input-wrapper input {
  flex: 1;
  border-radius: 0;
  padding-left: 4px;
  padding-right: 14px;
  background: transparent;
}

.divider {
  height: 1px;
  background: rgba(205, 211, 247, 0.3);
  margin: 22px 0;
}

.paypal-container {
  min-height: 46px;
}

.paypal-container.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.status {
  margin-top: 16px;
  font-size: 14px;
  color: #f5f6ff;
}

.status.warning {
  color: #facc15;
}

.primary-button {
  margin-top: 10px;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 15px;
  background: #f97316;
  color: #fff;
  cursor: pointer;
}

.primary-button:hover {
  filter: brightness(1.05);
}

.summary {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  color: #cdd3f7;
}

.summary strong {
  color: #fff;
  font-size: 16px;
}

.ghost-button {
  border: 1px solid rgba(205, 211, 247, 0.4);
  background: transparent;
  color: #cdd3f7;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  width: fit-content;
}

.payment-section {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.payment-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.option-card {
  border: 1px solid rgba(205, 211, 247, 0.4);
  background: transparent;
  color: #cdd3f7;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.option-card.active {
  background: #f5f6ff;
  color: #1b1f2a;
  border-color: transparent;
}

.paypal-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.card-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  color: #1b1f2a;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.card-field {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #1b1f2a;
}

.card-field input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e0e5f3;
  font-size: 15px;
  background: #ffffff;
  color: #111827;
}

.hosted-field {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e0e5f3;
  background: #ffffff;
  min-height: 44px;
}

.card-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.receipt-container {
  margin-top: 24px;
  background: linear-gradient(135deg, #1a2332 0%, #121a2f 100%);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-header {
  text-align: center;
  margin-bottom: 40px;
}

.receipt-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.receipt-header h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.receipt-subtitle {
  margin: 0;
  color: #cdd3f7;
  font-size: 14px;
}

.receipt-content {
  display: grid;
  gap: 32px;
}

.receipt-section {
  background: rgba(18, 26, 47, 0.6);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-label {
  color: #cdd3f7;
  font-size: 14px;
  font-weight: 500;
}

.receipt-value {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.receipt-value.amount {
  font-size: 20px;
  color: #10b981;
  font-weight: 700;
}

.receipt-value.transaction-id {
  font-size: 12px;
  color: #cdd3f7;
  font-family: 'Courier New', monospace;
  word-break: break-all;
  max-width: 200px;
}

.receipt-value.order-number {
  font-size: 16px;
  color: #f97316;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.receipt-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-note {
  color: #cdd3f7;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.unpaid-receipt {
  margin-top: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1a2332 0%, #121a2f 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-header-small {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.receipt-icon-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(205, 211, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
  border: 2px solid rgba(205, 211, 247, 0.2);
}

.receipt-header-small h3 {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.receipt-content-small {
  display: grid;
  gap: 16px;
}

.receipt-section-small {
  background: rgba(18, 26, 47, 0.6);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-row-small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-row-small:last-child {
  border-bottom: none;
}

.receipt-label-small {
  color: #cdd3f7;
  font-size: 13px;
  font-weight: 500;
}

.receipt-value-small {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.receipt-value-small.amount-unpaid {
  font-size: 18px;
  color: #f97316;
  font-weight: 700;
}

.receipt-value-small.status-unpaid {
  font-size: 12px;
  color: #facc15;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ghost-button-small {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid rgba(205, 211, 247, 0.4);
  background: transparent;
  color: #cdd3f7;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}

.ghost-button-small:hover {
  background: rgba(205, 211, 247, 0.1);
}

/* Steps Section */
.steps-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}

.steps-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step-item {
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  min-width: 240px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.step-item.active {
  border-color: #f97316;
}

.step-icon-section {
  background: #e5e7eb;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.step-item.active .step-icon-section {
  background: #f3f4f6;
}

.step-icon {
  font-size: 40px;
  filter: grayscale(100%);
}

.step-item.active .step-icon {
  filter: grayscale(0%);
}

.step-text-section {
  background: #fff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: #1b1f2a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-label {
  font-size: 13px;
  color: #1b1f2a;
  line-height: 1.4;
  font-weight: 400;
}

.step-arrow {
  font-size: 28px;
  color: #1b1f2a;
  font-weight: bold;
  margin: 0 8px;
}

/* Informational Section */
.info-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 16px;
  color: #f5f6ff;
}

.info-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.info-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 32px;
  text-align: center;
}

.info-block {
  margin-bottom: 32px;
  background: rgba(18, 26, 47, 0.6);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.info-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.info-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 12px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.info-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #cdd3f7;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.info-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item p {
  margin-bottom: 8px;
}

.faq-item strong {
  color: #fff;
}


/* Footer */
.site-footer {
  background: #1a1f3a;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 100%;
  margin: 0;
}

.footer-column {
  color: #f5f6ff;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.footer-tagline {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #cdd3f7;
  margin-top: 12px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-icon {
  font-size: 18px;
  display: inline-block;
}

.contact-icon.email-icon,
.contact-icon.phone-icon {
  color: #ff00ff;
  filter: hue-rotate(0deg) saturate(1.5);
}

.footer-contact a {
  color: #cdd3f7;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cdd3f7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* Content Pages */
.content-page {
  min-height: calc(100vh - 200px);
  padding: 60px 20px;
  background: #3a3286;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  background: #121a2f;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(10, 14, 29, 0.45);
}

.content-container h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.content-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 32px;
  text-align: center;
}

.content-section {
  margin-bottom: 32px;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.content-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 40px;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(18, 26, 47, 0.6);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(205, 211, 247, 0.1);
  text-align: center;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.contact-link {
  color: #f97316;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: rgba(18, 26, 47, 0.6);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #cdd3f7;
  margin: 0;
}

@media (max-width: 768px) {
  .content-container {
    padding: 24px;
  }

  .content-container h1 {
    font-size: 24px;
  }

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

  /* Steps Section Mobile */
  .steps-section {
    margin: 24px auto;
    padding: 0 12px;
  }

  .steps-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .steps-container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .step-item {
    min-width: 100%;
    width: 100%;
  }

  .step-icon-section {
    min-width: 60px;
    padding: 16px;
  }

  .step-icon {
    font-size: 32px;
  }

  .step-text-section {
    padding: 16px 14px;
  }

  .step-number {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .step-label {
    font-size: 12px;
  }

  .step-arrow {
    display: none;
  }

  /* Info Section Mobile */
  .info-section {
    margin: 40px auto;
    padding: 0 12px;
  }

  .info-main-title {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .info-intro {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .info-block {
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 8px;
  }

  .info-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .info-block p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .info-list {
    margin: 12px 0;
  }

  .info-list li {
    font-size: 14px;
    line-height: 1.7;
    padding: 6px 0;
    padding-left: 20px;
  }

  /* FAQ Mobile */
  .faq-item {
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
  }

  .faq-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .faq-item p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile devices */
  .steps-section {
    margin: 20px auto;
    padding: 0 8px;
  }

  .steps-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .step-icon-section {
    min-width: 50px;
    padding: 12px;
  }

  .step-icon {
    font-size: 28px;
  }

  .step-text-section {
    padding: 12px 10px;
  }

  .step-number {
    font-size: 11px;
  }

  .step-label {
    font-size: 11px;
  }

  .info-section {
    margin: 32px auto;
    padding: 0 8px;
  }

  .info-main-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .info-intro {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .info-block {
    padding: 12px;
    margin-bottom: 20px;
  }

  .info-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .info-block p {
    font-size: 13px;
  }

  .info-list li {
    font-size: 13px;
    padding-left: 18px;
  }

  .faq-item {
    padding: 12px;
    margin-bottom: 12px;
  }

  .faq-item h3 {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 13px;
  }
}

/* Track Order Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: #1a1f3a;
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.modal-header h2 {
  margin: 0;
  color: #f5f6ff;
  font-size: 24px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: #cdd3f7;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(205, 211, 247, 0.1);
  color: #f5f6ff;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }

  .modal-content {
    padding: 20px 16px;
    max-width: 100%;
    margin: 0;
    max-height: calc(100vh - 40px);
    border-radius: 12px;
  }

  .modal-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-close {
    font-size: 28px;
    width: 28px;
    height: 28px;
  }

  /* Receipt container in modal - mobile responsive */
  .modal-content .receipt-container {
    margin-top: 20px;
  }

  .modal-content .receipt-header {
    padding: 16px;
    margin-bottom: 16px;
  }

  .modal-content .receipt-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .modal-content .receipt-header h2 {
    font-size: 18px;
    margin: 8px 0 4px;
  }

  .modal-content .receipt-subtitle {
    font-size: 12px;
  }

  .modal-content .receipt-section {
    padding: 16px;
    border-radius: 8px;
  }

  .modal-content .receipt-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 4px;
  }

  .modal-content .receipt-label {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .modal-content .receipt-value {
    font-size: 14px;
    text-align: left;
    width: 100%;
    word-break: break-word;
  }

  /* Receipt container on success page - mobile responsive */
  .receipt-container {
    padding: 24px 20px;
    margin-top: 16px;
  }

  .receipt-header {
    margin-bottom: 24px;
  }

  .receipt-section {
    padding: 20px 16px;
  }

  .receipt-row {
    padding: 14px 0;
  }

  .receipt-content {
    gap: 24px;
  }

  .modal-content .receipt-value.amount {
    font-size: 18px;
  }

  .modal-content .receipt-value.order-number {
    font-size: 14px;
  }

  .modal-content .receipt-value.transaction-id {
    font-size: 11px;
    max-width: 100%;
  }

  /* Form fields in modal */
  .modal-content .field {
    margin-bottom: 16px;
  }

  .modal-content .field span {
    font-size: 13px;
  }

  .modal-content .field input {
    font-size: 14px;
    padding: 10px 12px;
  }

  .modal-content .field small {
    font-size: 11px;
  }

  .modal-content .primary-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Carrier selection box styles */
.carrier-selection-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  min-height: 400px;
}

.carrier-selection-box h2 {
  margin-bottom: 32px;
  color: #f5f6ff;
  font-size: 24px;
  font-weight: 600;
}

.carrier-image-container {
  cursor: pointer;
  max-width: 100%;
  transition: transform 0.2s;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.carrier-image-container:hover {
  transform: scale(1.02);
}

.carrier-image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .carrier-selection-box {
    padding: 32px 16px;
    min-height: 300px;
  }

  .carrier-selection-box h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

