:root {
  --primary: #00539B;
  --primary-dark: #00427A;
  --primary-light: #2674B8;
  --primary-50: #E6F0FA;
  --dark: #1f2937;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --error: #ef4444;
  --success: #22c55e;
  --whatsapp: #25d366;
  --accent: #FA8109;
  --accent-dark: #E07000;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,83,155,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: rgba(0,83,155,0.98);
}

/* ===== NAVIGATION ===== */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 800;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: -2px;
  letter-spacing: 0.3px;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 52px;
  width: auto;
  display: block;
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.5);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-link:hover { color: rgba(255,255,255,0.85); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== RATE BANNER BOTTOM ===== */
.rate-banner-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fa8109, #e67300);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(250, 129, 9, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rate-banner-bottom strong {
  font-weight: 800;
  font-size: 16px;
}

.rate-banner-date {
  font-size: 11px;
  opacity: 0.85;
  white-space: nowrap;
}

body {
  padding-bottom: 42px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(250, 129, 9, 0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 129, 9, 0.4);
}

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

.btn-primary.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(250, 129, 9, 0.3);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 129, 9, 0.4);
}

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

/* ===== HAMBURGER ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
  position: relative;
  z-index: 1001;
}

.hamburger:hover { background: var(--light-gray); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span + span {
  margin-top: 5px;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 80vw;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 80px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.mobile-menu .nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: var(--dark);
}

.mobile-menu .nav-link:hover {
  background: rgba(0,83,155,0.08);
  color: var(--primary);
}

.mobile-menu .nav-link::after { display: none; }

.mobile-menu .btn-primary {
  margin-top: 16px;
  justify-content: center;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero-section {
  padding: 80px 20px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 0.35;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(0,83,155,0.15) 0%,
    rgba(0,83,155,0.10) 50%,
    rgba(0,83,155,0.05) 100%);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-slide {
    background-position: center 20%;
  }
  .hero-section::after {
    background: linear-gradient(0deg,
      rgba(0,83,155,0.15) 0%,
      rgba(0,83,155,0.08) 100%);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Hero text white on dark bg */
.hero-text h1 {
  color: #fff;
}

.hero-text p {
  color: rgba(255,255,255,0.75);
}

.hero-text .social-proof-box {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.15);
}

.hero-text .social-proof-box .text-gray-900 {
  color: #fff;
}

.hero-text .social-proof-box .text-gray-500 {
  color: rgba(255,255,255,0.6);
}

/* ---- Calendar Cards ---- */
.social-calendar-row {
  gap: 12px !important;
}

.social-card {
  width: 168px;
  min-height: 124px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.social-card:hover {
  transform: translateY(-2px);
}

/* staple / binding hole */
.social-card-staple {
  position: absolute;
  top: 6px;
  left: 50%;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
  z-index: 1;
}

/* body */
.social-card-body {
  flex: 1;
  padding: 22px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.social-card-number {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.social-card-stars {
  display: flex;
  gap: 3px;
}

/* footer */
.social-card-footer {
  padding: 8px 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.social-card-footer i {
  font-size: 10px;
}

@media (max-width: 380px) {
  .social-card {
    width: 140px;
    min-height: 100px;
  }
  .social-card-number {
    font-size: 24px;
  }
}

.hero-text .text-gray-500 {
  color: rgba(255,255,255,0.65);
}

.hero-text .text-gray-700 {
  color: rgba(255,255,255,0.9);
}

/* ===== CALCULATOR CARD ===== */
.calc-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.04);
}

.calc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calc-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-50);
  border: 1px solid rgba(0, 83, 155, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
}

.rate-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.calc-field {
  margin-bottom: 16px;
}

.calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-input-group {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--white);
}

.calc-input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 83, 155, 0.1);
}

.calc-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  background: var(--light-gray);
  height: 48px;
  border-right: 2px solid #e5e7eb;
  user-select: none;
}

.calc-flag .flag-emoji {
  font-size: 20px;
  line-height: 1;
}

.calc-input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 14px;
  height: 48px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  background: transparent;
  min-width: 0;
}

