/* Prevent line break in Affiliate Programme button on desktop */
@media (min-width: 769px) {
  .header-right .header-cta.header-desktop-btn {
    white-space: nowrap;
  }
}
/* Ensure Affiliate Programme button is wide enough for full text */
@media (min-width: 769px) {
  .header-right .header-cta.header-desktop-btn {
    min-width: 180px;
    text-align: center;
  }
  .header-right .header-cta.header-desktop-btn.header-cart-btn {
    min-width: unset;
  }
}
/* Fix: Prevent header-center from pushing header-right out of view */
@media (min-width: 769px) {
  .header-center {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 60%;
    overflow: visible;
  }
  .header-right {
    flex: 0 0 auto;
  }
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  overflow-x: hidden;
  overflow-x: clip;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page Loader */
body.loading {
  overflow: hidden;
}

body.loading > *:not(#page-loader) {
  opacity: 0;
  visibility: hidden;
}

body > *:not(#page-loader) {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6a00 0%, #ff8534 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.5rem;
}

.loader-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: 0s;
  border-top-color: rgba(255, 255, 255, 0.9);
}

.spinner-ring:nth-child(2) {
  animation-delay: 0.2s;
  border-top-color: rgba(255, 255, 255, 0.7);
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
}

.spinner-ring:nth-child(3) {
  animation-delay: 0.4s;
  border-top-color: rgba(255, 255, 255, 0.5);
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-text {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: fadeInOut 1.5s ease-in-out infinite;
  text-align: center;
  width: 100%;
  margin: 0;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Design System Variables */
:root {
  /* Colors - Maintaining Orange Theme */
  --color-primary: #ff6a00;
  --color-primary-dark: #e65c00;
  --color-primary-light: #ffb366;
  --color-secondary: #64748b;
  --color-accent: #f59e0b;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #1e1e1e;
  --color-black: #000000;

  /* Additional Colors */
  --primary-orange: #ff6a00;
  --primary-orange-hover: #e65c00;
  --light-orange-bg: #fff3e8;
  --text-dark: #1e1e1e;

  /* Glassmorphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Spacing Scale */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */
  --spacing-3xl: 4rem; /* 64px */
  --spacing-4xl: 5rem; /* 80px */
  --spacing-5xl: 6rem; /* 96px */
  --spacing-6xl: 8rem; /* 128px */

  /* Border Radius */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem; /* 8px */
  --radius-lg: 0.75rem; /* 12px */
  --radius-xl: 1rem; /* 16px */
  --radius-2xl: 1.5rem; /* 24px */
  --radius-full: 9999px; /* Fully rounded */

  /* Shadows */
  --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-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Typography Scale - Enhanced */
  --font-family-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  --font-family-secondary: "Poppins", sans-serif;
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */
  --font-size-6xl: 3.75rem; /* 60px */
  --font-size-7xl: 4.5rem; /* 72px */

  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;

  /* Layout */
  --max-width-sm: 640px;
  --max-width-md: 768px;
  --max-width-lg: 1024px;
  --max-width-xl: 1200px;
  --max-width-2xl: 1536px;

  /* Animations */
  --animation-bounce: bounce 1s infinite;
  --animation-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  --animation-spin: spin 1s linear infinite;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --color-white: #1e1e1e;
  --color-gray-50: #2a2a2a;
  --color-gray-100: #3a3a3a;
  --color-gray-200: #4a4a4a;
  --color-gray-300: #5a5a5a;
  --color-gray-400: #6a6a6a;
  --color-gray-500: #7a7a7a;
  --color-gray-600: #8a8a8a;
  --color-gray-700: #9a9a9a;
  --color-gray-800: #aaaaaa;
  --color-gray-900: #ffffff;
  --color-black: #ffffff;
  --text-dark: #ffffff;
  --light-orange-bg: #2a1a0a;
  --glass-bg: rgba(30, 30, 30, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .app-content .countries span {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 107, 0, 0.5);
}

[data-theme="dark"] .app-content .countries .more-countries {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: white !important;
  border: 1px solid var(--color-primary);
}

/* Dark Mode Support for Trust Section */
[data-theme="dark"] .stat-item {
  background: linear-gradient(
    135deg,
    var(--color-gray-100) 0%,
    var(--color-gray-50) 100%
  );
  border-color: var(--color-gray-300);
}

/* Checkout: unit price prominence for day-adjustable plans */
.plan-unit-price {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--color-gray-700);
}
.plan-unit-price strong {
  color: var(--primary-orange);
  font-weight: var(--font-weight-bold);
}

[data-theme="dark"] .stat-number {
  color: var(--color-primary-light);
}

[data-theme="dark"] .stat-label {
  color: var(--color-gray-400);
}

[data-theme="dark"] .badge {
  background: linear-gradient(
    135deg,
    var(--color-gray-100) 0%,
    var(--color-gray-50) 100%
  );
  border-color: var(--color-gray-300);
}

[data-theme="dark"] .badge-title {
  color: var(--color-white);
}

[data-theme="dark"] .badge-description {
  color: var(--color-gray-400);
}

/* Keyframe Animations */
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Component Classes */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn:focus {
  outline: none;
  box-shadow:
    var(--shadow-md),
    0 0 0 3px rgba(0, 123, 255, 0.25);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn-secondary:hover:not(:disabled) {
  background-color: var(--color-gray-700);
  border-color: var(--color-gray-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-gray-700);
  border-color: transparent;
  box-shadow: none;
}

.btn-ghost:hover:not(:disabled) {
  background-color: var(--color-gray-100);
  color: var(--color-gray-900);
}

/* Cards */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid var(--color-gray-200);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 25px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-header {
  padding: var(--spacing-2xl);
  border-bottom: 1px solid var(--color-gray-200);
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
}

.card-body {
  padding: var(--spacing-2xl);
}

.card-footer {
  padding: var(--spacing-2xl);
  border-top: 1px solid var(--color-gray-200);
  background-color: var(--color-gray-50);
}

/* Section Container */
.section {
  padding: var(--spacing-4xl) 0;
}

.section-container {
  max-width: var(--max-width-xl);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.font-light {
  font-weight: var(--font-weight-light);
}
.font-normal {
  font-weight: var(--font-weight-normal);
}
.font-medium {
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}

.text-primary {
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary);
}
.text-success {
  color: var(--color-success);
}
.text-warning {
  color: var(--color-warning);
}
.text-danger {
  color: var(--color-danger);
}
.text-muted {
  color: var(--color-gray-600);
}

.bg-primary {
  background-color: var(--color-primary);
}
.bg-secondary {
  background-color: var(--color-secondary);
}
.bg-light {
  background-color: var(--color-gray-100);
}
.bg-white {
  background-color: var(--color-white);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}
.shadow-md {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}
.rounded-md {
  border-radius: var(--radius-md);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.rounded-full {
  border-radius: var(--radius-full);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: var(--max-width-2xl);
  margin: 0 auto;
}

.header-left {
  flex: 0 0 auto;
}

.logo {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  display: block;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Search Box */
.header-mobile-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gray-100);
  border-radius: 20px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-gray-300);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-search-input {
  flex: 1;
  width: 120px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  font-family: inherit;
  color: var(--color-gray-900);
}

.mobile-search-input::placeholder {
  color: var(--color-gray-500);
}

.mobile-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: all 0.2s ease;
}

.mobile-search-btn:hover {
  color: var(--color-primary-dark);
  transform: scale(1.1);
}

.mobile-search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}

.mobile-result-item {
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 0.85rem;
}

.mobile-result-item:hover {
  background: var(--color-primary);
  color: white;
}

.mobile-result-item:last-child {
  border-bottom: none;
}


/* Header desktop buttons: visible on desktop, hidden on mobile */
.header-desktop-btn {
  display: inline-flex;
  max-width: 150px;
  object-fit: contain;
}

/* Hide nav-mobile-only by default (desktop) */
.nav-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .header-desktop-btn {
    display: none !important;
  }
  .nav-mobile-only {
    display: block !important;
  }
}

