
/* ==================== TABS OVERRIDE FOR TRAVEL PAGES ==================== */
/* Ensure tabs match main site exactly */

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  background: #F3F4F6;
  padding: 6px;
  border-radius: 14px;
  overflow-x: auto;
  position: relative;
}

.tabs .tab-btn {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  background: transparent;
  color: #6B7280;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs .tab-btn:hover:not(.active) {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.15));
  color: #16A34A;
}

.tabs .tab-btn.tab-compare:hover:not(.active) {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(202, 138, 4, 0.15));
  color: #CA8A04;
}

.tabs .tab-btn.active {
  background: white;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tabs .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, #22C55E, #16A34A);
  border-radius: 3px 3px 0 0;
}
/* ==================== TRAVEL MONEY PAGES CSS ==================== */
/* Clean layout matching main site */

/* ==================== PAGE HEADER ==================== */

.page-header {
  text-align: center;
  padding: 30px 20px 20px;
}

.page-header .badge,
.page-header .travel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 auto 16px;
}

.page-header .country-flag {
  font-size: 16px;
}

.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 10px;
  line-height: 1.3;
}

.page-subtitle {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 600px;
}

/* ==================== QUICK FACTS BAR ==================== */

.quick-facts {
  background: #F0FDF4;
  border-top: 1px solid #D1FAE5;
  border-bottom: 1px solid #D1FAE5;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.fact-item {
  text-align: center;
  min-width: 120px;
  max-width: 160px;
}

.fact-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.fact-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.fact-value {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.3;
}

/* ==================== RATE BOX ==================== */

.rate-box {
  background: white;
  border: 2px solid #22C55E;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  margin: 0 auto 30px;
  max-width: 260px;
}

.rate-box-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rate-flag {
  font-size: 22px;
}

.rate-arrow {
  color: #22C55E;
  font-size: 16px;
  font-weight: bold;
}

.rate-box-content .rate-label {
  font-size: 12px;
  color: #6B7280;
  margin: 0 0 2px;
}

.rate-box-content .rate-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

/* ==================== MAIN CONTENT ==================== */

.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* ==================== CONTENT SECTIONS ==================== */

.content-section {
  margin-bottom: 35px;
}

.content-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #22C55E;
}

.content-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin: 20px 0 8px;
}

.content-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #4B5563;
  margin: 0 0 12px;
}

.content-section ul,
.content-section ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.content-section li {
  font-size: 14px;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 4px;
}

.content-section li::marker {
  color: #22C55E;
}

.content-section strong {
  color: #1F2937;
}

/* ==================== PROVIDER COMPARISON ==================== */

.provider-comparison {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 35px;
}

.provider-comparison h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 4px;
  padding: 0;
  border: none;
}

.provider-comparison > p {
  font-size: 13px;
  color: #6B7280;
  margin: 0 0 20px;
}

.provider-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.provider-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  position: relative;
}

.provider-card:hover {
  border-color: #22C55E;
}

.provider-card.recommended {
  border-color: #22C55E;
  margin-top: 8px;
}

.provider-card .recommended-badge {
  position: absolute;
  top: -10px;
  left: 14px;
  background: #22C55E;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
}

.provider-card .provider-badge {
  position: absolute;
  top: -10px;
  left: 14px;
  background: #3B82F6;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
}

.provider-card .provider-badge.warning {
  background: #EF4444;
}

.provider-card.avoid {
  background: #FEF2F2;
  border-color: #FCA5A5;
  margin-top: 8px;
}

.provider-card .provider-logo {
  font-size: 24px;
  width: 36px;
  text-align: center;
}

.provider-card .provider-info {
  flex: 1;
}

.provider-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 2px;
}

.provider-card .provider-desc {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
}

.provider-card .provider-cta {
  padding: 6px 12px;
  background: #22C55E;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.provider-card .provider-cta:hover {
  background: #16A34A;
}

.provider-card .provider-note {
  font-size: 11px;
  color: #9CA3AF;
}

/* ==================== FAQ SECTION - CLEAN LIST STYLE ==================== */

.faq-section {
  margin-bottom: 35px;
}

.faq-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #22C55E;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
  padding: 0;
}

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

.faq-question {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #22C55E;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: #22C55E;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 14px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6B7280;
}

/* ==================== RELATED PAGES ==================== */

.related-pages {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.related-pages h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 12px;
}

.related-pages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-pages li a {
  display: inline-block;
  padding: 6px 12px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-size: 13px;
}

.related-pages li a:hover {
  border-color: #22C55E;
  color: #22C55E;
}

/* ==================== FOOTER ==================== */

.footer {
  border-top: 1px solid #E5E7EB;
  margin-top: 40px;
  padding: 30px 20px;
  text-align: center;
}

.footer-main {
  margin-bottom: 20px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.footer-main p {
  font-size: 13px;
  color: #6B7280;
  margin: 6px 0;
  line-height: 1.5;
}

.footer-disclaimer {
  font-style: italic;
}

.live-indicator {
  color: #22C55E;
  font-weight: 600;
}

.footer-contact a {
  color: #22C55E;
  text-decoration: none;
}

.footer-links,
.footer-legal {
  margin: 12px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  max-width: 750px;
}

.footer-links a,
.footer-legal a {
  color: #374151;
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #22C55E;
}

.footer-sep {
  color: #D1D5DB;
}

.footer-copyright {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #F3F4F6;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright p {
  margin: 4px 0;
  font-size: 11px;
  color: #9CA3AF;
}

.footer-notice {
  margin: 8px auto 0;
  font-size: 10px;
  color: #D1D5DB;
  line-height: 1.4;
}


/* ==================== DUAL RATE DISPLAY ==================== */

.rate-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 4px;
}

.rate-item {
  text-align: center;
}

.rate-item .rate-base {
  font-size: 11px;
  color: #9CA3AF;
  margin-bottom: 2px;
}

.rate-item .rate-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.rate-divider {
  width: 1px;
  background: #E5E7EB;
}

/* ==================== MOBILE ==================== */

@media (max-width: 640px) {
  .page-header h1 {
    font-size: 24px;
  }
  
  .quick-facts {
    gap: 20px;
    padding: 16px;
  }
  
  .fact-item {
    min-width: 100px;
  }
  
  .provider-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ==================== LEGACY SUPPORT ==================== */

.landing-page,
.landing-page.travel-guide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.landing-header {
  text-align: center;
  padding: 30px 20px 20px;
}

.landing-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.landing-sidebar {
  display: none;
}

.cta-box {
  background: #F0FDF4;
  border: 1px solid #D1FAE5;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin: 30px 0;
}

.cta-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: #065F46;
  margin: 0 0 6px;
}

.cta-box p {
  color: #047857;
  margin: 0 0 12px;
  font-size: 13px;
}

.cta-button {
  display: inline-block;
  padding: 8px 20px;
  background: #22C55E;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
}

.cta-button:hover {
  background: #16A34A;
}
