/* ========================================
   Bali Way Solutions - Global Styles
   ======================================== */

:root {
  --blue-primary: #1e40af;
  --blue-dark: #172554;
  --blue-light: #eff6ff;
  --gold: #FFB627;
  --gold-dark: #e6a020;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --gray-bg: #f3f4f6;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(30, 64, 175, 0.25);
  --radius: 10px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ========================================
   Container & Layout
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--blue-light);
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--blue-primary);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-gold {
  background: var(--gold);
  color: var(--blue-dark);
  box-shadow: var(--shadow-md);
}

.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 0 20px rgba(255, 182, 39, 0.45), var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-whatsapp-hero {
  background: #25d366;
  color: var(--white);
  margin-top: 1rem;
  box-shadow: var(--shadow-md);
}

.btn-whatsapp-hero:hover {
  background: #128c7e;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35), var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-email-hero {
  background: #2d6cdf;
  color: var(--white);
  margin-top: 0.75rem;
  box-shadow: var(--shadow-md);
}

.btn-email-hero:hover {
  background: #1a4db5;
  box-shadow: 0 0 20px rgba(45, 108, 223, 0.35), var(--shadow-lg);
  transform: translateY(-2px);
}

/* ========================================
   Header
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--blue-primary);
}

/* ---------- Desktop Dropdown ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown-chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  position: relative;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--blue-light);
  color: var(--blue-primary);
}

/* ---------- Mobile Dropdown ---------- */
.mobile-dropdown {
  border-bottom: 1px solid var(--gray-bg);
}

.mobile-dropdown-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-dropdown-chevron {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.mobile-dropdown-trigger[aria-expanded="true"] .mobile-dropdown-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  background: var(--gray-bg);
  padding: 0.25rem 0;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu a {
  padding: 0.65rem 1.5rem 0.65rem 2.5rem;
  font-size: 0.9rem;
  border-bottom: none;
}

.mobile-dropdown-menu a:hover {
  background: var(--blue-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  background: var(--gray-bg);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
}

.lang-switcher button {
  background: transparent;
  border: none;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-switcher button.active {
  background: var(--blue-primary);
  color: var(--white);
}

.lang-switcher button:not(.active):not(:disabled):hover {
  color: var(--text-dark);
}

.lang-switcher button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  position: absolute;
  left: 4px;
  transition: var(--transition);
}

.hamburger {
  top: 15px;
}

.hamburger::before,
.hamburger::after {
  content: '';
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-bg);
  padding: 1rem 0;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.25s ease forwards;
}

.mobile-menu a {
  display: block;
  padding: 0.875rem 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-bg);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--blue-primary);
  background: var(--blue-light);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.70;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.50), rgba(23, 37, 84, 0.50));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 900px;
  padding: 2rem 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.92;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-note {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.75rem;
}

/* Service Selector */
.service-selector {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.selector-group {
  flex: 1;
  text-align: left;
}

.selector-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.selector-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  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='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  transition: var(--transition);
}

.selector-group select:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-getstarted {
  height: fit-content;
  padding: 0.85rem 2rem;
  white-space: nowrap;
}

.btn-starthere {
  display: none;
  margin: 0 auto 1rem;
}

/* ========================================
   Visa Requirements Box
   ======================================== */

.visa-requirements-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  max-width: 800px;
  margin: 1.5rem auto 0;
  overflow: hidden;
  text-align: left;
  animation: fadeInUp 0.4s ease forwards;
  border: 2px solid var(--gold);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.requirements-header {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.requirements-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.requirements-tag {
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.requirements-body {
  padding: 1.5rem;
}

.requirements-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-body li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-bg);
}

.requirements-body li:last-child {
  border-bottom: none;
}

.requirements-body li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.requirements-body .req-note {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: var(--blue-light);
  border-left: 4px solid var(--blue-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.requirements-body .req-processing {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--blue-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Pricing in Requirements Box ---------- */

.req-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid #e5e7eb;
}

.req-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  flex: 1;
}

.req-price-block .price-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.req-price-block .price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.2;
}

.req-price-block.express .price-value {
  color: #e67e22;
}

.req-price-divider {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  opacity: 0.7;
}

.req-price-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid #e5e7eb;
}

.req-price-single .price-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.req-price-single .price-value {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.2;
}