.menu-checkbox {
  display: none;
}

/* Header Search Styles */
.header-search-wrapper {
  position: relative;
  margin-left: 2rem;
  margin-right: 2rem;
}

.header-search-icon {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.3);
}

.header-search-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.5);
}

.header-top-mobile-cart {
  display: none;
}

.header-search-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2147483647 !important;
  opacity: 0;
  transition: opacity 0.3s ease;
  isolation: isolate;
  will-change: transform;
}

.header-search-popup.active {
  display: block;
  opacity: 1;
  z-index: 2147483647 !important;
}

.header-search-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: visible;
}

.header-search-field {
  position: relative;
}

.header-search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid var(--color-gray-300);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.header-search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.header-search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-gray-200);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-gray-700);
}

.header-search-close:hover {
  background: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

.header-search-results {
  display: block;
  margin-top: 0.5rem;
  max-height: 320px;
  overflow-y: auto;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.header-search-results:empty {
  display: none;
  border: 0;
  box-shadow: none;
}

.header-search-results .search-section {
  padding: 8px 0;
  border-bottom: 1px solid #eceff4;
}

.header-search-results .search-section:last-child {
  border-bottom: none;
}

.header-search-results .search-section h4 {
  padding: 8px 14px 6px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.header-search-results .search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: #1f2937;
  border-radius: 8px;
  margin: 2px 8px;
}

.header-search-results .search-result-item:hover {
  background: rgba(255, 106, 0, 0.1);
}

.header-search-results .result-name {
  color: #111827;
  font-weight: 600;
}

.header-search-results .result-region {
  color: #4b5563;
  background: #f3f4f6;
}

.header-search-results .no-results,
.header-search-results .error-message {
  padding: 14px;
  margin: 6px;
  border-radius: 8px;
}

@media (min-width: 769px) {
  .header-search-field .header-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 1200;
  }
}

.header-result-item {
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  background: var(--color-gray-50);
}

.header-result-item:hover {
  background: var(--color-primary);
  color: white;
  transform: translateX(5px);
}

.header-result-country {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.header-result-plans {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Navigation Styles */
.nav {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  overflow-y: auto;
  z-index: 2147483647 !important;
  max-height: calc(100vh - 75px);
  will-change: transform;
  isolation: isolate;
}

.nav.nav-open {
  position: fixed !important;
  z-index: 2147483647 !important;
}

@supports (height: 100dvh) {
  .nav {
    max-height: calc(100dvh - 75px);
  }
}

.nav.nav-open {
  display: flex;
}

.nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  width: 100%;
}

.nav li {
  border-bottom: none;
}

.nav a,
.nav-link {
  text-decoration: none;
  color: var(--color-gray-700);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.05) 0%,
    rgba(255, 106, 0, 0.02) 100%
  );
  border-radius: 8px;
  border: 1px solid rgba(255, 106, 0, 0.1);
}

.nav-link.active {
  color: var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.15) 0%,
    rgba(255, 106, 0, 0.1) 100%
  );
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
}

.nav-link.active::before {
  width: 80%;
}

.nav a::before,
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
}

.nav a:hover,
.nav-link:hover {
  color: var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.15) 0%,
    rgba(255, 106, 0, 0.1) 100%
  );
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
}

.nav a:hover::before,
.nav-link:hover::before {
  width: 80%;
}

/* Dropdown Chevron Indicator */
.dropdown-chevron {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  opacity: 0.7;
}

.nav-item-with-mega:hover .dropdown-chevron {
  transform: translateY(2px);
  opacity: 1;
}

/* Mega Menu Styles */
.nav-item-with-mega {
  position: relative;
}

.nav-item-with-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  display: none;
}

.nav-item-with-mega:hover::after {
  display: block;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-md);
  margin-top: 0;
  min-width: 900px;
  max-width: min(1180px, calc(100vw - 32px));
  min-height: 350px;
  width: min(1180px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  border: 1px solid var(--color-gray-200);
}

.mega-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 107, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 248, 245, 0.95)
  );
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.nav-item-with-mega:hover .mega-menu-close,
.mega-menu:hover .mega-menu-close {
  opacity: 1;
  pointer-events: auto;
}

.mega-menu-close:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: white;
  transform: scale(1.08);
  box-shadow:
    0 4px 16px rgba(255, 107, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--color-primary-dark);
}

.mega-menu-close:active {
  transform: scale(0.96);
  box-shadow:
    0 2px 8px rgba(255, 107, 0, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mega-menu-close svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.mega-menu-close:hover svg {
  transform: rotate(90deg);
}

.mega-menu-close-button {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 20px;
  border: 1.5px solid rgba(255, 107, 0, 0.3);
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 248, 245, 0.95)
  );
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.nav-item-with-mega:hover .mega-menu-close-button,
.mega-menu:hover .mega-menu-close-button {
  opacity: 1;
  pointer-events: auto;
}

.mega-menu-close-button:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: white;
  transform: translateY(-2px);
  box-shadow:
    0 4px 16px rgba(255, 107, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--color-primary-dark);
}

.mega-menu-close-button:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(255, 107, 0, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-item-with-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-force-hide .mega-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mobile-destinations-modal {
  display: none;
}

/* Hide close buttons on medium and large screens */
@media (min-width: 769px) {
  .mega-menu-close,
  .mega-menu-close-button {
    display: none !important;
  }
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-sm) 0;
  margin-top: var(--spacing-sm);
}

