/* Custom CSS variables for SchengenTravel & Medical - Obsidian & Gold Style */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-family: 'Outfit', sans-serif;
  
  /* Color Palette - Obsidian & Gold */
  --bg-primary: #0A0D14;
  --bg-secondary: #111520;
  --card-bg: rgba(18, 23, 37, 0.7);
  --card-border: rgba(212, 175, 55, 0.12);
  --card-border-hover: rgba(212, 175, 55, 0.3);
  
  --gold-metallic: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-solid: #D4AF37;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --gold-hover: #E5C158;
  
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 16px;
  --radius-md: 10px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
}

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

/* Base Layout & Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.8);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  font-weight: 300;
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}

.logo-badge {
  font-size: 11px;
  padding: 2px 8px;
  border: 1px solid var(--gold-solid);
  border-radius: 4px;
  text-transform: uppercase;
  color: var(--gold-solid);
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 8px;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  border-color: var(--gold-solid);
  background: rgba(212, 175, 55, 0.05);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 32px;
  }
}

.hero-info h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-info h1 mark {
  background: none;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-info p {
  color: #D1D5DB; /* Lighter gray for better legibility in dark mode */
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-solid);
  margin-bottom: 24px;
}

.hero-badge-container p {
  margin: 0;
  line-height: 1.2;
}

.hero-badge-container span {
  width: 6px;
  height: 6px;
  background-color: var(--gold-solid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-solid);
  flex-shrink: 0;
}

/* Calculator Widget (Glassmorphism) */
.calculator-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  position: relative;
  transition: var(--transition-smooth);
}

.calculator-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.calculator-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.05);
}

.calc-header-wrapper {
  margin-bottom: 24px;
}

.calc-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-subtext {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

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

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

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

select, input {
  width: 100%;
  background: rgba(10, 13, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
}

select:focus, input:focus {
  border-color: var(--gold-solid);
  background: rgba(10, 13, 20, 0.9);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.calc-btn {
  width: 100%;
  background: var(--gold-metallic);
  color: #0A0D14;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 800; /* Bolder font weight for stronger CRO presence */
  font-size: 17px;  /* Slightly larger for visual proportion */
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

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

/* Result Overlay inside Calculator */
.calc-result {
  display: none;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.4s ease forwards;
}

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

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.result-total {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-solid);
}

.buy-btn {
  width: 100%;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold-solid);
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 16px;
}

.buy-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Section Common Titles */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-wrapper h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-title-wrapper h2 mark {
  background: none;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-wrapper p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Features/Guarantee Section */
.guarantee-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
}

.guarantee-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 36px;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.guarantee-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-metallic);
  opacity: 0;
  transition: var(--transition-smooth);
}

.guarantee-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.guarantee-card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-solid);
  font-size: 20px;
  margin-bottom: 24px;
}

.guarantee-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.guarantee-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Transparency Section */
.transparency-section {
  padding: 100px 0;
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 968px) {
  .transparency-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.transparency-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.transparency-info h2 mark {
  background: none;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.transparency-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 24px;
}

.transparency-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-solid);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Split Comparison Graphic */
.comparison-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(16px);
}

.comp-bar-container {
  margin-bottom: 28px;
}

.comp-label {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}

.comp-bar {
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
}

.comp-fill-broker {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #374151; /* Dark grey */
  z-index: 1;
}

.comp-fill-saas {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%; /* 30% savings */
  background: var(--gold-metallic);
  z-index: 1;
}

.comp-text {
  position: relative;
  z-index: 2;
  color: var(--text-primary);
}

.comp-fill-saas + .comp-text {
  color: #0A0D14;
}

.saving-highlight {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--gold-solid);
}

.comp-footnote {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.4;
  text-align: center;
  font-style: italic;
  margin-bottom: 0;
}

