@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --teal-primary: #00a8b5;
  --teal-hover: #00929d;
  --teal-active: #007e88;
  --teal-light: #e6f9fa;
  --teal-border: #b2ecf0;
  --teal-bg: #f0fbfc;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-900);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--slate-900);
}

.text-teal { color: var(--teal-primary) !important; }
.bg-teal { background-color: var(--teal-primary) !important; }
.bg-teal-light { background-color: var(--teal-light) !important; }
.border-teal { border-color: var(--teal-border) !important; }

/* Custom Badge */
.badge-pill-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--teal-light);
  color: var(--teal-primary);
  border: 1px solid var(--teal-border);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Custom Buttons */
.btn-teal {
  background-color: var(--teal-primary);
  color: #ffffff;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.625rem 1.25rem;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px 0 rgba(0, 168, 181, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-teal:hover {
  background-color: var(--teal-hover);
  color: #ffffff;
  box-shadow: 0 6px 20px 0 rgba(0, 168, 181, 0.4);
  transform: translateY(-1px);
}

.btn-teal:active {
  background-color: var(--teal-active);
  transform: scale(0.98);
}

.btn-outline-custom {
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background-color: var(--slate-50);
  border-color: var(--slate-300);
  color: var(--slate-900);
}

/* Slider / Carousel Navigation Arrows */
.slider-control-btn {
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  width: 2.35rem;
  height: 2.35rem;
  min-width: 2.35rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.slider-control-btn:hover {
  background-color: var(--slate-50);
  border-color: var(--slate-300);
  color: var(--teal-primary);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.08);
}

.slider-control-btn:active {
  transform: scale(0.96);
  background-color: var(--slate-100);
}

.slider-control-btn i,
.slider-control-btn svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.25;
}

/* Reassurance Guarantee Banner & Responsive Button */
.reassurance-banner {
  background-color: #f0fbfc;
  border: 1px solid #b2ecf0 !important;
  border-radius: 1rem;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.reassurance-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.reassurance-btn {
  white-space: nowrap;
  flex-shrink: 0;
  width: auto;
  min-width: 170px;
  font-size: 0.9375rem;
}

@media (max-width: 767.98px) {
  .reassurance-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 1rem;
  }
  .reassurance-content {
    text-align: center;
    flex-direction: column;
  }
  .reassurance-btn {
    width: 100%;
    min-width: 100%;
  }
}

/* White Navbar */
.navbar-custom {
  background-color: #ffffff;
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

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

.brand-icon {
  width: 2.15rem;
  height: 2.15rem;
  background-color: var(--teal-primary);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 168, 181, 0.35);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--slate-900);
}

.nav-link-custom {
  color: var(--slate-600) !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem !important;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link-custom:hover {
  color: var(--teal-primary) !important;
}

/* Currency Select */
.currency-select {
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.625rem;
  padding: 0.35rem 0.625rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.currency-select:focus {
  border-color: var(--teal-primary);
}

/* Hero Section (White Background Theme matching image.png) */
.hero-section {
  background-color: #ffffff;
  color: var(--slate-900);
  padding: 4.5rem 0 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle topographic map background watermark */
.hero-topo-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 50% 30%, rgba(0, 168, 181, 0.035) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10 Q 50 40 90 10 Q 40 70 10 90 Q 70 50 90 90' fill='none' stroke='%23000000' stroke-width='0.4' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.35rem, 4.6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--slate-900);
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--slate-500);
  font-weight: 500;
  line-height: 1.6;
}

/* Hero Floating Checker Card */
.hero-checker-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem 2rem 2rem 2rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.08), 0 0 1px 1px rgba(15, 23, 42, 0.02);
}

.checker-fields-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 767.98px) {
  .checker-fields-container {
    flex-direction: column;
    align-items: stretch;
  }
}

.checker-field-col {
  flex: 1;
  min-width: 0;
}

.checker-field-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--slate-500);
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  display: block;
}

.checker-swap-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.4rem;
}

@media (max-width: 767.98px) {
  .checker-swap-col {
    padding-top: 0;
    margin: -0.25rem 0;
  }
}