.mega-menu-search {
  grid-column: 1 / -1;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid rgba(255, 107, 0, 0.1);
  position: relative;
}

.mega-menu-search-container {
  display: flex;
  align-items: center;
  background: rgba(255, 107, 0, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 107, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.mega-menu-search-container:focus-within {
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(255, 107, 0, 0.15);
}

.mega-menu-search-input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: none;
  outline: none;
  font-size: 0.875rem;
  background: transparent;
  color: var(--color-gray-800);
}

.mega-menu-search-input::placeholder {
  color: var(--color-gray-500);
}

.mega-menu-search-button {
  padding: 0.625rem 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.mega-menu-search-button:hover {
  color: var(--color-primary-dark);
}

.mega-menu-search-results {
  margin-top: 0.75rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  overflow-y: auto;
  display: none;
}

.mega-menu-search-results.show {
  display: block;
}

@media (min-width: 769px) {
  .mega-menu-search-results {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 1200;
  }
}

.mega-menu-result-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-gray-200);
  cursor: pointer;
  transition: background 0.2s ease;
}

.mega-menu-result-item:last-child {
  border-bottom: none;
}

.mega-menu-result-item:hover {
  background: rgba(255, 107, 0, 0.05);
}

.mega-menu-result-country {
  font-weight: 600;
  color: var(--color-gray-800);
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.mega-menu-result-plans {
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.mega-menu-column h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin: 0 0 var(--spacing-xs) 0;
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--color-gray-200);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.region-icon-img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.mega-menu-column a.mega-menu-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: normal;
}

.mega-menu-column .country-name {
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.country-flag-img {
  width: 18px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu-column li {
  border-bottom: none;
}

.mega-menu-column a {
  display: block;
  padding: 0.5rem 0;
  margin: 0;
  color: var(--color-gray-600);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: var(--font-weight-normal);
  transition: all 0.2s ease;
  background: none;
  border: none;
  border-radius: 0;
  white-space: normal;
  line-height: 1.4;
}

.mega-menu-column a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
  background: none;
  box-shadow: none;
  border: none;
}

.mega-menu-column a.view-all {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  margin-top: var(--spacing-xs);
}

.mega-menu-column .region-link {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 8px;
}

.mega-menu-column .region-link:hover {
  transform: none;
  text-decoration: underline;
}

.mega-menu-column a::before {
  display: none;
}

/* Empty spacer column for better left alignment */
.mega-menu-spacer {
  display: none;
}

.mega-menu-spacer h4,
.mega-menu-spacer ul {
  display: none;
}

/* Dark Mode Mega Menu */
[data-theme="dark"] .mega-menu {
  background: var(--color-gray-800);
  border-color: var(--color-gray-600);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .mega-menu-column h4 {
  color: var(--color-white);
  border-color: var(--color-gray-600);
}

[data-theme="dark"] .mega-menu-column a {
  color: var(--color-gray-300);
}

[data-theme="dark"] .mega-menu-column a:hover {
  color: var(--color-primary);
}

[data-theme="dark"] .mega-menu-column a.view-all {
  color: var(--color-primary-light);
}

/* Large Desktop: Ensure proper mega menu sizing */
@media (min-width: 1025px) {
  .mega-menu {
    min-width: 980px;
    max-width: min(95vw, 1180px);
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-md);
  }

  .mega-menu-content {
    padding: var(--spacing-md) var(--spacing-md) 0;
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-gray-700);
  margin: 4px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 1px;
}

.menu-checkbox:checked ~ .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-checkbox:checked ~ .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-checkbox:checked ~ .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.header-cta:hover::before {
  width: 300px;
  height: 300px;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.header-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff6a00 !important;
  color: #ffffff !important;
  border: 1px solid #ff6a00 !important;
  opacity: 1 !important;
}

.header-cart-btn,
.header-cart-btn:link,
.header-cart-btn:visited,
.header-cart-btn:active {
  color: #ffffff !important;
  text-decoration: none;
}

.header-cart-btn:hover {
  background: #e65c00 !important;
  color: #ffffff !important;
  border-color: #e65c00 !important;
}

.header-cart-btn::before {
  background: rgba(255, 255, 255, 0.2) !important;
}

.header-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ffffff;
  color: #ff6a00;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.nav-mobile-only {
  display: none;
}

/* Hero */
.hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: #fff;
  padding: var(--spacing-xl) 0 var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -20px) scale(1.1);
  }
}

.hero .container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: var(--spacing-2xl);
  max-width: 1400px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: none;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: 0;
  opacity: 0.9;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.hero-search {
  margin-top: 0;
  max-width: 700px;
  margin-left: 0;
  margin-right: auto;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 107, 0, 0.2);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-container:focus-within {
  border-color: var(--color-primary);
  box-shadow:
    0 12px 40px rgba(255, 107, 0, 0.2),
    0 0 0 4px rgba(255, 107, 0, 0.1);
  transform: translateY(-2px);
}

.search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1.1rem;
  background: transparent;
  color: var(--color-gray-800);
}

.search-input::placeholder {
  color: var(--color-gray-500);
}

.search-button {
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  border: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.search-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.search-button:hover::before {
  width: 200px;
  height: 200px;
}

.search-button:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.search-results {
  margin-top: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 107, 0, 0.2);
  box-shadow: var(--shadow-lg);
  max-height: 300px;
  overflow-y: auto;
}

.search-results:empty {
  display: none;
}

.search-results .result-item {
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--color-gray-200);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.search-results .result-item:hover {
  background: rgba(255, 107, 0, 0.05);
}

.search-results .result-item:last-child {
  border-bottom: none;
}

.result-country {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.result-plans {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: linear-gradient(145deg, #000, #333);
  border-radius: 30px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  z-index: -1;
}

.cta-button:hover::before {
  width: 400px;
  height: 400px;
}

.cta-button.primary {
  background-color: #fff;
  color: var(--color-primary);
}

.cta-button.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 2px solid #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.cta-button.secondary::before {
  background: rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Phone Mockup Styles */
.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 36px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 12px solid #000;
  margin: 0 auto;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 30px;
  background: #000;
  border-radius: 18px;
  z-index: 3;
}

.phone-mockup::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: #333;
  border-radius: 3px;
  z-index: 3;
}

.phone-screen {
  position: absolute;
  top: 50px;
  left: 12px;
  right: 12px;
  bottom: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.app-interface {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.app-header {
  text-align: center;
  margin-bottom: 6px;
  padding: 4px 0;
  border-bottom: 2px solid rgba(255, 107, 0, 0.2);
}

.app-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 3px;
  width: 100%;
  padding: 0;
}

.install-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.platform-logos {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.platform-badge {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.install-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.08) 0%,
    rgba(255, 106, 0, 0.04) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 106, 0, 0.12);
  max-width: 340px;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 3px rgba(255, 106, 0, 0.05);
}