/* Mobile */
@media (max-width: 767px) {
  .visa-requirements-box {
    margin: 1rem 0.5rem 0;
    max-width: 100%;
  }
  
  .requirements-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ========================================
   Gold Ticker Bar
   ======================================== */

.ticker-wrapper {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ticker-content {
  display: inline-flex;
  animation: ticker-scroll 150s linear infinite;
  padding: 14px 0;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 16rem;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.ticker-item::after {
  content: '\2726';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  opacity: 0.5;
}

.ticker-item strong {
  font-weight: 700;
  color: var(--blue-dark);
}

.ticker-item .discount {
  background: rgba(255, 255, 255, 0.35);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   Cards
   ======================================== */

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================================
   Accordion
   ======================================== */

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.accordion-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   Scroll Animations
   ======================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   Footer Payment Methods
   ======================================== */

.footer-payment {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-payment h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.payment-logo-item {
  background: var(--white);
  border-radius: 6px;
  padding: 0.4rem;
  width: 52px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.payment-logo-item:hover {
  transform: scale(1.08);
}

.payment-logo-item svg {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.payment-logo-item.wise-item,
.payment-logo-item.bank-item {
  width: auto;
  padding: 0.4rem 0.75rem;
  gap: 0.4rem;
  background: var(--blue-light);
}

.payment-logo-item.wise-item span,
.payment-logo-item.bank-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue-dark);
  white-space: nowrap;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold);
}

.footer-brand p {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 300px;
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-note {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.5rem;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ========================================
   Floating WhatsApp
   ======================================== */

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ---------- WhatsApp Popup ---------- */

.whatsapp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.whatsapp-popup {
  background: var(--white);
  color: var(--text-dark);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: popup-bounce 0.6s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  margin-bottom: 0.25rem;
}

.whatsapp-popup::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

.whatsapp-popup-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.whatsapp-popup-close:hover {
  background: var(--gray-bg);
  color: var(--text-dark);
}

.whatsapp-popup.hidden {
  display: none;
}

@keyframes popup-bounce {
  0% { opacity: 0; transform: translateY(10px); }
  60% { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Page Hero (Internal Pages)
   ======================================== */

.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.35;
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.50), rgba(23, 37, 84, 0.50));
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Service Cards (Services Page)
   ======================================== */

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-primary);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.3;
  margin: 0;
}

.service-tag {
  background: var(--blue-light);
  color: var(--blue-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-pricing {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.875rem;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid #e5e7eb;
}

.service-price-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}

.service-price-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-price-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.2;
}

.service-price-item.express .service-price-value {
  color: #e67e22;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background: #128c7e;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.35), var(--shadow-md);
  transform: translateY(-2px);
}

/* ========================================
   Service List Accordion (Services Page)
   ======================================== */

.service-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid #e5e7eb;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-list-item:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}

.service-list-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.service-list-header:hover {
  background: var(--blue-light);
}

.service-list-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.service-list-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-primary);
}

.service-list-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-list-arrow {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.service-list-item.active .service-list-arrow {
  transform: rotate(180deg);
}

.service-list-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.service-list-item.active .service-list-body {
  max-height: 800px;
}

.service-list-content {
  padding: 0 1.5rem 1.5rem;
}

.service-list-content > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-list-details {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

.pricing-col {
  background: var(--gray-bg);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e5e7eb;
  height: fit-content;
}

.detail-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.detail-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-col li {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--gray-bg);
}

.detail-col li:last-child {
  border-bottom: none;
}

.detail-col li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.35rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.detail-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.detail-price-row span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.detail-price-row strong {
  font-size: 1.15rem;
  color: var(--blue-primary);
  font-weight: 700;
}

.detail-price-row.express strong {
  color: #e67e22;
}

/* Compact pricing variant */
.detail-price-row.compact {
  padding: 0.25rem 0;
}

.detail-price-row.compact span {
  font-size: 0.8rem;
}

.detail-price-row.compact strong {
  font-size: 0.95rem;
}

/* ---------- Extendable Note (Services Page) ---------- */

.extendable-note {
  background: #fff8e1 !important;
  border-left: 4px solid var(--gold) !important;
  color: var(--blue-dark) !important;
  font-size: 0.9rem;
  line-height: 1.6;
}

.extendable-note strong {
  color: var(--blue-primary);
  font-weight: 700;
}

/* ========================================
   Responsive (Tablet)
   ======================================== */

@media (max-width: 991px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
}

/* ========================================
   Driver License Page Styles
   ======================================== */

.driver-hero .page-hero-bg {
  opacity: 0.18;
}

.requirements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.req-card {
  background: var(--white);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
  flex: 1 1 280px;
  max-width: 320px;
}

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

.req-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.req-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 0.35rem;
}

.req-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-table-wrapper {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-table thead {
  background: var(--blue-primary);
  color: var(--white);
}

.pricing-table th {
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--gray-bg);
  vertical-align: middle;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td strong {
  display: block;
  font-size: 1.05rem;
  color: var(--blue-primary);
  margin-bottom: 0.25rem;
}

.license-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.35rem;
}

.license-tag.bundle {
  background: var(--blue-primary);
  color: var(--white);
}

.price-cell {
  text-align: right;
  white-space: nowrap;
}

.price-amount {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-primary);
}

.bundle-row {
  background: var(--blue-light);
}

.bundle-row .price-amount {
  color: var(--blue-dark);
}

.pricing-addons {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-addons h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.addon-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.addon-item {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.addon-name {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.addon-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-primary);
}

.cta-box {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-box > p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.cta-note {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ========================================
   Track Application Page Styles
   ======================================== */

.track-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  border: 1.5px solid #e5e7eb;
}

.track-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-primary);
  text-align: center;
  margin-bottom: 0.75rem;
}

.track-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.track-form {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-track {
  width: 100%;
  padding: 0.95rem;
  font-size: 1.05rem;
}

.track-result {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-bg);
}

.status-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.track-result h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 1.5rem;
}

