/* ─── SHARED VARIABLES & RESETS ─── */
:root {
  --navy: #003f72;
  --navy-dark: #002a4e;
  --navy-light: #0a5a9e;
  --vermilion: #c43c2c;
  --vermilion-dark: #a0301f;
  --vermilion-light: #f05454;
  --gold: #eea635;
  --gold-light: #ffd180;
  --text-dark: #1a2332;
  --text-body: #5a6577;
  --text-light: #8a93a6;
  --bg-white: #ffffff;
  --bg-light: #f7f8fa;
  --bg-warm: #fef9f5;
  --border: #e8ecf1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 22px; color: var(--navy);
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-body);
  transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--vermilion); }
.nav-links a.active { color: var(--vermilion); font-weight: 600; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--vermilion); color: white;
  padding: 10px 24px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--vermilion-dark); transform: translateY(-1px); }
.nav-mobile-toggle {
  display: none; background: none; border: none;
  font-size: 28px; color: var(--navy); cursor: pointer;
}

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

/* ─── COUNTRY HERO ─── */
.country-hero {
  position: relative; padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}
.country-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(238,166,53,0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(196,60,44,0.1) 0%, transparent 50%);
}
.country-hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 520px;
  gap: 48px; align-items: center;
}
.country-hero-text { color: white; }
.country-hero .breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.country-hero .breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.country-hero .breadcrumb a:hover { color: white; }
.country-hero .breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 8px; }
.country-hero .flag { font-size: 56px; margin-bottom: 16px; }
.country-hero h1 {
  font-size: 44px; font-weight: 800; color: white;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.country-hero h1 em { font-style: normal; color: var(--gold); }
.country-hero .hero-desc {
  font-size: 18px; line-height: 1.8;
  color: rgba(255,255,255,0.8); margin-bottom: 24px;
  max-width: 580px;
}
.country-hero .hero-stats { display: flex; gap: 32px; margin-top: 32px; }
.hero-stat-box {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 16px 20px; text-align: center; min-width: 110px;
}
.hero-stat-box .stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--gold);
}
.hero-stat-box .stat-label {
  font-size: 12px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}
.country-hero .hero-chat-frame {
  width: 100%; height: 560px;
  border: none; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  background: white;
}

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-label {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--vermilion); margin-bottom: 12px;
}
.section-title { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-body); }

/* ─── SERVICE COMPARISON TABLE ─── */
.comparison-table {
  width: 100%; border-collapse: collapse;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.comparison-table thead { background: var(--navy); color: white; }
.comparison-table th {
  padding: 16px 20px; text-align: left;
  font-weight: 600; font-size: 14px; letter-spacing: 0.5px;
}
.comparison-table tbody tr { border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:nth-child(even) { background: var(--bg-light); }
.comparison-table tbody tr:hover { background: var(--bg-warm); }
.comparison-table td {
  padding: 14px 20px; font-size: 14px; vertical-align: top;
}
.comparison-table td:first-child { font-weight: 600; color: var(--text-dark); }
.table-badge {
  display: inline-block; padding: 2px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-express { background: #fce4ec; color: var(--vermilion); }
.badge-epacket { background: #e3f2fd; color: var(--navy); }
.badge-economy { background: #e8f5e9; color: #2e7d32; }

/* ─── INFO CARDS ─── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.info-card h3 {
  font-size: 18px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.info-card h3 .material-symbols-outlined { color: var(--vermilion); font-size: 22px; }
.info-card ul { list-style: none; padding: 0; }
.info-card li {
  padding: 6px 0; font-size: 14px; display: flex; align-items: flex-start; gap: 8px;
}
.info-card li .material-symbols-outlined {
  font-size: 16px; margin-top: 3px; flex-shrink: 0;
}
.info-card li .material-symbols-outlined.green { color: #2e7d32; }
.info-card li .material-symbols-outlined.red { color: var(--vermilion); }
.info-card li .material-symbols-outlined.amber { color: var(--gold); }

/* ─── CUSTOMS SECTION ─── */
.customs-alert {
  background: var(--bg-warm); border: 1px solid #f0d0a0;
  border-radius: 12px; padding: 24px; margin-top: 24px;
}
.customs-alert h4 {
  font-size: 16px; color: var(--vermilion);
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.customs-alert p { font-size: 14px; color: var(--text-body); }

/* ─── FAQ SECTION ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 12px; overflow: hidden;
  background: white;
}
.faq-question {
  width: 100%; padding: 18px 24px;
  background: none; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  text-align: left;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question .material-symbols-outlined {
  font-size: 20px; transition: transform 0.3s;
  color: var(--text-light);
}
.faq-item.open .faq-question .material-symbols-outlined { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 18px; }
.faq-answer p { font-size: 14px; line-height: 1.8; }

/* ─── CONTENT BLOCK ─── */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 {
  font-size: 28px; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--border);
}
.content-block h3 { font-size: 20px; margin: 24px 0 12px; }
.content-block p { margin-bottom: 16px; font-size: 15px; }
.content-block ul {
  list-style: none; padding: 0; margin-bottom: 16px;
}
.content-block li {
  padding: 6px 0; font-size: 15px;
  display: flex; align-items: flex-start; gap: 8px;
}
.content-block li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--vermilion); border-radius: 50%;
  flex-shrink: 0; margin-top: 9px;
}

/* ─── RELATED DESTINATIONS ─── */
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.related-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: white;
  border: 1px solid var(--border); border-radius: 10px;
  transition: all 0.2s;
}
.related-card:hover {
  border-color: var(--vermilion);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.related-card .flag { font-size: 28px; }
.related-card .name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.related-card .time { font-size: 12px; color: var(--text-light); }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--vermilion) 0%, var(--vermilion-dark) 100%);
  padding: 60px 0; text-align: center; color: white;
}
.cta-section h2 { color: white; font-size: 32px; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 24px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--vermilion);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.6; }
.footer h4 { color: white; font-size: 15px; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-contact .material-symbols-outlined { font-size: 18px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center; font-size: 13px;
}

/* ─── FADE ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .country-hero { padding: 100px 0 48px; }
  .country-hero-content { grid-template-columns: 1fr; gap: 32px; }
  .country-hero h1 { font-size: 32px; }
  .country-hero .hero-stats { flex-wrap: wrap; gap: 12px; }
  .hero-stat-box { min-width: 90px; padding: 12px 14px; }
  .hero-stat-box .stat-value { font-size: 22px; }
  .country-hero .hero-chat-frame { height: calc(100dvh - 160px); min-height: 480px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 26px; }
  .info-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section h2 { font-size: 24px; }
}