.install-caption .platform-logos {
  display: flex;
  gap: 6px;
  justify-content: center;
  width: 100%;
}

.install-caption .platform-badge {
  padding: 4px 12px;
  background: white;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.install-caption .platform-badge:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.install-caption .platform-badge:active {
  transform: translateY(0);
}

.caption-text {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.5;
  word-spacing: 1px;
}

.connection-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 0;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 20px;
  margin-top: 0;
  width: 100%;
}

.network-icon {
  font-size: 16px;
}

.network-badge {
  font-size: 11px;
  font-weight: 700;
  color: #4caf50;
  letter-spacing: 0.3px;
}

.signal-bars {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3px;
  margin-bottom: 1px;
  width: 100%;
}

.signal-bars .bar {
  width: 5px;
  background: #4caf50;
  border-radius: 1px;
  animation: signal 1.5s ease-in-out infinite;
  box-shadow: 0 0 4px rgba(76, 175, 80, 0.3);
}

.signal-bars .bar:nth-child(1) {
  height: 7px;
  animation-delay: 0s;
}
.signal-bars .bar:nth-child(2) {
  height: 10px;
  animation-delay: 0.15s;
}
.signal-bars .bar:nth-child(3) {
  height: 13px;
  animation-delay: 0.3s;
}
.signal-bars .bar:nth-child(4) {
  height: 16px;
  animation-delay: 0.45s;
}
.signal-bars .bar:nth-child(5) {
  height: 19px;
  animation-delay: 0.6s;
}

@keyframes signal {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.data-usage {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 0 8px;
}

.usage-bar {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  margin: 0 8px 2px 8px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.usage-fill {
  height: 100%;
  width: 48%;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  border-radius: 5px;
  animation: dataFlow 3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
}

@keyframes dataFlow {
  0%,
  100% {
    width: 40%;
  }
  50% {
    width: 60%;
  }
}

.data-usage span {
  font-size: 11px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.app-content .countries {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin-top: 0;
  flex-wrap: wrap;
}

.app-content .countries span {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #333;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  line-height: 1.1;
}

.app-content .countries .more-countries {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: white !important;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3px;
  border: 1px solid var(--color-primary-dark);
  box-shadow: 0 3px 8px rgba(255, 107, 0, 0.4);
  padding: 4px 8px;
}

.countries {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 12px;
  margin-top: 8px;
}

.countries span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-decoration {
  position: absolute;
  top: 20%;
  right: 10%;
  z-index: 0;
  opacity: 0.8;
}

.violet-plane {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #000, #333);
  border-radius: 30px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: #000;
  border-radius: 15px;
  z-index: 1;
}

.phone-screen {
  position: absolute;
  top: 40px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.app-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #333;
}

.app-header {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.app-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.signal-bars {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}

.signal-bars .bar {
  width: 4px;
  background: #007bff;
  border-radius: 2px;
}

.signal-bars .bar:nth-child(1) {
  height: 8px;
}
.signal-bars .bar:nth-child(2) {
  height: 12px;
}
.signal-bars .bar:nth-child(3) {
  height: 16px;
}
.signal-bars .bar:nth-child(4) {
  height: 20px;
}
.signal-bars .bar:nth-child(5) {
  height: 24px;
}

.data-usage {
  text-align: center;
}

.usage-bar {
  width: 200px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.usage-fill {
  width: 48%;
  height: 100%;
  background: #28a745;
  border-radius: 4px;
}

.countries {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.countries span {
  font-size: 1.2rem;
}

/* Section titles */
.section-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  color: var(--color-gray-900);
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
}

/* Features */
.features {
  padding: var(--spacing-2xl) 0;
  background-color: #fff;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.features-video {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: var(--color-gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-video:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(255, 107, 0, 0.15);
}

.features-video video {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-gray-200);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: height 0.3s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.2);
  border-color: var(--color-primary);
}

.feature-card:hover::before {
  height: 6px;
}

.feature-icon {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-emoji {
  font-size: 48px;
  line-height: 1;
}

.feature-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray-900);
}

.feature-card p {
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.feature-cta {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  z-index: -1;
}

.feature-cta:hover::before {
  width: 200px;
  height: 200px;
}

.feature-cta:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

/* Products */
/* Destinations */
.destinations {
  padding: var(--spacing-2xl) 0;
  background-color: var(--light-orange-bg);
}

.home-currency-converter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
  padding: 0.95rem 1.1rem;
  margin: 0 auto var(--spacing-lg);
}

.home-currency-converter-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-currency-converter-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.home-currency-converter-subtitle {
  font-size: 0.82rem;
  color: var(--color-gray-600);
}

.home-currency-converter-options {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.home-currency-option-btn {
  border: 1px solid rgba(255, 107, 0, 0.25);
  background: #fff;
  color: var(--color-gray-700);
  border-radius: 999px;
  padding: 0.44rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-currency-option-btn:hover {
  border-color: rgba(255, 107, 0, 0.55);
  color: var(--color-primary-dark);
}

.home-currency-option-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.destinations-search {
  max-width: 700px;
  margin: 0 auto var(--spacing-3xl);
}

.destinations-search-container {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 107, 0, 0.2);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.1);
  transition: all 0.3s ease;
}

.destinations-search-container:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.2);
}

.destinations-search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--color-gray-800);
  background: transparent;
}

.destinations-search-input::placeholder {
  color: var(--color-gray-400);
}

.destinations-search-button {
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s ease;
}

.destinations-search-button:hover {
  background: var(--color-primary-dark);
}

.destinations-search-button svg {
  width: 20px;
  height: 20px;
}

.destinations-search-results {
  margin-top: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
  display: none;
}

.destinations-search-results.show {
  display: block;
}

.destinations-result-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
  cursor: pointer;
  transition: background 0.2s ease;
}

.destinations-result-item:last-child {
  border-bottom: none;
}

.destinations-result-item:hover {
  background: rgba(255, 107, 0, 0.05);
}

.destinations-result-country {
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 0.25rem;
}

.destinations-result-plans {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.destination-card {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  max-height: 100px;
  position: relative;
}

.destination-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.destination-card:hover::before {
  left: 100%;
}

.destination-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
  border-color: var(--color-primary);
}

.destination-content {
  display: flex;
  align-items: center;
  padding: var(--spacing-md);
  gap: var(--spacing-md);
  height: 100%;
}

.destination-flag img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.destination-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-xs);
}

.destination-info h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin: 0;
  color: var(--text-dark);
}