.swap-countries-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  color: var(--slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.swap-countries-btn:hover {
  background: var(--slate-200);
  color: var(--slate-900);
  transform: scale(1.06);
}

.checker-input-btn {
  width: 100%;
  height: 52px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: var(--slate-900);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.checker-input-btn:hover {
  border-color: var(--slate-300);
  background: #ffffff;
}

.checker-input-btn:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 181, 0.15);
  background: #ffffff;
}

.country-select-wrapper {
  position: relative;
}

.country-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(15, 23, 42, 0.05);
  z-index: 1000;
  display: none;
  max-height: 380px;
  overflow: hidden;
  animation: acFadeSlideIn 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.country-dropdown-menu.autocomplete-dropdown {
  min-width: 320px;
}

@media (min-width: 576px) {
  .country-dropdown-menu.autocomplete-dropdown {
    min-width: 380px;
  }
}

.country-dropdown-menu.show {
  display: block;
}

.country-options-list {
  max-height: 275px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.country-options-list::-webkit-scrollbar {
  width: 6px;
}

.country-options-list::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 9999px;
}

.country-option-item {
  padding: 0.65rem 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-700);
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  border-left: 3px solid transparent;
  transition: all 0.12s ease-in-out;
}

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

.country-option-item:hover,
.country-option-item.active,
.country-option-item.selected {
  background: #f0fdfa !important;
  color: var(--slate-900);
  border-left: 3px solid var(--teal-primary) !important;
}

.country-option-item.active .country-code-pill {
  background: #00a8b5;
  color: #ffffff;
}

.country-code-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: var(--slate-100);
  color: var(--slate-600);
  letter-spacing: 0.04em;
  transition: all 0.12s;
}

.ac-highlight {
  background-color: #ccfbf1;
  color: #007e88;
  font-weight: 700;
  padding: 0.05rem 0.2rem;
  border-radius: 4px;
}

.ac-section-header {
  padding: 0.4rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  background: #f8fafc;
  text-transform: uppercase;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 5;
}

.ac-tag-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.ac-alias-hint {
  font-size: 0.72rem;
  color: var(--teal-primary);
  font-weight: 500;
  margin-left: 0.35rem;
}

.ac-empty-state {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--slate-500);
}

.hero-action-btn {
  height: 52px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 0.5rem;
}

/* Popular Destinations Pill Row */
.popular-destinations-row {
  margin-top: 1rem;
}

.popular-label {
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-weight: 600;
}

.popular-pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--slate-700);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.popular-pill-btn:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  background: var(--teal-light);
}

.popular-pill-btn.active {
  background-color: var(--teal-primary);
  color: #ffffff;
  border-color: var(--teal-primary);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 168, 181, 0.3);
}

/* Trust Bar */
.trust-bar-section {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 1.25rem 0;
}

.press-logo-item {
  color: var(--slate-400);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Trending Destinations */
.destination-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.1);
  border-color: var(--teal-border);
}

.destination-card-img-wrapper {
  position: relative;
  height: 160px;
  overflow: hidden;
  background-color: var(--slate-100);
}

.destination-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-card-img {
  transform: scale(1.05);
}

.destination-type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.destination-fee-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: #ffffff;
  color: var(--slate-900);
  padding: 0.25rem 0.625rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Feature Steps */
.step-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.2s;
}

.step-card:hover {
  border-color: var(--teal-primary);
  box-shadow: 0 12px 24px -6px rgba(0, 168, 181, 0.1);
}

.step-number-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

/* Comparison Table */
.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.comparison-table th, 
.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--slate-200);
}

.comparison-table thead th {
  font-weight: 800;
  font-size: 0.9375rem;
}

.table-highlight-col {
  background-color: var(--teal-bg);
  border-left: 2px solid var(--teal-primary);
  border-right: 2px solid var(--teal-primary);
}

/* Modals & Backdrop */
.modal-custom-backdrop,
.modal-backdrop-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-custom-backdrop.show,
.modal-backdrop-custom.show {
  display: flex !important;
}

.modal-custom-dialog,
.modal-content-custom {
  background: #ffffff;
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10000;
  margin: auto;
}

/* Multi-Step Application Drawer */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10050;
  display: none !important;
  justify-content: flex-end;
}

.drawer-backdrop.show {
  display: flex !important;
}

.drawer-container,
.drawer-content {
  background: #ffffff;
  width: 100%;
  max-width: 580px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 35px rgba(0, 0, 0, 0.2);
  animation: slideInDrawer 0.25s ease-out;
  position: relative;
  z-index: 10051;
}