.status-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 28px;
  width: 2px;
  height: calc(100% - 4px);
  background: var(--gray-bg);
}

.timeline-item.completed::before {
  background: var(--blue-primary);
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: 2px solid #e5e7eb;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.timeline-item.completed .timeline-dot {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
}

.timeline-item.completed .timeline-dot::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.timeline-item.active .timeline-dot {
  background: var(--white);
  border-color: var(--gold);
  border-width: 3px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.75rem;
}

.timeline-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue-primary);
}

.track-actions {
  text-align: center;
}

.track-help {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-bg);
  text-align: center;
}

.track-help p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.track-help a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Status Display Colors ---------- */

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

.btn-loader {
  font-size: 0.95rem;
}

.status-display {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.status-display .status-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.status-display h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.status-display > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Approved */
.status-display.approved {
  background: #ecfdf5;
  border: 2px solid #10b981;
}

.status-display.approved .status-icon {
  color: #10b981;
}

.status-display.approved h3 {
  color: #047857;
}

/* Waiting */
.status-display.waiting {
  background: #fffbeb;
  border: 2px solid var(--gold);
}

.status-display.waiting .status-icon {
  color: var(--gold);
}

.status-display.waiting h3 {
  color: #92400e;
}

/* Rejected */
.status-display.rejected {
  background: #fef2f2;
  border: 2px solid #ef4444;
}

.status-display.rejected .status-icon {
  color: #ef4444;
}

.status-display.rejected h3 {
  color: #b91c1c;
}

/* Not Found */
.status-display.notfound {
  background: var(--blue-light);
  border: 2px solid var(--blue-primary);
}

.status-display.notfound .status-icon {
  color: var(--blue-primary);
}

.status-display.notfound h3 {
  color: var(--blue-primary);
}

.status-details {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: left;
  max-width: 450px;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-bg);
}

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

.detail-row span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.detail-row strong {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.status-actions {
  margin-top: 1rem;
}

/* ========================================
   Responsive (Mobile)
   ======================================== */

@media (max-width: 767px) {
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .service-selector {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }
  
  .service-selector.active {
    display: flex;
  }
  
  .selector-group {
    width: 100%;
  }
  
  .btn-getstarted {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .btn-starthere {
    display: inline-flex;
  }
  
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .section-title {
    font-size: 1.85rem;
    margin-bottom: 2rem;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
  
  .page-hero-subtitle {
    font-size: 1rem;
  }
  
  .service-list-header {
    padding: 1rem 1.25rem;
  }
  
  .service-list-name {
    font-size: 0.95rem;
  }
  
  .service-list-meta {
    font-size: 0.75rem;
  }
  
  .service-list-content {
    padding: 0 1.25rem 1.25rem;
  }
  
  .service-list-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pricing-col {
    padding: 0.875rem 1rem;
  }
  
.system-status {
  background: #f0fdf4;
  border: 1.5px solid #10b981;
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #065f46;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.system-status.offline {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: #10b981;
}

.form-row {
    grid-template-columns: 1fr;
  }
  
  .track-card {
    padding: 1.5rem;
  }
  
  .status-display {
    padding: 1.5rem 1rem;
  }
  
  .status-display .status-icon {
    font-size: 2.5rem;
  }
  
  .status-display h3 {
    font-size: 1.15rem;
  }
  
  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
  
  .price-amount {
    font-size: 1.15rem;
  }
  
  .cta-box {
    padding: 2rem 1.25rem;
  }
  
  .cta-box h2 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ticker-item {
    font-size: 0.85rem;
    padding: 0 1.5rem;
  }
  
  .payment-logos {
    gap: 0.75rem;
  }
  
  .payment-logo-item {
    width: 48px;
    height: 32px;
  }
  
  .payment-logo-item.wise-item,
  .payment-logo-item.bank-item {
    padding: 0.3rem 0.5rem;
  }
  
  .payment-logo-item.wise-item span,
  .payment-logo-item.bank-item span {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .lang-switcher {
    display: none;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table td strong {
    font-size: 0.95rem;
  }
  
  .addon-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0.875rem 1rem;
  }
}