.destination-info p {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  margin: 0;
}

.destination-arrow {
  margin-left: auto;
}

.arrow-button {
  background: none;
  border: none;
  padding: var(--spacing-sm);
  cursor: pointer;
  border-radius: 50%;
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-button:hover {
  background-color: var(--color-gray-100);
}

.arrow-button img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* How it works */
.how-it-works {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-orange-bg);
}

.how-it-works .section-title {
  margin-bottom: var(--spacing-lg);
}

.how-it-works-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: center;
}

.how-it-works-image {
  flex: 1;
  display: flex;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.how-it-works-image video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.how-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1;
  width: 100%;
}

.step {
  text-align: left;
  padding: var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.step:hover::before {
  opacity: 1;
}

.step:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 35px rgba(255, 107, 0, 0.2);
  border-left-width: 6px;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-gray-900);
}

.step p {
  color: #666;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  margin: 0;
}

/* Testimonials */
.testimonials {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(0.5px);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 2;
}

.section-subtitle {
  color: var(--color-gray-600);
  font-size: var(--font-size-lg);
  margin-top: var(--spacing-md);
  font-weight: 400;
}

.testimonials-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: calc(100% * 5); /* 5 slides total */
}

.testimonial-slide {
  min-width: calc(100% / 5); /* Show 1 full slide at a time */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  padding: 0 var(--spacing-md);
  box-sizing: border-box;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.15);
  position: relative;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.6s ease;
}

.testimonial-content:hover::before {
  opacity: 1;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.testimonial-content:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
  border-color: var(--color-primary);
}

.testimonial-quote {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.quote-icon {
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: var(--spacing-md);
}

.testimonial-content p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-700);
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.author-details {
  text-align: left;
}

.author-details h4 {
  margin: 0 0 var(--spacing-xs) 0;

  .testimonials .author-avatar {
    display: none;
  }

  .testimonials .testimonial-author {
    display: none;
  }

  .testimonials .author-details p {
    display: none;
  }
  color: var(--color-gray-900);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

.author-details p {
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--color-gray-600);
  font-size: var(--font-size-sm);
}

.author-rating {
  display: flex;
  gap: 2px;
}

.star {
  font-size: var(--font-size-sm);
  color: #e0e0e0;
}

.star.filled {
  color: #ffd700;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.nav-btn {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 0, 0.2);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-gray-600);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.nav-btn:hover::before {
  width: 100px;
  height: 100px;
}

.nav-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
}

.nav-btn:active {
  transform: scale(0.95);
}

.testimonial-dots {
  display: flex;
  gap: var(--spacing-sm);
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 107, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  opacity: 0;
}

.dot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.dot.active::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.dot:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.4);
}