/* Logos & Social Proof Section */
.logos-section {
  padding: 60px 0;
  background: rgba(10, 13, 20, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  text-align: center;
}

.logos-title {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.logos-grid:hover {
  opacity: 0.9;
}

.logo-item {
  height: 32px;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 20px;
  gap: 8px;
}

.logo-item svg {
  fill: currentColor;
  height: 24px;
}

/* Footer & Compliance */
footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: #06080C;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-left p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 400px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .footer-right {
    align-items: flex-start;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold-solid);
}

.compliance-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

/* Modal Popups styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(6, 8, 12, 0.85); /* Black w/ opacity */
  backdrop-filter: blur(8px);
}

.modal-content {
  background-color: var(--bg-secondary);
  margin: 10% auto; /* 10% from the top and centered */
  padding: 40px;
  border: 1px solid var(--card-border);
  width: 90%; /* Could be more or less, depending on screen size */
  max-width: 700px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.close-btn {
  color: var(--text-secondary);
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.close-btn:hover {
  color: var(--gold-solid);
}

.modal-body {
  margin-top: 20px;
  max-height: 400px;
  overflow-y: auto;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  padding-right: 12px;
  text-align: left;
}

/* Custom scrollbar for modal body */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--card-border-hover);
  border-radius: 4px;
}

/* ====================================================================
   STEP 2 & STEP 3 SUCCESS STYLING
   ==================================================================== */

/* Success Section */
.success-section {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.success-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 650px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  animation: fadeIn 0.5s ease-out;
}

.success-card h2 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 24px;
  margin-bottom: 12px;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 30px;
}

/* Success Checkmark Animation */
.success-icon-wrapper {
  display: flex;
  justify-content: center;
}

.checkmark-svg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  stroke: var(--gold-solid);
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--gold-solid);
  animation: fillCheckmark .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s forwards;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke: var(--gold-solid);
  fill: none;
  animation: strokeCheckmark .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheckmark .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes strokeCheckmark {
  100% { stroke-dashoffset: 0; }
}

@keyframes scaleCheckmark {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fillCheckmark {
  100% { box-shadow: inset 0px 0px 0px 36px rgba(212, 175, 55, 0.05); }
}

/* Status Box & Spinner */
.status-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(212, 175, 55, 0.1);
  border-top-color: var(--gold-solid);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#txtLoadingStatus {
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Certificate Mockup Preview */
.certificate-ready-container {
  animation: fadeIn 0.6s ease-out forwards;
}

.cert-mockup {
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid var(--card-border-hover);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.cert-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-metallic);
}

.cert-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.cert-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.cert-subtitle {
  font-size: 11px;
  color: var(--gold-solid);
  font-weight: 600;
  margin-top: 2px;
}

.cert-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cert-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  padding-bottom: 4px;
}

.cert-label {
  color: var(--text-muted);
}

.cert-val {
  color: var(--text-primary);
  font-weight: 600;
}

.cert-footer {
  margin-top: 16px;
  font-size: 10.5px;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

/* Download Button */
.download-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--gold-metallic);
  color: #0A0D14;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  color: #0A0D14;
}

/* Styles for Traveler details input layout helper */
#travelerForm select, #travelerForm input {
  margin-bottom: 4px;
}

/* Custom Searchable Select (Combobox) */
.custom-select-wrapper {
  position: relative;
}

.custom-select-container {
  position: relative;
  width: 100%;
}

.custom-select-container input#originSearch {
  padding-right: 40px; /* Space for the dropdown arrow */
}

.custom-select-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.custom-select-container.open .custom-select-icon {
  transform: translateY(-50%) rotate(180deg);
  color: var(--gold-solid);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  max-height: 220px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  display: none;
  animation: fadeIn 0.2s ease;
}

/* Custom Scrollbar for Dropdown */
.custom-select-dropdown::-webkit-scrollbar {
  width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: var(--card-border-hover);
  border-radius: 4px;
}

.custom-select-item {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.custom-select-item:last-child {
  border-bottom: none;
}

.custom-select-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-hover);
}

.custom-select-item.selected {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-solid);
  font-weight: 600;
}

.custom-select-item .country-code {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}