.calc-input-group input:focus {
  outline: none;
}

.calc-input-group input[readonly] {
  background: var(--primary-50);
  color: var(--primary-dark);
  cursor: default;
}

.calc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  position: relative;
}

.calc-divider::before {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.calc-divider .rate-display {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  margin: 0 12px;
  transition: background 0.3s;
}

.calc-divider .rate-display.updated {
  background: var(--primary-50);
  color: var(--primary-dark);
}

.calc-divider .rate-value {
  color: var(--primary);
  font-weight: 800;
}

.calc-whatsapp {
  margin-top: 20px;
}

/* ===== COVERAGE SECTION ===== */
.coverage-section {
  padding: 40px 20px 80px;
  background: var(--white);
}

.method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
}

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

.method-card .method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: 12px;
  font-size: 20px;
  color: var(--primary);
  transition: all var(--transition);
}

.method-card .method-icon .method-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.method-card:hover .method-icon {
  background: var(--primary);
  color: white;
}



.method-card .method-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

/* ===== BANK CAROUSEL ===== */
.banks-outer {
  user-select: none;
}

.banks-viewport {
  overflow: hidden;
  padding: 14px 0;
}

.banks-track {
  display: flex;
  align-items: center;
  gap: 16px;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
}

.banks-track.dragging {
  cursor: grabbing;
}

.bank-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  min-width: 80px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.25s ease,
              background 0.25s ease,
              box-shadow 0.25s ease;
}

.bank-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.bank-card .bank-logo {
  width: 100%;
  max-width: 64px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.bank-card .bank-logo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  border-radius: 8px;
  font-size: 18px;
  color: var(--primary);
  min-width: 64px;
}

.bank-card .bank-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

/* ===== ORDER FORM ===== */
.order-section {
  padding: 80px 20px 40px;
  background: var(--white);
}

.order-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .order-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Order Wizard Steps ---- */
.order-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0 4px;
}

.order-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.order-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.order-step-indicator.active .order-step-num {
  background: var(--primary);
  color: #fff;
}

.order-step-indicator.completed .order-step-num {
  background: #16a34a;
  color: #fff;
}

.order-step-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.3s;
}

.order-step-indicator.active .order-step-label {
  color: var(--primary);
}

.order-step-indicator.completed .order-step-label {
  color: #16a34a;
}

.order-step-line {
  height: 2px;
  flex: 1;
  background: #e5e7eb;
  min-width: 20px;
  transition: background 0.3s;
}

.order-step-line.completed {
  background: #16a34a;
}

.order-step-content {
  display: none;
}

.order-step-content.active {
  display: block;
}

.order-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: #f9fafb;
}

@media (max-width: 640px) {
  .order-step-label {
    display: none;
  }
  .order-step-indicator {
    flex: 0 1 auto;
    justify-content: center;
  }
}

.order-fieldset {
  padding: 20px;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
}

.order-fieldset-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 4px;
}

.order-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}

.order-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,83,155,0.12);
}

.order-input.error {
  border-color: #dc2626;
}

.order-input.success {
  border-color: #16a34a;
}

.phone-split-wrapper {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.phone-split-wrapper .phone-op {
  width: auto;
  min-width: 80px;
  flex-shrink: 0;
}

.phone-split-wrapper .phone-digits {
  flex: 1;
  min-width: 0;
}

.order-input-icon {
  position: relative;
}

.order-input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  z-index: 1;
}

.order-input--with-prefix {
  padding-left: 36px;
}

.order-amount-section {
  margin-bottom: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.order-amount-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.order-amount-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.order-amount-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.order-amount-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.order-amount-card--send {
  order: 1;
}

.order-amount-card--receive {
  order: 3;
}

.order-amount-arrow-circle i {
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .order-amount-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .order-amount-grid > * {
    display: flex;
    flex-direction: column;
  }

  .order-amount-grid > .order-amount-arrow {
    justify-content: center;
  }

  .order-amount-arrow-circle i {
    transform: rotate(0deg);
  }

  .order-amount-card--send,
  .order-amount-card--receive {
    order: 0;
  }

  .order-amount-arrow {
    order: 0;
  }
}

.order-amount-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.order-amount-card {
  flex: 1;
}

.order-amount-card {
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.order-amount-card:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,83,155,0.1);
}