/* Medium Screen Adjustments (Tablets & Small Laptops) */
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu {
    min-width: 90vw;
    max-width: 90vw;
    left: 0;
    transform: none;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
  }

  .mega-menu-content {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0 0;
  }

  .mega-menu-column h4 {
    font-size: 0.875rem;
  }

  .mega-menu-column a {
    font-size: 0.8125rem;
    padding: 0.375rem 0;
  }

  .container {
    max-width: 95%;
    padding: 0 var(--spacing-xl);
    margin: 0 auto;
  }

  .hero .container {
    max-width: 100%;
    padding: 0 var(--spacing-xl);
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }

  .hero-subtitle {
    margin-bottom: var(--spacing-xl);
  }

  .hero-search {
    margin-top: var(--spacing-xl);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Global Mobile Scaling */
  .container {
    padding: 0 var(--spacing-lg);
  }

  /* Header & Navigation */
  .header .container {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 35px;
    max-width: 120px;
  }

  .nav a,
  .nav-link {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }

  /* Section Titles */
  .section-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xl);
  }

  /* Hero Section */
  .hero {
    padding: var(--spacing-2xl) 0;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-lg);
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
  }

  .cta-button {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-sm);
  }

  /* Features Section */
  .features {
    padding: var(--spacing-xl) 0;
  }

  .feature-item {
    padding: var(--spacing-lg);
  }

  .feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .feature-item h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
  }

  .feature-item p {
    font-size: var(--font-size-sm);
  }

  /* Destinations Section */
  .destinations {
    padding: var(--spacing-xl) 0;
  }

  .home-currency-converter {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
  }

  .home-currency-converter-options {
    width: 100%;
  }

  .home-currency-option-btn {
    flex: 1;
    text-align: center;
  }

  .destinations-search {
    max-width: 100%;
    margin-bottom: var(--spacing-xl);
  }

  .destinations-search-input {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .destinations-search-button {
    padding: 0.875rem 1rem;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .destination-card {
    padding: var(--spacing-md);
  }

  .destination-header h3 {
    font-size: var(--font-size-lg);
  }

  .destination-price {
    font-size: var(--font-size-xl);
  }

  .destination-details p {
    font-size: var(--font-size-sm);
  }

  /* How It Works Section */
  .how-it-works {
    padding: var(--spacing-xl) 0;
  }

  .steps-container {
    gap: var(--spacing-xl);
  }

  .step {
    padding: var(--spacing-lg);
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-lg);
  }

  .step h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
  }

  .step p {
    font-size: var(--font-size-sm);
  }

  /* Testimonials Section */
  .testimonials {
    padding: var(--spacing-xl) 0;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .testimonial-content {
    padding: var(--spacing-lg);
  }

  .testimonial-content p {
    font-size: var(--font-size-sm);
  }

  .testimonial-author {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .author-details {
    text-align: center;
  }

  .author-details h4 {
    font-size: var(--font-size-base);
  }

  .author-details p {
    font-size: var(--font-size-xs);
  }

  .testimonial-nav {
    gap: var(--spacing-lg);
  }

  .nav-btn {
    width: 48px;
    height: 48px;
  }

  .testimonials-bg-image {
    opacity: 0.03;
  }

  /* Trust Section */
  .trust {
    padding: var(--spacing-xl) 0;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .stat-number {
    font-size: var(--font-size-3xl);
  }

  .stat-label {
    font-size: var(--font-size-sm);
  }

  .trust-logos {
    gap: var(--spacing-md);
  }

  .trust-logo {
    height: 30px;
  }

  /* FAQ Section */
  .faq {
    padding: var(--spacing-xl) 0;
  }

  .faq-item {
    padding: var(--spacing-md);
  }

  .faq-question {
    font-size: var(--font-size-base);
    padding: var(--spacing-md);
  }

  .faq-answer {
    font-size: var(--font-size-sm);
    padding: var(--spacing-md);
  }

  /* Affiliate Section */
  .affiliate {
    padding: var(--spacing-xl) 0;
  }

  .affiliate-header h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
  }

  .affiliate-header p {
    font-size: var(--font-size-sm);
  }

  .affiliate-content {
    gap: var(--spacing-lg);
  }

  .affiliate-card {
    padding: var(--spacing-lg);
  }

  .affiliate-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
  }

  .affiliate-card p {
    font-size: var(--font-size-sm);
  }

  .affiliate-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  /* Footer */
  .footer {
    padding: var(--spacing-xl) 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-section h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
  }

  .footer-section p,
  .footer-section a {
    font-size: var(--font-size-sm);
  }

  /* Mobile phone mockup adjustments */
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-xl);
  }

  .hero-content {
    order: 2;
  }

  .phone-mockup {
    order: 1;
    width: 250px;
    height: 500px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 4;
  }

  .hero-title {
    order: 1;
  }

  .hero-subtitle {
    order: 2;
  }

  .hero-search {
    order: 3;
    max-width: 100%;
  }

  .hero-buttons {
    order: 5;
  }

  .hero-search .search-container {
    width: 100%;
  }

  .hero-search {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .badge {
    width: 100%;
  }

  .phone-mockup {
    width: 180px;
    height: 360px;
    border-radius: 28px;
    border: 8px solid #000;
  }

  .phone-mockup::before {
    top: 15px;
    width: 120px;
    height: 22px;
    border-radius: 15px;
  }

  .phone-mockup::after {
    bottom: 10px;
    width: 40px;
    height: 4px;
  }

  .phone-screen {
    top: 35px;
    left: 8px;
    right: 8px;
    bottom: 35px;
    border-radius: 18px;
    padding: 3px;
  }

  .app-interface {
    border-radius: 12px;
    padding: 4px;
  }

  .app-header {
    margin-bottom: 4px;
    padding: 3px 0;
  }

  .app-logo {
    height: 20px;
    max-width: 80px;
  }

  .app-content {
    gap: 2px;
  }

  .install-caption {
    padding: 6px 8px;
    gap: 4px;
  }

  .install-caption .platform-badge {
    padding: 2px 6px;
    font-size: 8px;
  }

  .install-text {
    font-size: 8px;
    line-height: 1.2;
  }

  .caption-text {
    font-size: 8px;
    line-height: 1.3;
  }

  .connection-indicators {
    gap: 3px;
    padding: 2px 0;
  }

  .network-icon {
    font-size: 12px;
  }

  .network-badge {
    font-size: 8px;
  }

  .signal-bars {
    width: 25px;
    gap: 2px;
  }

  .signal-bars .bar {
    width: 3px;
  }

  .signal-bars .bar:nth-child(1) {
    height: 5px;
  }
  .signal-bars .bar:nth-child(2) {
    height: 7px;
  }
  .signal-bars .bar:nth-child(3) {
    height: 9px;
  }
  .signal-bars .bar:nth-child(4) {
    height: 11px;
  }
  .signal-bars .bar:nth-child(5) {
    height: 13px;
  }

  .usage-bar {
    height: 5px;
    border-radius: 3px;
    margin-left: 6px;
    margin-right: 6px;
    width: calc(100% - 12px);
  }

  .data-usage span {
    font-size: 8px;
  }

  .app-content .countries {
    gap: 2px;
    flex-wrap: wrap;
  }

  .app-content .countries span {
    font-size: 7px;
    padding: 2px 4px;
    border-radius: 5px;
  }

  .app-content .countries .more-countries {
    font-size: 7px;
    padding: 2px 5px;
  }

  .connection-status,
  .data-usage {
    font-size: 8px;
    padding: 3px 6px;
  }

  .countries-list {
    gap: 2px;
  }

  .country-item {
    padding: 3px 5px;
    font-size: 7px;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .features-video video {
    max-height: 250px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .app-logo {
    height: 24px;
    max-width: 100px;
  }

  .hero-search {
    margin-top: 0;
    max-width: 100%;
  }

  .search-input {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-sm);
  }

  .search-button {
    padding: var(--spacing-md);
  }
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  border-radius: var(--radius-sm);
}

.testimonial-author br {
  display: none;
}

/* Trust Section */
.trust {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.trust-content {
  max-width: var(--max-width-2xl);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
  border-color: var(--color-primary);
}

.stat-icon {
  margin-bottom: var(--spacing-sm);
  display: flex;
  justify-content: center;
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-600);
  line-height: var(--line-height-snug);
  max-width: 200px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.badge {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.badge:hover::before {
  width: 300px;
  height: 300px;
}

.badge:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2);
}

.badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1;
}

.badge-title {
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  font-size: var(--font-size-base);
  line-height: var(--line-height-tight);
}

.badge-description {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
}

.badge-text {
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-700);
}

/* FAQ */
.faq {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-gray-50) 100%
  );
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .accordion {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (min-width: 1200px) {
  .accordion {
    gap: var(--spacing-xl);
  }
}

.accordion details {
  margin-bottom: var(--spacing-lg);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion details:hover {
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
}

.accordion details[open] {
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.2);
}

.accordion summary {
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
  padding: var(--spacing-xl) var(--spacing-2xl);
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  list-style: none;
}

.accordion summary:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-light) 0%,
    var(--color-primary) 100%
  );
  color: var(--color-white);
}

.accordion details[open] summary {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-white);
}

.accordion summary::marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: var(--spacing-xl);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  transition: transform var(--transition-normal);
}

.accordion details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

.accordion p {
  padding: 0 var(--spacing-2xl) var(--spacing-2xl);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Affiliate Section */
.affiliate {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(
    135deg,
    #ff6a00 0%,
    #ee0979 25%,
    #ff6a00 50%,
    #ff8c00 75%,
    #ffa500 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.affiliate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

.affiliate-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.affiliate-gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff8c00, transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.affiliate-gradient-orb.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ffa500, transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
}

.affiliate-gradient-orb.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff6a00, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

.affiliate-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 2;
}

.affiliate-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.affiliate-header .section-title {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-4xl);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.affiliate-header .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.affiliate-content {
  position: relative;
  z-index: 2;
}

.affiliate-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-2xl);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: white;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 255, 255, 0.3);
  background: white;
}

.benefit-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, #ff6a00, #ff8c00);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 106, 0, 0.6);
}

