:root {
  --color-background: #ffffff;
  --color-foreground: #0f172a;
  --color-card: #ffffff;
  --color-card-foreground: #0f172a;
  --color-popover: #ffffff;
  --color-popover-foreground: #0f172a;
  --color-primary: #ff6b35;
  --color-primary-foreground: #ffffff;
  --color-primary-hover: #e55a2b;
  --color-secondary: #f1f5f9;
  --color-secondary-foreground: #1e293b;
  --color-muted: #f1f5f9;
  --color-muted-foreground: #64748b;
  --color-accent: #f1f5f9;
  --color-accent-foreground: #1e293b;
  --color-destructive: #ef4444;
  --color-destructive-foreground: #fef2f2;
  --color-border: #e2e8f0;
  --color-input: #e2e8f0;
  --color-ring: #ff6b35;
  --color-brand-orange: #ff6b35;
  --color-brand-orange-hover: #e55a2b;
  --color-brand-navy: #1e293b;
  --color-brand-gray: #e2e8f0;
  --color-brand-text-light: #78716c;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}
.dark {
  --color-background: #0f172a;
  --color-foreground: #f8fafc;
  --color-card: #0f172a;
  --color-card-foreground: #f8fafc;
  --color-popover: #0f172a;
  --color-popover-foreground: #f8fafc;
  --color-primary: #f8fafc;
  --color-primary-foreground: #1e293b;
  --color-secondary: #1e293b;
  --color-secondary-foreground: #f8fafc;
  --color-muted: #1e293b;
  --color-muted-foreground: #94a3b8;
  --color-accent: #1e293b;
  --color-accent-foreground: #f8fafc;
  --color-destructive: #7f1d1d;
  --color-destructive-foreground: #fef2f2;
  --color-border: #1e293b;
  --color-input: #1e293b;
  --color-ring: #d1d5db;
}
* {
  border-color: var(--color-border);
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.grid {
  display: grid;
}
.gap-2 {
  gap: var(--spacing-sm);
}
.gap-3 {
  gap: var(--spacing-md);
}
.gap-4 {
  gap: var(--spacing-lg);
}
.gap-6 {
  gap: var(--spacing-xl);
}
.gap-8 {
  gap: var(--spacing-2xl);
}
.gap-12 {
  gap: var(--spacing-3xl);
}
.p-2 {
  padding: var(--spacing-sm);
}
.p-4 {
  padding: var(--spacing-lg);
}
.p-6 {
  padding: var(--spacing-xl);
}
.p-8 {
  padding: var(--spacing-2xl);
}
.px-4 {
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.m-0 {
  margin: 0;
}
.mb-2 {
  margin-bottom: var(--spacing-sm);
}
.mb-3 {
  margin-bottom: var(--spacing-md);
}
.mb-4 {
  margin-bottom: var(--spacing-lg);
}
.mb-6 {
  margin-bottom: var(--spacing-xl);
}
.mb-8 {
  margin-bottom: var(--spacing-2xl);
}
.mb-12 {
  margin-bottom: var(--spacing-3xl);
}
.mt-6 {
  margin-top: var(--spacing-xl);
}
.mt-8 {
  margin-top: var(--spacing-2xl);
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.text-6xl {
  font-size: 3.75rem;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-white {
  color: #ffffff;
}
.text-black {
  color: #000000;
}
.text-primary {
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary-foreground);
}
.text-muted {
  color: var(--color-muted-foreground);
}
.text-gray-300 {
  color: #d1d5db;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-800 {
  color: #1f2937;
}
.text-gray-900 {
  color: #111827;
}
.text-green-600 {
  color: #059669;
}
.text-yellow-400 {
  color: #fbbf24;
}
.text-orange-100 {
  color: #fed7aa;
}
.border {
  border-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-border {
  border-color: var(--color-border);
}
.border-gray-700 {
  border-color: #374151;
}
.border-white-30 {
  border-color: rgba(255, 255, 255, 0.3);
}
.rounded {
  border-radius: var(--radius-md);
}
.rounded-md {
  border-radius: var(--radius-md);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.rounded-2xl {
  border-radius: var(--radius-2xl);
}
.rounded-3xl {
  border-radius: 2rem;
}
.rounded-full {
  border-radius: 9999px;
}
.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);
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-32 {
  width: 8rem;
}
.w-64 {
  width: 16rem;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.min-h-screen {
  min-height: 100vh;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}
@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 20s linear;
  }
}
.card {
  padding: 2em;
}
.wave-svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top;
}
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-wave svg {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
.hero-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: visible;
  font-family: 'Inter', sans-serif;
}
.hero-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
}
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
  z-index: 9999;
  max-height: 400px;
  overflow-y: auto;
  padding: 16px 0;
}
.destination-tags-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 16px;
  margin-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}
