/* ========================================
   WORLD RETIRE — Black & Gold Theme
   Live Life Where You Want
   ======================================== */

:root {
  --black: #0a0a0f;
  --black-light: #111118;
  --black-card: #16161e;
  --black-hover: #1e1e28;
  --gold: #d4a843;
  --gold-light: #f0d078;
  --gold-dim: #d4a84330;
  --gold-glow: #d4a84320;
  --white: #f5f0e8;
  --white-pure: #ffffff;
  --text: #e8e4dc;
  --text-dim: #9a9590;
  --text-muted: #666;
  --border: #2a2a35;
  --success: #4ade80;
  --coral: #ff6b6b;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ======= ANNOUNCE BAR ======= */
.announce-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ======= NAV ======= */
.main-nav {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon { font-size: 24px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; letter-spacing: 1px; color: var(--white); }
.gold { color: var(--gold); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 22px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 6px;
}

/* ======= HERO ======= */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.5) 50%, rgba(10,10,15,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white-pure);
  margin-bottom: 20px;
  max-width: 700px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-dim);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ======= SECTION STYLES ======= */
.section { padding: 80px 32px; max-width: 1280px; margin: 0 auto; }
.section-full { padding: 80px 32px; }
.section-dark { background: var(--black-light); }
.section-divider { border-top: 1px solid var(--border); }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white-pure);
  margin-bottom: 12px;
}

.section h2 em { font-style: normal; color: var(--gold); }

.section .section-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ======= DESTINATION CARDS ======= */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.dest-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.dest-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,168,67,0.08);
  color: var(--text);
}

.dest-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-card-img .cost-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.dest-card-body { padding: 20px; }
.dest-card-body h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.dest-card-body .region { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
.dest-card-body p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

.dest-card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.dest-card-footer span { display: flex; align-items: center; gap: 4px; }

/* ======= STATS ROW ======= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 48px 0;
}

.stat-item {
  background: var(--black-card);
  padding: 32px 24px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======= FEATURE CARDS ======= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.feature-card .fc-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ======= CALCULATOR ======= */
.calc-container {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.calc-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-group select,
.calc-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.calc-group select:focus,
.calc-group input:focus {
  border-color: var(--gold);
}

.calc-result {
  background: var(--black);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 28px;
  margin-top: 24px;
  text-align: center;
}

.calc-result .result-amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
}

.calc-result .result-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
}

.calc-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.calc-breakdown .cb-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.cb-item .cb-val { font-size: 18px; font-weight: 700; color: var(--gold-light); }
.cb-item .cb-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ======= VISA TABLE ======= */
.visa-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.visa-table thead { background: var(--black-card); }
.visa-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}

.visa-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.visa-table tbody tr:hover td {
  background: var(--black-hover);
}

.visa-table .visa-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.visa-badge.easy { background: rgba(74,222,128,0.15); color: #4ade80; }
.visa-badge.moderate { background: rgba(251,191,36,0.15); color: #fbbf24; }
.visa-badge.hard { background: rgba(255,107,107,0.15); color: #ff6b6b; }

/* ======= TESTIMONIALS ======= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-card p { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-card .t-author { font-size: 13px; font-weight: 700; color: var(--gold); }
.testimonial-card .t-location { font-size: 12px; color: var(--text-muted); }

/* ======= CTA BANNER ======= */
.cta-banner {
  background: linear-gradient(135deg, var(--gold), #b8922e);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  margin: 48px 0;
  color: var(--black);
}

.cta-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-banner p { font-size: 16px; opacity: 0.8; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

.btn-dark {
  background: var(--black);
  color: var(--gold);
}
.btn-dark:hover {
  background: var(--black-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ======= IMAGE STRIP ======= */
.img-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  height: 300px;
}

.img-strip .strip-img {
  flex: 1;
  min-width: 0;
  background-size: cover;
  background-position: center;
  transition: flex 0.5s ease;
}

.img-strip .strip-img:hover { flex: 2; }

/* ======= FOOTER ======= */
.site-footer {
  background: var(--black);
  position: relative;
}

.footer-wave {
  position: relative;
  margin-top: -2px;
}

.footer-wave svg { display: block; width: 100%; height: 60px; }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ======= PAGE HEADER ======= */
.page-header {
  padding: 80px 32px 48px;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white-pure);
  margin-bottom: 12px;
}

.page-header h1 em { font-style: normal; color: var(--gold); }
.page-header p { font-size: 16px; color: var(--text-dim); max-width: 600px; font-weight: 300; }

/* ======= BREADCRUMBS ======= */
.breadcrumb {
  padding: 16px 32px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

/* ======= GUIDE CARDS ======= */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: var(--text);
}

.guide-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.guide-card-body { padding: 24px; }
.guide-card-body .guide-tag { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.guide-card-body h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.guide-card-body p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--black); border-bottom: 1px solid var(--border); padding: 16px 32px; gap: 12px; }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 36px; }
  .calc-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .img-strip { height: 200px; flex-wrap: wrap; }
  .img-strip .strip-img { min-width: 50%; }
}

/* ======= ANIMATIONS ======= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