.benefit-icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.benefit-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.benefit-card h3 {
  color: var(--color-gray-900);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: var(--color-gray-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin: 0;
  position: relative;
  z-index: 1;
}

.commission-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6a00, #ff8534);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.affiliate-cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  padding: var(--spacing-3xl) var(--spacing-2xl);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.affiliate-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  filter: blur(40px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.affiliate-cta-text {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-weight-bold);
  color: white;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.affiliate-button {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #ff6a00;
  border: none;
  font-size: var(--font-size-lg);
  padding: 1rem 2.5rem;
  font-weight: var(--font-weight-bold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.affiliate-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 106, 0, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.affiliate-button:hover::before {
  left: 100%;
}

.affiliate-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 106, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.affiliate-button svg {
  transition: transform 0.3s ease;
}

.affiliate-button:hover svg {
  transform: translateX(5px);
}

.affiliate-button.affiliate-login-button {
  background: linear-gradient(135deg, #ff8a00 0%, #ff5a00 100%);
  color: #ffffff;
  box-shadow:
    0 10px 30px rgba(255, 90, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.affiliate-button.affiliate-login-button:hover {
  background: linear-gradient(135deg, #ff9a1f 0%, #ff6a00 100%);
  box-shadow:
    0 15px 40px rgba(255, 90, 0, 0.45),
    0 0 30px rgba(255, 106, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

/* Footer */
.footer {
  background-color: var(--color-gray-900);
  color: #fff;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-brand h4 {
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin: 0;
  margin-bottom: var(--spacing-sm);
}

.footer-logo {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  margin-bottom: var(--spacing-sm);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.contact-info p {
  color: var(--color-gray-400);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-info strong {
  color: #fff;
  font-weight: 700;
}

.contact-info a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info a:hover {
  color: var(--color-primary-light);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.social-media {
  margin-top: var(--spacing-lg);
}

.social-media p {
  color: var(--color-gray-400);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-sm);
}

.social-media strong {
  color: #fff;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  color: var(--color-primary);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.social-links a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-column h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-lg);
}

.footer-column h4 {
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-base);
  color: #fff;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--spacing-xs);
}

.footer-column a {
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
}

/* Tablet and larger screens (768px+) */
@media (min-width: 768px) {
  .header .container {
    padding: 0.75rem 1.25rem;
  }

  .header-left {
    flex: 0 0 auto;
  }

  .header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
  }

  .header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .logo img {
    height: 50px;
    max-width: 150px;
  }

  .nav {
    position: static;
    background-color: transparent;
    box-shadow: none;
    display: flex !important;
    flex-direction: row;
    padding: 0;
    border-top: none;
    overflow: visible;
    max-height: none;
  }

  .nav ul {
    flex-direction: row;
    gap: 0.5rem;
    text-align: center;
    align-items: center;
  }

  .mega-menu-column ul {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .nav li {
    border-bottom: none;
  }

  .nav a,
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav a:hover,
  .nav-link:hover {
    color: var(--color-primary);
    background: linear-gradient(
      135deg,
      rgba(255, 106, 0, 0.15) 0%,
      rgba(255, 106, 0, 0.1) 100%
    );
    border-color: var(--color-primary);
    transform: translateY(-2px);
  }

  .menu-toggle {
    display: none;
  }

/* (Removed duplicate .header-desktop-btn rules for clarity) */

  .header-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: var(--spacing-3xl) 0;
  }

  .hero .container {
    flex-direction: row;
    text-align: left;
    gap: var(--spacing-3xl);
  }

  .hero-content {
    flex: 1;
    max-width: 600px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .phone-mockup {
    width: 320px;
    height: 640px;
  }

  .trust-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .trust-badges {
    gap: var(--spacing-2xl);
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .steps {
    flex-direction: row;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: left;
  }
}

/* Desktop screens (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
    padding: 0 var(--spacing-2xl);
    margin: 0 auto;
  }

  .hero .container,
  .features .container,
  .destinations .container {
    max-width: 1200px;
  }

  .hero-title {
    font-size: var(--font-size-6xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
  }

  .hero-search {
    margin-top: var(--spacing-2xl);
  }

  .section-title {
    font-size: var(--font-size-4xl);
  }

  .trust-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .how-it-works-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .steps {
    flex-direction: row;
    gap: var(--spacing-xl);
  }

  .step {
    flex: 1;
  }
}

/* Small mobile screens (480px and below) */
@media (max-width: 768px) {
  .header-mobile-search {
    display: flex;
  }

  .header-top-mobile-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-primary-dark) 100%
    );
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.3);
    margin-right: 4px;
  }

  .header-top-mobile-cart .header-cart-count {
    position: absolute;
    top: -5px;
    right: -6px;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    font-size: 10px;
    background: #fff;
    color: #ff6a00;
  }

  .nav-mobile-only {
    display: list-item;
  }


  .mobile-search-input {
    width: 100px;
  }

  .hero-content {
    display: contents;
  }

  .hero-title {
    order: 1;
  }

  .hero-subtitle {
    order: 2;
  }

  .hero-search {
    order: 3;
  }

  .hero-image {
    order: 4;
  }

  .hero-buttons {
    order: 5;
  }

  /* Mega Menu Mobile */
  .mega-menu-desktop {
    display: none !important;
  }

  .mobile-destinations-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100dvh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 12px;
    z-index: 2147483647;
    pointer-events: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-destinations-modal.active {
    display: flex;
    pointer-events: auto;
  }

  .mobile-destinations-sheet {
    width: min(100vw, 520px);
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    padding-top: 46px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    pointer-events: auto;
  }

  .mobile-destinations-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 10px;
    background: #fff;
    color: var(--color-gray-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-destinations-list {
    display: grid;
    gap: 14px;
  }

  .mobile-region-group h4 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    color: var(--color-gray-900);
    margin: 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-gray-200);
  }

  .mobile-region-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-region-group li {
    border-bottom: none;
  }

  .mobile-destination-link,
  .mobile-region-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: var(--color-gray-700);
    padding: 8px 0;
    font-size: 0.95rem;
  }

  .mobile-region-link {
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    padding-top: 10px;
  }

  .mega-menu {
    position: fixed;
    inset: 0;
    transform: none;
    min-width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 11000;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .mega-menu.mega-menu-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 100000;
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    max-height: calc(100dvh - (clamp(10px, 3vw, var(--spacing-lg)) * 2));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    width: min(100%, 520px);
    max-width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    margin-top: 0;
    position: relative;
    box-sizing: border-box;
    padding-top: calc(var(--spacing-lg) + 24px);
    padding-bottom: calc(var(--spacing-lg) + env(safe-area-inset-bottom));
  }

  .mega-menu-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 0, 0.2);
    background: linear-gradient(
      135deg,
      rgba(255, 107, 0, 0.1) 0%,
      rgba(255, 107, 0, 0.05) 100%
    );
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
  }

  .mega-menu-close:hover {
    background: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-primary-dark) 100%
    );
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
    border-color: var(--color-primary);
  }

  .mega-menu-close:active {
    transform: rotate(90deg) scale(0.95);
  }

  .mega-menu-close svg {
    transition: transform 0.3s ease;
  }

  .mega-menu-close-button {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    background: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-primary-dark) 100%
    );
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: var(--spacing-lg);
    position: sticky;
    bottom: 0;
    background-clip: padding-box;
  }

  .mega-menu-close-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
    background: linear-gradient(
      135deg,
      var(--color-primary-dark) 0%,
      var(--color-primary) 100%
    );
  }

  .mega-menu-close-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
  }

  .mega-menu-search {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
  }

  .mega-menu-search-input {
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
  }

  .mega-menu-search-button {
    padding: 0.625rem 0.875rem;
  }

  .mega-menu-search-results {
    max-height: 200px;
  }

  .nav-item-with-mega:hover .mega-menu {
    margin-top: 0;
  }

  .nav-item-with-mega:hover .mega-menu:not(.mega-menu-active) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 480px) {
  /* Extra Small Mobile Scaling */
  .container {
    padding: 0 var(--spacing-md);
  }

  /* Header - Smaller */
  .header .container {
    padding: 0.5rem 0.75rem;
  }

  .logo img {
    height: 28px;
    max-width: 100px;
  }

  .nav a,
  .nav-link {
    font-size: var(--font-size-xs);
    padding: 0.5rem 0.75rem;
  }

  .mega-menu {
    padding: 10px;
  }

  .mobile-destinations-modal {
    padding: 8px;
  }

  .mega-menu-content {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 12px;
    padding: 12px;
    padding-top: 40px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .mega-menu-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .mobile-destinations-sheet {
    max-height: calc(100dvh - 16px);
    border-radius: 12px;
    padding: 12px;
    padding-top: 42px;
  }

  /* Hero Section - Further Reduced */
  .hero {
    padding: var(--spacing-xl) 0;
  }

  .hero-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
  }

  .hero-subtitle {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
  }

  .cta-button {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-xs);
  }

  /* Section Titles - Smaller */
  .section-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
  }

  /* All Sections - Reduced Padding */
  .features,
  .destinations,
  .how-it-works,
  .testimonials,
  .trust,
  .faq,
  .affiliate {
    padding: var(--spacing-lg) 0;
  }

  /* Feature Items */
  .feature-item {
    padding: var(--spacing-md);
  }

  .feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .feature-item h3 {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xs);
  }

  .feature-item p {
    font-size: var(--font-size-xs);
  }

  /* Destination Cards */
  .destination-card {
    padding: var(--spacing-sm);
  }

  .destination-header h3 {
    font-size: var(--font-size-base);
  }

  .destination-price {
    font-size: var(--font-size-lg);
  }

  .destination-details p {
    font-size: var(--font-size-xs);
  }

  /* Steps */
  .step {
    padding: var(--spacing-md);
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: var(--font-size-base);
  }

  .step h3 {
    font-size: var(--font-size-base);
  }

  .step p {
    font-size: var(--font-size-xs);
  }

  /* Testimonials */
  .testimonial-content {
    padding: var(--spacing-md);
  }

  .testimonial-content p {
    font-size: var(--font-size-xs);
  }

  .author-details h4 {
    font-size: var(--font-size-sm);
  }

  .author-details p {
    font-size: 0.65rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  /* Trust Section */
  .trust-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .stat-number {
    font-size: var(--font-size-2xl);
  }

  .stat-label {
    font-size: var(--font-size-xs);
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .trust-logo {
    height: 25px;
  }

  .badge {
    width: 100%;
    padding: var(--spacing-sm);
  }

  .badge-icon {
    font-size: 1.5rem;
  }

  /* FAQ */
  .faq-item {
    padding: var(--spacing-sm);
  }

  .faq-question {
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm);
  }

  .faq-answer {
    font-size: var(--font-size-xs);
    padding: var(--spacing-sm);
  }

  /* Affiliate Section */
  .affiliate-header h2 {
    font-size: var(--font-size-xl);
  }

  .affiliate-header p {
    font-size: var(--font-size-xs);
  }

  .affiliate-card {
    padding: var(--spacing-md);
  }

  .affiliate-card h3 {
    font-size: var(--font-size-base);
  }

  .affiliate-card p {
    font-size: var(--font-size-xs);
  }

  .affiliate-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  /* Footer */
  .footer-section h3 {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
  }

  .footer-section p,
  .footer-section a {
    font-size: var(--font-size-xs);
  }

  /* Search Input */
  .mobile-search-input {
    width: 80px;
    font-size: 0.75rem;
  }

  /* Phone Mockup - Smaller */
  .phone-mockup {
    width: 200px;
    height: 400px;
  }
}