.order-amount-card--send:focus-within {
  border-color: var(--primary);
}

.order-amount-card--receive {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.order-amount-card-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.order-amount-rate {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  padding: 10px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.btn-submit-order {
  width: 100%;
  padding: 14px 28px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.order-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 12px;
  color: #166534;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}

.order-success i {
  font-size: 20px;
  color: #16a34a;
}

.order-success.show {
  display: flex;
}

.ord-method-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.ord-method-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
  color: #6b7280;
}

.ord-method-option.active {
  border-color: var(--primary);
  background: #eef4ff;
  color: var(--primary);
}

.nac-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.nac-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
  color: #6b7280;
}

.nac-option.active {
  border-color: var(--primary);
  background: #eef4ff;
  color: var(--primary);
}

select.order-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

select.order-input option {
  color: var(--dark);
}

.error-message {
  display: block;
  font-size: 12px;
  color: #dc2626;
  margin-top: 2px;
  min-height: 16px;
}

.testimonials-viewport {
  overflow: hidden;
  user-select: none;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 320px;
  max-width: 320px;
  padding: 20px 18px 16px;
  background: #e8f4fd;
  border-radius: 18px 18px 18px 4px;
  position: relative;
}

.testimonial-card:nth-child(even) {
  background: #f0faf0;
  border-radius: 18px 18px 4px 18px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 8px;
}

.testimonial-bubble {
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
}

.testimonial-location {
  font-size: 12px;
  color: var(--gray);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 20px;
  background: var(--white);
}

.contact-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-info-panel {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 32px 28px;
  color: white;
}

.contact-info-panel h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-panel p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.5;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-item .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item .ci-text {
  font-size: 14px;
  font-weight: 500;
}

.contact-item .ci-label {
  font-size: 12px;
  opacity: 0.7;
  display: block;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* Form Styles */
.form-panel {
  padding: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--white);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 83, 155, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.success,
.form-group textarea.success {
  border-color: var(--success);
}

.error-message {
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  min-height: 18px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(250, 129, 9, 0.3);
  font-family: inherit;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 129, 9, 0.4);
}

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

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success-msg {
  display: none;
  padding: 16px;
  background: var(--primary-50);
  border: 1px solid rgba(0, 83, 155, 0.2);
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.form-success-msg.show {
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 20px 28px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Avion.webp') center / cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand .logo-sub {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(250, 129, 9, 0.4);
  transition: all var(--transition);
  animation: float-wa 2s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(250, 129, 9, 0.5);
}

@keyframes float-wa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

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

.counter-number {
  font-variant-numeric: tabular-nums;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .hamburger { display: none; }
  .overlay { display: none; }

  .nav-links {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-info-panel {
    padding: 40px 36px;
  }

  .form-panel {
    padding: 40px 36px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 100px 20px 80px;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
  }

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

  .contact-info-panel {
    padding: 48px 40px;
  }

  .form-panel {
    padding: 48px 40px;
  }
}

@media (min-width: 1280px) {
  .testimonial-card {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
  }
}

/* ===== SPLASH SCREEN ===== */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: splashFadeIn 0.3s ease;
}

.splash-overlay.splash-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.splash-container {
  position: relative;
  max-width: 600px;
  width: 92%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: splashPop 0.4s ease;
}

.splash-image {
  display: block;
  width: 100%;
  height: auto;
}

.splash-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.splash-close:hover {
  background: rgba(0,0,0,0.55);
}

.splash-timer {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(2px);
}

@keyframes splashFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes splashPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.order-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .order-split {
    flex-direction: row;
  }
  .order-card {
    flex: 1;
    min-width: 0;
  }
  .order-split-image {
    flex: 1;
    min-width: 0;
    align-self: flex-start;
    position: sticky;
    top: 100px;
  }
}

.order-split-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}