@keyframes slideInDrawer {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.speed-option-card {
  border: 1.5px solid var(--slate-200);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  background: #ffffff;
}

.speed-option-card:hover {
  border-color: var(--teal-primary);
  background: var(--slate-50);
}

.speed-option-card.active {
  border-color: var(--teal-primary);
  background: var(--teal-light);
}

/* Upload Drop Box */
.upload-drop-zone {
  border: 2px dashed var(--slate-300);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  background: var(--slate-50);
  cursor: pointer;
  transition: all 0.2s;
}

.upload-drop-zone:hover {
  border-color: var(--teal-primary);
  background: var(--teal-bg);
}

/* Footer */
.footer-custom {
  background-color: #ffffff;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-600);
  padding: 4rem 0 2rem 0;
}

.footer-link {
  color: var(--slate-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--teal-primary);
}

/* Rejection Insights Cards */
.rejection-card {
  transition: all 0.25s ease;
}

.rejection-card:hover {
  transform: translateY(-3px);
  border-color: var(--slate-300) !important;
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.08) !important;
}

/* FAQ Accordion */
.faq-item {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  margin-bottom: 0.875rem;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
  border-color: var(--slate-300);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.faq-item.open {
  border-color: var(--teal-primary);
  box-shadow: 0 8px 24px -6px rgba(0, 168, 181, 0.15);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  transition: color 0.15s ease;
}

.faq-question:hover {
  color: var(--teal-primary);
}

.faq-icon-wrapper {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon-wrapper {
  background-color: var(--teal-light);
  color: var(--teal-primary);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.35rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate-600);
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Trending Destinations Section (Pixel-matched to React component)
   ========================================================================== */

.dest-filter-tabs-wrapper {
  overflow-x: auto;
  padding-bottom: 2px;
}

.dest-filter-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #ffffff;
  padding: 0.3125rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.dest-filter-tab {
  padding: 0.4rem 0.95rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #475569;
  user-select: none;
  line-height: 1.4;
}

.dest-filter-tab:hover {
  color: #0f172a;
  background-color: #f8fafc;
}

.dest-filter-tab.active {
  background-color: var(--teal-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 1px 3px rgba(0, 168, 181, 0.35);
  font-weight: 700;
}

/* Destination Card v2 (Matches React TrendingDestinations) */
.dest-card-v2 {
  background: #ffffff;
  border-radius: 1.5rem; /* 24px */
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.dest-card-v2:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12);
}

.dest-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #0f172a;
}

.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card-v2:hover .dest-card-img {
  transform: scale(1.06);
}

.dest-card-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.dest-badge-speed-wrap {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}

.dest-badge-speed {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dest-badge-tag-wrap {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.dest-badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: var(--teal-primary);
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.dest-card-bottom-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.875rem;
  right: 0.875rem;
  z-index: 2;
  color: #ffffff;
}

.dest-card-country-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dest-card-country-code {
  font-size: 1.35rem;
  font-weight: 800;
  opacity: 0.95;
  letter-spacing: -0.02em;
  font-family: inherit;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.dest-card-country-texts {
  min-width: 0;
}

.dest-card-country-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.dest-card-type-name {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0.15rem 0 0 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dest-card-body-v2 {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 0.75rem;
}

.dest-card-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #475569;
  padding-top: 0.15rem;
}

.dest-stay-text strong {
  color: #0f172a;
  font-weight: 700;
}

.dest-dot-sep {
  color: #cbd5e1;
}

.dest-approval-rate {
  color: var(--teal-primary);
  font-weight: 700;
}

.dest-card-action-row {
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-price-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.dest-price-amount {
  font-size: 1.1875rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.btn-dest-apply-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 0.75rem;
  background-color: var(--teal-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 168, 181, 0.2);
  transition: all 0.2s ease;
}

.btn-dest-apply-v2:hover {
  background-color: var(--teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 168, 181, 0.3);
}

.btn-dest-apply-v2:active {
  background-color: #007e88;
  transform: translateY(0);
}

.btn-dest-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.38rem 0.75rem;
  border-radius: 0.75rem;
  background-color: #f1f5f9;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-dest-guide-link:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}