/* Content Loader Spinner */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.content-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 200px;
}

.loader-spinner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.loader-spinner .spinner-ring {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 107, 0, 0.1);
  border-top-color: #ff6a00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Search Results */
.destinations-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-top: 8px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 10;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-section {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.search-section:last-child {
  border-bottom: none;
}

.search-section h4 {
  padding: 8px 16px 4px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.5px;
  margin: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  gap: 12px;
}

.search-result-item:hover {
  background-color: #f8f9fa;
}

.search-result-item.plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-flag {
  font-size: 24px;
  flex-shrink: 0;
}

.result-name {
  flex: 1;
  font-weight: 500;
  color: #333;
}

.result-region {
  font-size: 12px;
  color: #999;
  padding: 2px 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.search-result-item.plan-item .result-price {
  font-weight: 600;
  color: #ff6a00;
  margin-left: 8px;
}

.no-results {
  padding: 20px 16px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.error-message {
  padding: 20px 16px;
  text-align: center;
  color: #d32f2f;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ff6a00 0%, #ff8534 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.btn-lg {
  padding: 14px 42px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #ff6a00;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .cta-section .section-subtitle {
    font-size: 16px;
  }
}

/* Hero Sections for Pages */
.page-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Specific Hero Backgrounds */
.destinations-hero {
  background-image: url("/esimretailer/public/img/image.jpg");
}

.how-it-works-hero {
  background-image: linear-gradient(135deg, #ff6a00 0%, #ff8534 100%);
}

.affiliate-hero {
  background-image: linear-gradient(135deg, #ff6a00 0%, #ff8534 100%);
}

.plans-hero {
  background-image: url("/esimretailer/public/img/image.jpg");
}

#how-it-works {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  #how-it-works {
    scroll-margin-top: 88px;
  }

  .page-hero {
    height: 280px;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .page-hero {
    background-attachment: scroll;
  }
}

/* Loading animations */
@keyframes spinRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero .container,
  .features .container,
  .destinations .container,
  .how-it-works .container,
  .testimonials .container,
  .trust .container,
  .faq .container,
  .affiliate .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  html,
  body,
  .main-content,
  .header,
  section,
  .footer {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
}