.destination-tags-container::-webkit-scrollbar {
  height: 4px;
}
.destination-tags-container::-webkit-scrollbar-track {
  background: transparent;
}
.destination-tags-container::-webkit-scrollbar-thumb {
  background-color: #e5e7eb;
  border-radius: 2px;
}
.destination-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 1;
  transform: rotate(0deg);
}
.destination-tag:hover {
  background: #f5f5f5;
  border-color: #d1d5db;
}
.destination-tag-icon {
  font-size: 16px;
  color: #6b7280;
}
.destination-tag-text {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.destination-tag-text strong {
  font-weight: 600;
  color: #ff6b35;
  background-color: #fef3f0;
  padding: 1px 2px;
  border-radius: 2px;
}
.dropdown-section {
  margin-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 12px;
}
.dropdown-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  color: #6b7280;
  font-size: 14px;
}
.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.min-char-message {
  padding: 16px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  font-style: italic;
}
.no-results {
  padding: 16px;
  text-align: center;
  color: #666;
  font-style: italic;
}
.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}
.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.search-clear:hover {
  background-color: #f3f4f6;
}
.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-input-container {
  position: relative;
  flex: 1;
}
.search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus {
  border-color: #3b82f6;
}
.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.search-clear:hover {
  background-color: #f3f4f6;
}
.search-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.search-button:hover {
  background-color: #2563eb;
}
.dropdown-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 8px;
  font-weight: 600;
}
.view-all-link {
  font-size: 12px;
  color: #3b82f6;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}
.view-all-link:hover {
  color: #2563eb;
  text-decoration: underline;
}
.dropdown-items {
  display: flex;
  flex-direction: column;
}
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  gap: 12px;
  text-align: left;
}
.dropdown-item:hover {
  background-color: #f5f5f5;
}
.destination-item {
  background: #f3f4f6;
  border-radius: 20px;
  margin: 4px 16px;
  padding: 8px 12px;
  width: fit-content;
}
.destination-item.highlighted {
  background: #f3f4f6;
  border: none;
}
.dropdown-item-icon {
  font-size: 16px;
  color: #6b7280;
  flex-shrink: 0;
}
.dropdown-item-text {
  font-size: 14px;
  color: #000000;
  flex: 1;
}
.dropdown-item-text strong {
  font-weight: 600;
  color: #ff6b35;
  background-color: #fef3f0;
  padding: 1px 2px;
  border-radius: 2px;
}
.light-text {
  color: #6b7280;
  font-weight: 400;
}
.profile-header {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%),
    url(/static/asset/images/profile-bg-img.eccd1781.png) lightgray 50% / cover no-repeat;
  padding: 40px;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 234px;
}
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row:last-child {
  margin-bottom: 0;
}
.hero-section-activity {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section-activity .hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-section-activity .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 2;
}
.hero-section-activity .hero-content-activities {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}
.hero-section-activity .hero-title-activities {
  font-size: 3rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero-section-activity .hero-title-activities {
    font-size: 3.75rem;
  }
}
.activity-card {
  display: flex;
  width: 100%;
  max-width: 400px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  border: 1px solid #d5d7da;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.activity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card-image {
  position: relative;
  height: 212px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  min-height: 212px;
  max-height: 212px;
}
.card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  min-height: 212px !important;
  max-height: 212px !important;
}
.favorite-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.favorite-button:hover {
  background: rgba(255, 255, 255, 0.40);
  transform: scale(1.1);
}
.favorite-button.in-wishlist {
  background: rgba(255, 107, 53, 0.20);
  border: 2px solid rgba(255, 107, 53, 0.6);
}
.favorite-button.in-wishlist:hover {
  background: rgba(255, 107, 53, 0.30);
  border-color: rgba(255, 107, 53, 0.8);
}
.favorite-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.favorite-button:disabled:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: none;
}
.activity-card .card-content {
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}
.activity-card .activity-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
.rating-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.rating-text {
  color: #535862;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star-icon {
  width: 17px;
  height: 18px;
}
.price-container {
  display: flex;
  width: 100%;
  padding-top: 10px;
  align-items: flex-end;
  gap: 6px;
  border-top: 1px solid #d5d7da;
  margin-top: auto;
}
.price {
  color: #252b37;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.price-unit {
  color: #535862;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.section.padding-top {
  padding-top: 4rem;
}
.section.padding-bottom {
  padding-bottom: 4rem;
}
.section-content {
  max-width: 1300px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
}
.section-subtitle {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.section-description {
  text-align: center;
  color: #4b5563;
  margin-bottom: 3rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-item {
  text-align: center;
}
.feature-icon {
  width: 3rem;
  height: 3rem;
  background: #fed7aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.feature-icon-inner {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-primary);
  border-radius: 0.25rem;
}
.feature-title {
  font-weight: 600;
}
.feature-description {
  font-size: 0.875rem;
  color: #4b5563;
}
.image-placeholder {
  width: 100%;
  height: 20rem;
  background: #d1d5db;
  border-radius: 0.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.image-placeholder-medium {
  width: 100%;
  height: 12rem;
  background: #d1d5db;
  border-radius: 0.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.image-placeholder-large {
  width: 100%;
  height: 24rem;
  background: #d1d5db;
  border-radius: 0.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.image-placeholder-xl {
  width: 16rem;
  height: 24rem;
  background: #d1d5db;
  border-radius: 1.5rem;
  margin: 0 auto;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.price-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
.activity-image {
  position: relative;
  width: 100%;
  height: 12rem;
  background: #d1d5db;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.activity-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.discount-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #111827;
}
.activity-content {
  padding: 1rem;
}
.rating-stars {
  display: flex;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}
.rating-text {
  font-size: 0.875rem;
  color: #4b5563;
}
.activity-details {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}
.activity-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.current-price {
  font-size: 1.125rem;
  font-weight: 700;
}
.original-price {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: line-through;
}
.app-download-section.navigation-container {
  max-width: 1300px;
  padding: 0;
  padding-bottom: 60px;
}
.promo-slide::after {
  background-image: url(/static/asset/images/Vector-1.62358fa3.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 310px;
  height: 166.5px;
}
.promo-right-image::after {
  background-image: url(/static/asset/images/shape.svg.6f104f6a.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 400px;
  background-repeat: repeat;
  z-index: 9;
}
.promo-remaining-uses {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: var(--spacing-sm);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
}
.promo-banner {
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-hover));
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.background-blur {
  position: absolute;
  width: 478px;
  height: 478px;
  border-radius: 50%;
  background: #8D4BFF;
  opacity: 0.3;
  filter: blur(200px);
  pointer-events: none;
}
.blur-left {
  left: -239px;
  top: -238px;
}
.blur-right {
  right: -239px;
  bottom: -239px;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #6B7280;
  font-size: 0.75rem;
}
.nav-item svg {
  color: #9CA3AF;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 3rem;
  }
  .promo-banner {
    padding: 3rem;
  }
}
.top-header {
  background: rgba(217, 217, 217, 0.20);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 40;
}
.top-header-container {
  max-width: none;
  margin: 0;
  padding: 0;
}
.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}
.social-media-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-icon {
  color: white;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon:hover {
  opacity: 1;
}
.city-selector {
  position: relative;
}
.city-selector-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}
.city-selector-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.city-selector .city-selector-button span {
  font-size: 18px;
}
.location-icon {
  font-size: 1rem;
}
.dropdown-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.dropdown-arrow.rotated {
  transform: rotate(180deg);
}
.city-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(217, 217, 217, 0.20);
  backdrop-filter: blur(5px);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  z-index: 100;
  margin-top: 0.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.city-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: white;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.city-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.city-option.selected {
  background-color: var(--color-primary);
  color: white;
}
.navigation {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 39;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}
.mobile-menu-button,
.mobile-search-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #333;
  transition: color 0.2s ease;
}
.mobile-menu-button:hover,
.mobile-search-button:hover {
  color: #FF4500;
}
.hamburger-icon,
.search-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background: #FF4500;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-s {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: 'Inter', 'Poppins', sans-serif;
}
.location-pin {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  color: #87CEEB;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FF4500;
  font-family: 'Inter', 'Poppins', sans-serif;
  line-height: 1;
}
.logo-tagline {
  font-size: 0.625rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 0.125rem;
}
.navigation.home-top-visible {
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: none;
  padding-top: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigation.home-top-visible .navigation-container {
  max-width: 1300px;
  background: #ffffff;
  border-radius: 12px;
  padding: 0 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navigation.home-top-visible .logo-image {
  height: 2.5rem;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigation.home-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--color-border);
  padding-top: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigation.home-scrolled .navigation-container {
  max-width: none;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}
.navigation.home-scrolled .logo-image {
  height: 3.5rem;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigation-container {
  max-width: none;
  margin: 0 auto;
  padding: 0 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}
@media (min-width: 640px) {
  .navigation-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .navigation-container {
    padding: 0 2rem;
  }
}
.navigation-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}
.navigation.home-scrolled .navigation-content {
  padding: 20px;
}
.search-bar-header {
  position: relative;
  width: 360px;
  height: 40px;
  margin: 0 10px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.search-bar-header.entering {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.search-bar-header.entered {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.search-bar-header.exiting {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.search-input-header {
  width: 100%;
  height: 100%;
  padding: 13px 20px;
  border: none;
  border-radius: 12px;
  background: #f5f5f5;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}
.search-input-header::placeholder {
  color: #666;
  font-size: 14px;
}
.search-input-header:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-primary);
}
.search-bar-header .search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-image {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-icon {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1.125rem;
}
.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-foreground);
}
.logo-tagline {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  display: none;
}
@media (min-width: 640px) {
  .logo-tagline {
    display: block;
  }
  .logo-image {
    height: 3rem;
  }
}
@media (min-width: 768px) {
  .logo-image {
    height: 3.5rem;
  }
}
.navigation-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .navigation-links {
    display: flex;
  }
  .search-bar-header {
    display: block;
  }
}
.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-foreground);
  text-decoration: none;
  transition: color var(--transition-normal);
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-link-active {
  color: var(--color-primary);
}
.header-city-selector {
  position: relative;
  margin-left: 1rem;
}
.header-city-selector-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: var(--color-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
.header-city-selector-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.navigation.home-scrolled .header-city-selector-button svg:first-child path {
  stroke: #FF4405;
}
.header-location-icon {
  font-size: 1rem;
  color: var(--color-primary);
}
.header-dropdown-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.header-dropdown-arrow.rotated {
  transform: rotate(180deg);
}
.header-city-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  z-index: 9999;
  margin-top: 0.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.header-city-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: #333;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.header-city-option:hover {
  background-color: #f5f5f5;
}
.header-city-option.selected {
  background-color: var(--color-primary);
  color: white;
}
.loading-text {
  padding: 0.75rem 1rem;
  text-align: center;
  color: #666;
  font-style: italic;
}
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.login-button {
  color: var(--color-foreground);
}
.signup-button {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}
.signup-button:hover {
  background-color: var(--color-primary-hover);
}
.user-menu {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.wishlist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.wishlist-icon:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.wishlist-heart {
  font-size: 1.5rem;
  color: #6b7280;
  transition: color 0.3s ease;
}
.wishlist-icon:hover .wishlist-heart {
  color: #dc2626;
}
.user-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  position: relative;
}
.user-profile:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avatar-initials {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.avatar-icon {
  color: white;
  font-size: 1.5rem;
}
.user-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.user-name {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-email {
  color: #6b7280;
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  z-index: 1000;
  margin-top: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  animation: slideInDown 0.2s ease-out;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}
.dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-item:hover {
  background-color: #f9fafb;
}
.dropdown-item.active {
  background-color: #fff4ed;
}
.dropdown-item.logout-item {
  color: #dc2626;
}
.dropdown-item.logout-item:hover {
  background-color: #fef2f2;
}
.dropdown-icon {
  font-size: 20px;
  color: #6b7280;
  width: 20px;
  height: 20px;
}
.dropdown-item span {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.logout-item span {
  color: #dc2626;
}
.user-menu-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: white;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: rotate(45deg);
  z-index: -1;
}
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}
.mobile-sidebar-overlay.show {
  display: block;
}
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1001;
  overflow-y: auto;
  padding: 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.mobile-sidebar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}
.mobile-sidebar-close:hover {
  background-color: #f3f4f6;
}
.mobile-user-info {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
.mobile-user-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}
.mobile-user-email {
  font-size: 0.875rem;
  color: #666;
}
.mobile-auth-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-auth-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
}
.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-login-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-login-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}
.mobile-signup-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #3b82f6;
  border: 1px solid #3b82f6;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-signup-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
}
.mobile-location-section {
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mobile-location-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #666;
}
.mobile-location-text {
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  text-align: center;
  margin: 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-location-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: #666;
  transition: transform 0.2s ease;
}
.mobile-location-arrow.rotated {
  transform: rotate(180deg);
}
.mobile-city-dropdown {
  position: absolute;
  top: 100%;
  left: 1.5rem;
  right: 1.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  margin-top: 0.25rem;
}
.mobile-city-option {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.mobile-city-option:hover {
  background-color: #f9fafb;
}
.mobile-city-option:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.mobile-city-option:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
.mobile-nav-links {
  padding: 0 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover {
  color: #FF4500;
}
.mobile-user-links {
  padding: 0 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
.mobile-user-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.mobile-user-link:hover {
  color: #FF4500;
}
.mobile-link-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: #666;
}
.mobile-user-link:hover .mobile-link-icon {
  color: #FF4500;
}
.mobile-auth-links {
  padding: 0 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}
.mobile-login-btn,
.mobile-signup-btn {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: white;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-signup-btn {
  background: #FF4500;
  color: white;
  border-color: #FF4500;
}
.mobile-login-btn:hover {
  background: #f9fafb;
}
.mobile-signup-btn:hover {
  background: #e63900;
}
.mobile-logout-section {
  padding: 0 1.5rem;
}
.mobile-logout-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  cursor: pointer;
  color: #dc2626;
  transition: color 0.2s ease;
}
.mobile-logout-link:hover {
  color: #b91c1c;
}
.mobile-logout-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: #dc2626;
}
.mobile-logout-link:hover .mobile-logout-icon {
  color: #b91c1c;
}
.mobile-header-city-selector {
  position: relative;
  display: none;
  z-index: 1003;
}
.mobile-city-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #333;
  transition: color 0.2s ease;
}
.mobile-city-button:hover {
  color: #FF4500;
}
.mobile-city-icon {
  width: 1rem;
  height: 1rem;
  color: #666;
}
.mobile-city-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}
.mobile-city-arrow {
  width: 1rem;
  height: 1rem;
  color: #666;
  transition: transform 0.2s ease;
}
.mobile-city-arrow.rotated {
  transform: rotate(180deg);
}
.mobile-city-dropdown-header {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  margin-top: 0.25rem;
  min-width: 120px;
}
.logo-image-mobile {
  display: none;
  width: auto;
  object-fit: contain;
}
.mobile-city-dropdown-header .mobile-city-option {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.mobile-city-dropdown-header .mobile-city-option:hover {
  background-color: #f9fafb;
}
.mobile-city-dropdown-header .mobile-city-option:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.mobile-city-dropdown-header .mobile-city-option:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (min-width: 769px) {
  .mobile-menu-button,
  .mobile-search-button,
  .mobile-sidebar-overlay,
  .logo-image-mobile {
    display: none;
  }
  .navigation-links,
  .auth-buttons {
    display: flex;
  }
  .logo-image {
    display: block;
  }
  .top-header {
    display: block;
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content-blogs {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}
.hero-title-blogs {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.offers-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: var(--spacing-3xl) 0;
}
.offers-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}
.offers-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}
.offers-subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin: 0;
}
.coupon-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}
.coupon-card {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}
.coupon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}
.coupon-card-content {
  padding: var(--spacing-xl);
  position: relative;
  z-index: 2;
}
.discount-percentage {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.discount-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brand-navy);
  background: var(--color-primary);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.coupon-details {
  margin-bottom: var(--spacing-lg);
}
.breadcrumb-link {
  color: #ff6b35;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s ease;
}
.breadcrumb-link:hover {
  color: #e55a2b;
  text-decoration: underline;
}
.breadcrumb-separator {
  color: #9ca3af;
  font-weight: 400;
  margin: 0 0.25rem;
}
.form-group {
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 1s both;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.875rem;
  background: #ffffff;
  color: #374151;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  height: 44px;
  animation: fadeInUp 0.8s ease-out 1s both;
}
.form-input:hover {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.form-input:focus {
  border-color: #FF4405;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 68, 5, 0.15);
}
.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
}
.password-input {
  padding-right: 3rem;
}
.password-toggle {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #6b7280;
  padding: 0.25rem;
  border-radius: 4px;
  transition: color 0.3s ease;
  display: flex;
}
.password-toggle:hover {
  color: #374151;
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}
.checkbox-container {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-checkbox {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
  accent-color: #FF4405;
}
.forgot-password {
  color: #FF4405;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}
.forgot-password:hover {
  text-decoration: none;
}
.social-login {
  text-align: center;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 1.4s both;
}
.social-login-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1rem 0;
}
.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-button {
  width: 44px;
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 1.6s both;
}
.social-button:hover {
  border-color: #FF4405;
  transform: translateY(-2px);
}
.social-button.google .social-icon {
  color: #ea4335;
}
.social-button.facebook .social-icon {
  color: #1877f2;
}
.social-button.twitter .social-icon {
  color: #1da1f2;
}
.signup-link {
  text-align: center;
  animation: fadeInUp 0.8s ease-out 1.8s both;
}
.signup-link p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.signup-text {
  color: #FF4405;
  text-decoration: none;
  font-weight: 600;
}
.signup-text:hover {
  text-decoration: underline;
}
.signup-text-button {
  background: none;
  border: none;
  color: #FF4405;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0;
  margin: 0;
}
.signup-text-button:hover {
  text-decoration: underline;
}
.error-message {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-align: center;
  animation: shake 0.5s ease-in-out;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.success-message {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-align: center;
  animation: slideInDown 0.5s ease-out;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.email-display {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.otp-input-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.otp-input {
  width: 4rem;
  height: 4rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  background-color: #ffffff;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}
.otp-input:nth-child(1) {
  animation-delay: 0.1s;
}
.otp-input:nth-child(2) {
  animation-delay: 0.2s;
}
.otp-input:nth-child(3) {
  animation-delay: 0.3s;
}
.otp-input:nth-child(4) {
  animation-delay: 0.4s;
}
.otp-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  transform: scale(1.05);
  animation: pulse 0.3s ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.05);
  }
}
.otp-input:not(:placeholder-shown) {
  border-color: #10b981;
}
.verify-otp-button {
  width: 100%;
  margin-bottom: 1.5rem;
}
.footer {
  background-color: #1F235B;
  color: white;
}
.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    padding: 0 2rem;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-description {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-bottom: 20px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
  list-style: none;
  padding: 0;
  margin: 0;
}
.payment-section {
  margin-bottom: 0rem;
  margin-top: 50px;
}
.payment-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.payment-icons {
  display: flex;
  gap: 0.5rem;
}
.payment-icon {
  width: 2rem;
  height: 1.5rem;
  background: #4b5563;
  border-radius: 0.25rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.copyright {
  font-size: 0.875rem;
  color: #d1d5db;
}
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
  cursor: pointer;
  transition: color var(--transition-normal);
}
.social-icon:hover {
  color: white;
}
.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.layout-main {
  flex: 1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.feature-item span {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.contact-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.contact-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}
.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .contact-hero-title {
    font-size: 3.75rem;
  }
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 640px) {
  .form-row {
    flex-direction: row;
    gap: 20px;
  }
}
.form-label {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #374151;
  margin: 0;
  transition: color 0.2s ease;
}
.form-label.required::after {
  content: '*';
  color: #EF4444;
  margin-left: 4px;
  font-weight: 500;
}
.form-input {
  padding: 14px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  background: #FFFFFF;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #111827;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.form-input::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}
.form-input:hover {
  border-color: #D1D5DB;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.form-input:focus {
  outline: none;
  border-color: #FF4405;
  box-shadow: 0 0 0 3px rgba(255, 68, 5, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.form-input:user-invalid {
  border-color: #EF4444;
}
.form-input:user-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.phone-input-group {
  display: flex;
  align-items: stretch;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #FFFFFF;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 100%;
}
.phone-input-group:hover {
  border-color: #D1D5DB;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.phone-input-group:focus-within {
  border-color: #FF4405;
  box-shadow: 0 0 0 3px rgba(255, 68, 5, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.phone-input-group .country-select,
.phone-input-group .phone-input {
  border: none;
  box-shadow: none;
}
.phone-input-group .phone-input {
  padding-left: 0;
}
.country-select {
  width: auto;
  min-width: 80px;
  padding: 14px 12px;
  border: none;
  background: #F9FAFB;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  border-right: 2px solid #E5E7EB;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M4 6L8 10L12 6%27 stroke=%27%236B7280%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.country-select:focus {
  outline: none;
}
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.contact-container .checkbox-container {
  gap: 10px;
}
.checkbox-container:hover {
  color: #374151;
}
.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-custom {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 6px;
  background: #FFFFFF;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.checkbox-input:checked~.checkbox-custom {
  background: #FF4405;
  border-color: #FF4405;
}
.checkbox-input:checked~.checkbox-custom::after {
  opacity: 1;
}
.checkbox-input:focus~.checkbox-custom {
  box-shadow: 0 0 0 3px rgba(255, 68, 5, 0.1);
}
.privacy-text {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #6B7280;
}
.privacy-link {
  color: #FF4405;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.privacy-link:hover {
  color: #E55A2B;
  text-decoration: underline;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.loading-spinner {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.submit-help {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #6B7280;
  text-align: center;
  margin: 0;
  margin-top: -8px;
}
.message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 500;
}
.message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.message.info {
  background-color: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
}
.checkbox-input {
  display: none;
}
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1px solid #D5D7DA;
  border-radius: 6px;
  background: #FFFFFF;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}
.checkbox-input:checked+.checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.checkbox-input:checked+.checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.privacy-text {
  line-height: 1.4;
}
.privacy-link {
  color: #535862;
  text-decoration: underline;
}
.privacy-link:hover {
  color: #FF4405;
}
.partner-section::after{
  background-image: url(/static/asset/images/Vector-1.62358fa3.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 310px;
  height: 166.5px;
  background-repeat: no-repeat;
  z-index: -1;
  border-top-left-radius: 20px;
}
.ui-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 16px;
  font-weight: 500;
  transition: color var(--transition-normal), background-color var(--transition-normal), border-color var(--transition-normal);
  outline: none;
  cursor: pointer;
  border: none;
}
.ui-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-ring), 0 0 0 4px var(--color-background);
}
.ui-button:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.ui-button-default {
  background-color: #FF4405;
  color: var(--color-primary-foreground);
}
.ui-button-default:hover {
  background-color: var(--color-primary-hover);
}
.ui-button-destructive {
  background-color: var(--color-destructive);
  color: var(--color-destructive-foreground);
}
.ui-button-destructive:hover {
  background-color: #dc2626;
}
.ui-button-outline {
  border: 1px solid var(--color-input);
  background-color: var(--color-background);
  color: var(--color-foreground);
}
.ui-button-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
}
.ui-button-secondary {
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
}
.ui-button-secondary:hover {
  background-color: #cbd5e1;
}
.ui-button-ghost {
  color: var(--color-foreground);
}
.ui-button-ghost:hover {
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
}
.ui-button-link {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ui-button-link:hover {
  text-decoration: underline;
}
.ui-button-md {
  height: 2.5rem;
  padding: 0.5rem 1rem;
}
.ui-button-sm {
  height: 2.25rem;
  border-radius: 0.375rem;
  padding: 0 0.75rem;
}
.ui-button-lg {
  height: 2.75rem;
  border-radius: 0.375rem;
  padding: 0 2rem;
}
.ui-button-icon {
  height: 2.5rem;
  width: 2.5rem;
}
.ui-card {
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-card);
  color: var(--color-card-foreground);
  box-shadow: var(--shadow-sm);
}
.ui-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.5rem;
}
.ui-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}
.ui-card-description {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
.ui-card-content {
  padding: 1.5rem;
  padding-top: 0;
}
.ui-card-footer {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  padding-top: 0;
}
.ui-input {
  display: flex;
  height: auto;
  padding: 12px 16px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  transition: none !important;
  transform: none !important;
  animation: none !important;
}
.ui-input:focus-visible,
.ui-input:focus {
  outline: none;
  border-color: #FF4405;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}
.ui-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.ui-input::placeholder {
  color: #717680;
}
.ui-textarea {
  display: flex;
  min-height: 5rem;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  resize: vertical;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.ui-textarea:focus-visible,
.ui-textarea:focus {
  outline: none;
  border-color: #FF4405;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}
.ui-textarea:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.ui-textarea::placeholder {
  color: var(--color-muted-foreground);
}
.ui-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid transparent;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: color var(--transition-normal), background-color var(--transition-normal);
  outline: none;
  cursor: default;
}
.ui-badge:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-ring), 0 0 0 4px var(--color-background);
}
.ui-badge-default {
  border-color: transparent;
}
.email-display {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center;
  background: #f9fafb;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}
.email-input-container {
  position: relative;
  display: flex;
  align-items: center;
}
.email-icon {
  position: absolute;
  left: 0.75rem;
  color: #6b7280;
  width: 1.25rem;
  height: 1.25rem;
  z-index: 1;
}
.email-input {
  padding-left: 2.75rem !important;
}
.otp-input-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.otp-input {
  width: 4rem;
  height: 4rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.otp-input:focus {
  outline: none;
  border-color: #FF4405;
  box-shadow: 0 0 0 3px rgba(255, 68, 5, 0.1);
  transform: scale(1.05);
}
.otp-input:not(:placeholder-shown) {
  border-color: #10b981;
}
.password-strength {
  margin-top: 0.5rem;
}
.strength-bar {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}
.strength-fill {
  height: 100%;
  transition: all 0.3s ease;
}
.strength-fill.weak {
  background: #ef4444;
  width: 50%;
}
.strength-fill.strong {
  background: #10b981;
  width: 100%;
}
.strength-text {
  font-size: 0.75rem;
  color: #6b7280;
}
.password-match {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.password-match.match {
  color: #10b981;
}
.password-match.no-match {
  color: #ef4444;
}
.resend-otp {
  text-align: center;
  margin-top: 1rem;
}
.resend-otp p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}
.resend-otp-button {
  background: none;
  border: none;
  color: #FF4405;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}
.resend-otp-button:hover {
  color: #e03d04;
}
.resend-otp-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  color: #9ca3af;
}
.countdown-text {
  color: #6b7280;
  font-weight: 500;
}
.success-icon {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}
.check-icon {
  width: 4rem;
  height: 4rem;
  color: #10b981;
}
.success-message {
  margin-bottom: 2rem;
  text-align: center;
}
.success-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
  text-align: center;
}
.success-text {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  text-align: center;
}
.ui-badge-default {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}
.ui-badge-default:hover {
  background-color: var(--color-primary-hover);
}
.ui-badge-secondary {
  border-color: transparent;
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
}
.ui-badge-secondary:hover {
  background-color: #cbd5e1;
}
.ui-badge-destructive {
  border-color: transparent;
  background-color: var(--color-destructive);
  color: var(--color-destructive-foreground);
}
.ui-badge-destructive:hover {
  background-color: #dc2626;
}
.ui-badge-outline {
  color: var(--color-foreground);
}
.ui-select {
  display: flex;
  height: 2.5rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.375rem;
  border: 1px solid var(--color-input);
  background-color: var(--color-background);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.ui-select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-ring), 0 0 0 4px var(--color-background);
}
.ui-select:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.ui-select-trigger {
  display: flex;
  height: 2.5rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.375rem;
  border: 1px solid var(--color-input);
  background-color: var(--color-background);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.ui-select-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-ring), 0 0 0 4px var(--color-background);
}
.ui-select-content {
  position: relative;
  z-index: 50;
  max-height: 24rem;
  min-width: 8rem;
  overflow: hidden;
  border-radius: 0.375rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-popover);
  color: var(--color-popover-foreground);
  box-shadow: var(--shadow-md);
}
.ui-select-label {
  padding: 0.375rem 2rem 0.375rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.ui-select-item {
  position: relative;
  display: flex;
  width: 100%;
  cursor: default;
  user-select: none;
  align-items: center;
  border-radius: 0.125rem;
  padding: 0.375rem 2rem 0.375rem 0.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}
.ui-select-item:focus {
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
}
.ui-select-separator {
  margin: 0.25rem -0.25rem;
  height: 1px;
  background-color: var(--color-muted);
}
.ui-toaster {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}
.ui-toast {
  position: relative;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  max-width: 24rem;
}
.ui-toast-content {
  display: grid;
  gap: 0.25rem;
}
.ui-toast-title {
  font-weight: 600;
}
.ui-toast-description {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
.ui-toast-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: var(--color-muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: color var(--transition-normal);
}
.ui-toast-close:hover {
  color: var(--color-foreground);
}
.ui-sonner {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.toast {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
  min-width: 300px;
  max-width: 400px;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: slideInRight 0.3s ease-out;
}
.toast:hover {
  transform: translateX(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.toast-success {
  border-left: 4px solid #10b981;
  background: #f0fdf4;
}
.toast-error {
  border-left: 4px solid #ef4444;
  background: #fef2f2;
}
.toast-warning {
  border-left: 4px solid #f59e0b;
  background: #fffbeb;
}
.toast-info {
  border-left: 4px solid #3b82f6;
  background: #eff6ff;
}
.toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.toast-message {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  flex: 1;
}
.toast-close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: color 0.2s ease;
}
.toast-close:hover {
  color: #374151;
  background: rgba(0, 0, 0, 0.05);
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.ui-tooltip-content {
  z-index: 50;
  overflow: hidden;
  border-radius: 0.375rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-popover);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  color: var(--color-popover-foreground);
  box-shadow: var(--shadow-md);
}
.enhanced-search-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 48rem;
  margin: 3rem auto 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  position: relative;
}
.search-date-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.search-input {
  border: none;
  outline: none;
  color: #111827;
  background: transparent;
}
.search-input:focus {
  box-shadow: none;
}
.search-input.date-input {
  width: 8rem;
}
.search-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.travel-experiences-container {
  max-width: 1300px;
  margin: 0 auto;
}
.header-section {
  margin-bottom: 40px;
}
.main-title {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.72px;
  color: var(--gray-light-mode-800, #252B37);
  margin: 0 0 10px 0;
}
.subtitle {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-light-mode-600, #535862);
  margin: 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.travel-card {
  background: #FFF;
  border-radius: 12px;
  border: 1px solid var(--gray-light-mode-300, #D5D7DA);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.travel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.card-image-container {
  position: relative;
  height: 212px;
  overflow: hidden;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.favorite-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
.location-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.location-text {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-light-mode-600, #535862);
}
.card-title {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray-light-mode-800, #252B37);
  margin: 0;
}
.card-duration {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-light-mode-600, #535862);
  margin: 0;
}
.rating-section {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-text {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--gray-light-mode-600, #535862);
}
.stars-container {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star-icon {
  width: 17px;
  height: 18px;
}
.price {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--gray-light-mode-800, #252B37);
}
.price-unit {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--gray-light-mode-600, #535862);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background: #1F235B;
  position: relative;
  padding: 60px 0 40px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 0;
}
.footer-content>*:not(:last-child) {
  margin-right: 40px;
}
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
.about-section {
  width: 100%;
  max-width: 382px;
}
.footer-title {
  color: var(--gray-light-mode-50, #FAF9FA);
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}
.footer-description {
  color: var(--gray-light-mode-200, #E9EAEB);
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 100%;
  margin-top: 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.contact-item span {
  color: var(--gray-light-mode-200, #E9EAEB);
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  align-self: stretch;
}
.footer-links a {
  color: var(--gray-light-mode-200, #E9EAEB);
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--gray-light-mode-50, #FAF9FA);
}
.payment-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.payment-icon {
  display: flex;
  width: 34px;
  height: 24px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--gray-100, #F5F5F5);
  background: var(--white, #FFF);
  box-sizing: border-box;
}
.payment-icon svg {
  max-width: 100%;
  max-height: 100%;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: #2D3282;
  width: 100%;
}
.footer-bottom-content {
  display: flex;
  padding: 28px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
}
.terms-condition {
  text-decoration: none;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.8;
  flex-wrap: wrap;
}
.copyright,
.terms {
  color: #F8F9FC;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.copyright {
  font-weight: 600;
}
.terms {
  font-weight: 400;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social-link {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.social-link:hover {
  opacity: 0.8;
}
.social-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.form-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.form-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}
.form-field label {
  color: #414651;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.form-field input,
.form-field select {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  background: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  color: #252B37;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M4 6L8 10L12 6%27 stroke=%27%23A4A7AE%27 stroke-width=%271.33333%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}
.star-rating {
  color: #F79009 !important;
}
.open-today.clickable {
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: underline;
}
.open-today.clickable:hover {
  color: #059669;
}
.feature-item span {
  color: #535862;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ff6b35;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.coupon-modal {
  background: white;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 05px 0px;
}
.modal-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.close-btn:hover {
  background-color: #f3f4f6;
}
.modal-content {
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 90vw;
  overflow-y: auto;
}
.modal-content h3 {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
}
.password-input {
  position: relative;
}
.password-input input {
  width: 92%;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 40px 0 12px;
  outline: none;
}
.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}
.forgot-password-link {
  font-size: 12px;
  color: #ef4444;
  text-decoration: none;
  float: right;
  margin-top: 6px;
  cursor: pointer;
}
.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 16px;
}
.cancel-button {
  height: 40px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.reset-button {
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: #FF4405;
  color: #fff;
  cursor: pointer;
}
.cancel-button:hover {
  background: #fafafa;
}
.modal-footer .cancel-button,
.modal-footer .reset-button,
.modal-footer .delete-button {
  flex: 1;
}
.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.close-button:hover {
  background-color: #f3f4f6;
}
.activities-section-main {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(180deg, #FFEEE7 0%, #FFF9F6 100%);
  overflow: hidden;
}
.activities-decorative-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.5;
}
.activities-path-vector {
  position: absolute;
  left: 39%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: min(1176px, 100vw);
  height: auto;
  max-width: none;
}
.activities-map-pin-icon {
  position: absolute;
  left: 5%;
  bottom: 15%;
  width: 100px;
  height: 100px;
}
.activities-main-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}
.activities-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.activities-main-title {
  color: #1F2937;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.72px;
  margin: 0;
}
.activities-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #6B7280;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
}
.top-attractions-section {
  padding: 60px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.attractions-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}
.attractions-title {
  color: var(--gray-light-mode-800);
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.72px;
  margin: 0;
}
.activities-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #6B7280;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
}
.activities-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 10px;
}
.activity-section-card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.06);
}
.attractions-description {
  color: #535862;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  width: 100%;
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  width: 100%;
  max-width: 1300px;
}
.top-attractions-section .attraction-card {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.06);
}
.activity-section-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
}
.activity-section-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}
.activity-section-image-overlay {
  position: absolute;
  bottom: 0px;
  left: 45%;
  transform: translateX(-50%);
  z-index: 2;
}
.activity-section-location-duration-tags {
  display: flex;
  width: 100%;
  max-width: 320px;
  padding: 8px 15px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
  background: #FF4405;
  color: white;
}
.activity-section-tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 120px;
}
.activity-section-tag-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.activity-section-tag-item span {
  color: #fff;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.activity-section-tag-divider {
  width: 1px;
  height: 20px;
  background: #FFD1C2;
}
.activity-section-card-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3;
}
.activity-section-top-rated-badge {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #FF4405;
}
.activity-section-top-rated-badge span {
  color: #fff;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}
.activity-section-favorite-button {
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.activity-section-favorite-button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.activity-section-favorite-button svg {
  width: 18px;
  height: 18px;
}
.activity-section-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.activity-section-rating-section {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.activity-section-rating-text {
  color: #6B7280;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.activity-section-star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.activity-section-star-rating svg {
  width: 17px;
  height: 18px;
}
.activity-section-activity-title {
  color: #1F2937;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
  width: 100%;
  height: 60px;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.top-attractions-section .card-image-wrapper {
  display: flex;
  width: 90px;
  height: 90px;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}
.top-attractions-section .card-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 8px;
  flex-shrink: 0;
  display: block !important;
  min-height: 90px !important;
  max-height: 90px !important;
}
.top-attractions-section .attraction-card .card-image-wrapper,
.top-attractions-section .attraction-card .card-image,
.mobile-attraction-card .card-image-wrapper,
.mobile-attraction-card .card-image {
  height: 90px !important;
  min-height: 90px !important;
  max-height: 90px !important;
}
.top-attractions-section .card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}
.top-attractions-section .attraction-title {
  color: var(--gray-light-mode-800);
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  width: 100%;
}
.activity-section-divider {
  width: 100%;
  height: 1px;
  background: #D1D5DB;
}
.activity-section-price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.activity-section-price-label {
  color: #6B7280;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.activity-section-price-amount {
  color: #1F2937;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.top-attractions-section .amenities-list {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}
.top-attractions-section .amenities-list span {
  color: var(--gray-light-mode-600);
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.top-attractions-section .amenity-separator {
  color: var(--gray-light-mode-500) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  margin: 0 !important;
}
.top-attractions-section .extra-count {
  color: var(--gray-light-mode-600);
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.mobile-slider-container {
  width: 100%;
}
.mobile-slider-container .slick-slider {
  width: 100%;
}
.mobile-slider-container .slick-list {
  width: 100%;
}
.mobile-slider-container .slick-track {
  display: flex;
  align-items: center;
}
.mobile-attraction-card {
  display: flex !important;
  padding: 16px;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.06);
  width: 100%;
  margin: 0 8px;
}
.mobile-slider-container .slick-dots {
  position: static;
  margin-top: 20px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.mobile-slider-container .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.mobile-slider-container .slick-dots li button::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #FFD6AE;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
  padding: 0;
}
.mobile-slider-container .slick-dots li.slick-active button::before {
  background: #FF4405;
  width: 24px;
  height: 8px;
  border-radius: 4px;
}
.mobile-slider-container .slick-dots li button:hover::before {
  background: #FF4405;
  opacity: 0.7;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #FFD6AE;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: #FF692E;
  width: 24px;
  height: 8px;
  border-radius: 4px;
}
.slider-dot:hover {
  background: #FF692E;
  opacity: 0.7;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 0px;
}
.section-title {
  color: #1f2937;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 8px;
}
.section-subtitle {
  color: #6b7280;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.top-attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.top-attraction-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 280px;
  overflow: hidden;
}
.top-attraction-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex: 1;
}
.top-attraction-card .card-image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #ff4405;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-container p {
  color: #6b7280;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.no-results-icon {
  margin-bottom: 20px;
}
.no-results h3 {
  color: #1f2937;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.no-results p {
  color: #6b7280;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.view-all-button {
  background: transparent;
  border: 1px solid #FF692E;
  color: #FF4405;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.view-all-button:hover {
  background: #FF4405;
  color: white;
  transform: translateY(-1px);
}
.view-all-button.discover-sell-btn {
  border: none;
}
.view-all-button.discover-sell-btn:hover {
  background-color: transparent;
  color: #FF4405;
  transform: none;
}
.filters-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 38;
  padding: 20px;
}
.dropdown-arrow {
  position: static;
  right: 12px;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.filter-input {
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
  background: white;
  transition: border-color 0.2s;
}
.filter-input:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.filter-input:hover {
  border-color: #9CA3AF;
}
.filter-input::placeholder {
  color: #9CA3AF;
}
.login-button {
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #D5D7DA);
  background: var(--White, #FFF);
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}
.discover-title {
  font-size: 36px;
  margin-bottom: 40px;
  margin-top: 60px;
}
@media (max-width: 1440px) {
  .navigation.home-scrolled .navigation-links {
    gap: 1rem;
  }
  .top-attractions-section .attractions-container {
    max-width: 1200px;
  }
  .top-attractions-section .attractions-grid {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .travel-experiences-section {
    padding: 50px 20px;
  }
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
  .top-attractions-section .attractions-title {
    font-size: 32px;
    line-height: 40px;
  }
  .top-attractions-section .attractions-grid {
    gap: 16px;
  }
  .top-attractions-section .attraction-card {
    padding: 14px;
    gap: 16px;
  }
  .top-attractions-section .card-image-wrapper {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
  }
  .top-attractions-section .card-image {
    min-height: 80px;
    max-height: 80px;
  }
  .top-attractions-section .attraction-title {
    font-size: 18px;
    line-height: 26px;
  }
  .top-attractions-section .amenities-list span {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1024px) {
  .search-bar-header {
    width: 140px;
  }
  .search-bar-header .search-input-header {
    text-overflow: ellipsis;
    padding-right: 50px;
  }
  .navigation-links {
    gap: 1rem;
  }
  .navigation-container {
    padding: 0;
  }
  .navigation.home-scrolled .logo-image {
    height: 2rem;
  }
  .app-download-section.navigation-container {
    padding: 0 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .section-content{
    padding-inline: 10px;
  }
  .activity-section-image-overlay {
    left: 50%;
  }
  .form-field {
    gap: 6px;
  }
  .hero-title-blogs {
    font-size: 2.5rem;
  }
  .activities-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .form-subtitle {
    font-size: 14px;
  }
  .form-input,
  .message-textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
  .phone-input-group {
    border-radius: 10px;
  }
  .country-select {
    padding: 12px 10px;
    font-size: 14px;
    min-width: 70px;
  }
  .checkbox-custom {
    width: 20px;
    height: 20px;
  }
  .privacy-text {
    font-size: 13px;
  }
  .submit-help {
    font-size: 12px;
  }
  .footer-content {
    flex-wrap: wrap;
    padding: 40px 0 0 0;
  }
  .footer-content>*:not(:last-child) {
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .footer-section {
    flex: 1;
    min-width: 280px;
  }
  .footer-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0 0.5rem 20px;
  }
  .footer-section-content {
    padding: 1rem 0 1rem 20px;
    animation: slideDown 0.3s ease;
  }
  .about-section {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .activities-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-attractions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .top-attraction-card {
    height: 250px;
  }
}
@media (min-width: 1025px) and (max-width: 1340px) {
  .footer-content {
    padding: 40px 40px 0;
    gap: 20px;
  }
  .footer-content>*:not(:last-child) {
    margin-right: 20px;
  }
  .footer-section {
    flex: 1;
    min-width: 180px;
    gap: 16px;
  }
  .about-section {
    max-width: 280px;
  }
  .footer-title {
    font-size: 18px;
    line-height: 26px;
  }
  .footer-description,
  .contact-item span,
  .footer-links a {
    font-size: 14px;
    line-height: 21px;
  }
  .contact-item {
    gap: 8px;
  }
  .contact-item svg {
    width: 18px;
    height: 18px;
  }
  .footer-links {
    gap: 8px;
  }
  .payment-methods {
    gap: 8px;
  }
  .payment-icon {
    width: 32px;
    height: 22px;
    padding: 3px;
  }
  .footer-bottom-content {
    padding: 24px 40px;
  }
  .copyright,
  .terms {
    font-size: 14px;
    line-height: 20px;
  }
  .social-link {
    width: 22px;
    height: 22px;
  }
  .social-link svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 991px) and (max-width: 1024px) {
  .activities-main-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-content {
    flex-wrap: nowrap;
  }
  .footer-section {
    flex: 1;
    min-width: unset;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .featured-image img {
    height: 400px;
  }
  .medium-image img,
  .small-image img {
    height: 200px;
  }
}
@media (min-width: 769px) {
  .mobile-slider-container {
    display: none;
  }
  .top-attractions-section .attractions-grid {
    display: grid;
  }
}
@media (max-width: 768px) {
  .app-download-section.navigation-container {
    padding: 0 1rem !important;
  }
  .activity-section-image-overlay {
    position: absolute;
    bottom: 0px;
    left: 45%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .search-dropdown {
    margin-top: 4px;
    max-height: 300px;
  }
  .dropdown-section-header {
    font-size: 13px;
    padding: 0 12px 6px;
  }
  .dropdown-item {
    padding: 6px 12px;
    gap: 8px;
  }
  .dropdown-item-text {
    font-size: 13px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.75rem;
  }
  .social-media-icons {
    gap: 0.5rem;
  }
  .social-icon svg {
    width: 16px;
    height: 16px;
  }
  .city-selector-button {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  .welcome-message {
    margin: 1rem;
    margin-top: -1rem;
    padding: 1rem;
  }
  .welcome-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .welcome-content h2 {
    font-size: 1.25rem;
  }
  .user-menu {
    gap: 0.5rem;
  }
  .user-profile {
    gap: 0.5rem;
    padding: 0.25rem;
  }
  .user-avatar {
    width: 32px;
    height: 32px;
  }
  .avatar-initials {
    font-size: 0.875rem;
  }
  .user-name {
    font-size: 0.75rem;
  }
  .user-email {
    font-size: 0.625rem;
  }
  .wishlist-icon {
    padding: 0.25rem;
  }
  .wishlist-heart {
    font-size: 1.25rem;
  }
  .user-menu-dropdown {
    min-width: 200px;
    right: -10px;
  }
  .dropdown-item {
    padding: 10px 14px;
    gap: 10px;
  }
  .dropdown-item span {
    font-size: 13px;
  }
  .dropdown-icon {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  .section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .section-header h2 {
    text-align: center;
  }
  .nav-item {
    margin-bottom: 8px;
  }
  .activity-card {
    max-width: 100%;
  }
  .show-more-section {
    flex-direction: column;
    gap: 16px;
  }
  .divider-line {
    width: 100%;
    max-width: none;
  }
  .mobile-menu-button,
  .mobile-search-button {
    display: block;
  }
  .mobile-sidebar-overlay {
    display: block;
  }
  .mobile-sidebar-overlay.show {
    display: block;
  }
  .logo-image-mobile {
    display: block;
    height: 2.5rem;
  }
  .navigation-links,
  .auth-buttons,
  .search-bar-header {
    display: none;
  }
  .navigation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    overflow: visible;
  }
  .logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .logo-image {
    display: none;
  }
  .mobile-sidebar {
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
  .top-header {
    display: none;
  }
  .navigation {
    top: 0 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(4px) !important;
    border-bottom: 1px solid var(--color-border) !important;
    padding-top: 0 !important;
    overflow: visible !important;
  }
  .navigation.home-top-visible {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(4px) !important;
    border-bottom: 1px solid var(--color-border) !important;
    padding-top: 0 !important;
  }
  .navigation.home-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(4px) !important;
    border-bottom: 1px solid var(--color-border) !important;
    padding-top: 0 !important;
  }
  .navigation-container {
    max-width: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .hero-content-blogs {
    padding: 0 16px;
  }
  .hero-title-blogs {
    font-size: 2rem;
  }
  .social-buttons {
    gap: 0.75rem;
  }
  .social-button {
    width: 44px;
    height: 44px;
  }
  .otp-input-container {
    gap: 0.75rem;
  }
  .otp-input {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }
  .travel-experiences-section {
    padding: 40px 16px;
  }
  .main-title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
  }
  .subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .header-section {
    margin-bottom: 32px;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .travel-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .card-content {
    padding: 16px;
  }
  .filters-modal {
    max-width: 95%;
    max-height: 90vh;
  }
  .filter-row {
    flex-direction: column;
    gap: 16px;
  }
  .filter-field {
    width: 100%;
  }
  .filters-modal-header {
    padding: 16px;
  }
  .filters-modal-content {
    padding: 16px;
  }
  .container {
    padding: 0 16px;
  }
  .section-title {
    font-size: 24px;
    line-height: 32px;
  }
  .top-attractions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    padding: 0 10px;
  }
  .top-attraction-card {
    height: 220px;
  }
  .footer-main {
    padding: 40px 0 0;
  }
  .footer-content {
    flex-direction: column;
    padding: 0;
  }
  .footer-content>*:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0;
  }
  .footer-section {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #374151;
  }
  .footer-section:last-child {
    border-bottom: none;
  }
  .footer-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0 0.5rem 20px;
  }
  .footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: white;
  }
  .footer-arrow {
    color: #E9EAEB;
    transition: transform 0.3s ease;
  }
  .footer-arrow.rotated {
    transform: rotate(180deg);
  }
  .footer-section-content {
    padding: 0 0 1rem 20px;
    animation: slideDown 0.3s ease;
    margin-top: -15px;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .footer-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: #E9EAEB;
    line-height: 1.5;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #E9EAEB;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    font-size: 0.875rem;
    color: #E9EAEB;
    text-decoration: none;
    padding: 0.25rem 0;
  }
  .footer-links a:hover {
    color: white;
  }
  .payment-section {
    padding-left: 20px;
    margin-top: 0px;
  }
  .payment-methods {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
  }
  .payment-icon {
    width: 40px;
    height: 30px;
  }
  .about-section {
    width: 100%;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px;
    text-align: center;
  }
  .footer-main {
    padding: 40px 0 30px;
  }
  .footer-bottom-left {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .social-media {
    justify-content: center;
  }
  .payment-methods {
    justify-content: center;
  }
  .activities-main-header {
    gap: 1rem;
    text-align: center;
  }
  .view-all-button {
    align-self: center;
  }
  .featured-image img {
    height: 300px;
  }
  .center-column,
  .right-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .activity-title {
    font-size: 22px;
  }
  .top-attractions-section .attractions-title {
    font-size: 28px;
    line-height: 36px;
  }
  .top-attractions-section .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .top-attractions-section .attraction-card {
    padding: 12px;
    gap: 12px;
    min-height: 100px;
  }
  .top-attractions-section .card-image-wrapper {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 8px;
  }
  .top-attractions-section .card-image {
    min-height: 70px;
    max-height: 70px;
  }
  .top-attractions-section .attraction-title {
    font-size: 16px;
    line-height: 24px;
  }
  .top-attractions-section .amenities-list span {
    font-size: 12px;
    line-height: 18px;
  }
  .top-attractions-section .amenity-separator {
    font-size: 12px !important;
    line-height: 18px !important;
  }
  .top-attractions-section .attractions-grid {
    display: none;
  }
  .mobile-slider-container {
    display: block;
  }
}
@media (max-width: 767px) {
  .search-bar-header {
    display: none;
  }
}
@media (max-width: 640px) {
  .form-title {
    font-size: 22px;
  }
  .form-subtitle {
    font-size: 13px;
  }
  .form-input,
  .message-textarea {
    padding: 10px 12px;
  }
  .country-select {
    padding: 10px 8px;
    min-width: 60px;
    font-size: 13px;
  }
  .checkbox-custom {
    width: 20px;
    height: 20px;
  }
  .privacy-text {
    font-size: 12px;
  }
  .activities-main-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .discover-title {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .activities-main-title {
    font-size: 18px;
  }
  .attractions-container {
    gap: 10px;
  }
  .activity-section-price-amount,
  .activity-section-activity-title {
    font-size: 16px;
  }
  .price {
    font-size: 16px;
    line-height: 24px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .user-menu {
    gap: 0.25rem;
  }
  .user-profile {
    gap: 0.25rem;
    padding: 0.125rem;
  }
  .user-avatar {
    width: 28px;
    height: 28px;
  }
  .avatar-initials {
    font-size: 0.75rem;
  }
  .user-name {
    font-size: 0.625rem;
  }
  .user-email {
    font-size: 0.5rem;
  }
  .wishlist-icon {
    padding: 0.125rem;
  }
  .wishlist-heart {
    font-size: 1rem;
  }
  .user-menu-dropdown {
    min-width: 180px;
    right: -15px;
  }
  .dropdown-item {
    padding: 8px 12px;
    gap: 8px;
  }
  .dropdown-item span {
    font-size: 12px;
  }
  .dropdown-icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
  .card-content {
    padding: 8px 12px;
  }
  .activity-title {
    font-size: 14px;
    line-height: 20px;
  }
  .location span {
    font-size: 16px;
    line-height: 20px;
  }
  .controls-left,
  .controls-right {
    gap: 8px;
  }
  .controls-right .control-button {
    padding: 10px 14px !important;
    font-size: 14px !important;
  }
  .category-select {
    font-size: 14px;
    padding: 10px 12px !important;
  }
  .results-count,
  .results-category {
    font-size: 14px;
  }
  .hero-content-blogs {
    padding: 0 12px;
  }
  .hero-title-blogs {
    font-size: 1.5rem;
  }
  .breadcrumb-separator {
    margin: 0 0.25rem;
  }
  .otp-input-container {
    gap: 0.5rem;
  }
  .otp-input {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
  .travel-experiences-section {
    padding: 32px 12px;
  }
  .main-title {
    font-size: 18px;
    line-height: 28px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .travel-card {
    max-width: 100%;
  }
  .footer-main {
    padding: 30px 0 0;
  }
  .footer-content>*:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0px;
  }
  .footer-title {
    font-size: 16px;
    line-height: 24px;
  }
  .payment-section .footer-title {
    font-size: 20px;
  }
  .footer-description,
  .contact-item span,
  .footer-links a {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-item svg {
    width: 18px;
    height: 18px;
  }
  .footer-bottom-content {
    padding: 16px 12px;
    gap: 16px;
  }
  .footer-main {
    padding: 30px 0 20px;
  }
  .copyright,
  .terms {
    font-size: 14px;
    line-height: 20px;
  }
  .social-link {
    width: 20px;
    height: 20px;
  }
  .social-link svg {
    width: 20px;
    height: 20px;
  }
  .payment-icon {
    width: 30px;
    height: 20px;
  }
  .activity-title {
    font-size: 20px;
    line-height: 1.3;
  }
  .featured-image img {
    height: 200px;
  }
  .center-column,
  .right-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .medium-image img,
  .small-image img {
    height: 150px;
  }
  .activity-card {
    margin: 0;
  }
  .price-unit {
    font-size: 14px;
  }
  .open-today {
    font-size: 14px;
  }
  .feature-title {
    font-size: 14px;
  }
  .feature-description {
    font-size: 13px;
    line-height: 1.5;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
  }
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .top-attractions-section .attractions-title {
    font-size: 24px;
    line-height: 32px;
  }
  .top-attractions-section .attractions-description {
    font-size: 14px;
    line-height: 20px;
  }
  .mobile-attraction-card {
    padding: 12px;
    gap: 16px;
  }
  .top-attractions-section .card-image-wrapper {
    width: 60px;
    height: 60px;
  }
  .top-attractions-section .attraction-title {
    font-size: 14px;
    line-height: 20px;
  }
  .top-attractions-section .amenities-list {
    gap: 6px;
  }
  .top-attractions-section .amenities-list span {
    font-size: 11px;
    line-height: 16px;
  }
  .top-attractions-section .amenity-separator {
    font-size: 11px !important;
    line-height: 16px !important;
  }
  .slider-dot {
    width: 6px;
    height: 6px;
  }
  .slider-dot.active {
    width: 20px;
    height: 6px;
  }
}
@media (max-width: 375px) {
  .activity-section-tag-item {
    min-width: 110px;
  }
}
@media (max-width: 360px) {
  .footer-content>*:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .footer-bottom-content {
    padding: 12px 8px;
  }
  .footer-main {
    padding: 20px 0 16px;
  }
  .footer-bottom-left {
    gap: 8px;
  }
  .social-media {
    gap: 16px;
  }
  .payment-methods {
    gap: 8px;
  }
}
@media (max-width: 320px) {
  .activity-section-image-overlay {
    left: 50%;
  }
  .activity-section-image-overlay .activity-section-location-duration-tags {
    max-width: 225px;
    padding: 5px;
  }
  .activities-main-title {
    font-size: 16px;
  }
}

/*# sourceMappingURL=safer.ac345c75.css.map*/