
:root {
  --primary: #123b35;
  --primary-2: #195247;
  --accent: #c4912f;
  --bg: #f5f7f6;
  --text: #1f2937;
  --muted: #5f6b76;
  --white: #ffffff;
  --border: #dde4e1;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.topbar { background: #0c2622; color: #eaf2ef; font-size: 14px; }
.topbar .inner { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; align-items: center; }
.disclaimer-mini { opacity: 0.92; }
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 20px;
}

/* LOGO FIX */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #123b35;
  font-size: 22px;
}

.brand img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* MENU */
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #334155;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

/* CALL BUTTON FIX */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: #123b35;
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nav-cta:hover {
  background: #195247;
  color: #ffffff !important;
}
.btn-secondary { background: var(--white); color: var(--primary); border-color: var(--border); }
.btn:hover, .nav-cta:hover { transform: translateY(-1px); }
.hero, .page-hero { color: white; }
.hero-grid, .page-hero .inner { display: grid; align-items: center; padding: 70px 0 54px; }
.hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 28px; min-height: 640px; }
.page-hero .inner { min-height: 380px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 700; }
h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.08; margin: 18px 0 16px; }
.hero p, .page-hero p { font-size: 18px; max-width: 760px; color: rgba(255,255,255,0.94); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero .btn-secondary { background: rgba(255,255,255,0.95); }
.hero-points { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; font-size: 15px; }
.hero-points span { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15); padding: 8px 12px; border-radius: 999px; }
.hero-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; padding: 26px; backdrop-filter: blur(8px); box-shadow: var(--shadow); }
.hero-card h3 { margin-top: 0; font-size: 24px; }
.hero-card ul { padding-left: 18px; margin: 0 0 18px; }
.hero-card li { margin-bottom: 10px; }
.hero-call { display: block; background: white; color: var(--primary); text-align: center; border-radius: 16px; padding: 16px; font-size: 24px; font-weight: 800; }
.notice { background: #fff8e9; border: 1px solid #efd7a1; border-left: 6px solid var(--accent); padding: 18px 20px; border-radius: 16px; box-shadow: var(--shadow); margin-top: -38px; position: relative; z-index: 2; }
.section { padding: 72px 0; }
.section-title { text-align: center; max-width: 800px; margin: 0 auto 18px; }
.section-title h2 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 10px; color: var(--primary); }
.section-title p { margin: 0; color: var(--muted); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.card, .faq-item, .policy-box, .terms-box, .feature-item, .highlight-panel, .route-card, .step, .contact-item, .info-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.card { overflow: hidden; }
.card-body, .faq-item, .policy-box, .terms-box, .feature-item, .highlight-panel, .route-card, .step, .contact-item, .info-box { padding: 22px; }
.pkg-img { height: 220px; width: 100%; object-fit: cover; }
.tag { display: inline-block; padding: 7px 11px; border-radius: 999px; background: #edf5f1; color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: 0.3px; text-transform: uppercase; }
.price { font-weight: 800; color: var(--primary); font-size: 24px; }
.meta { color: var(--muted); font-size: 14px; }
.feature-list, .contact-list { display: grid; gap: 16px; }
.route-card h3, .faq-item h3, .policy-box h3, .terms-box h3, .info-box h3, .contact-item strong { color: var(--primary); }
.steps { counter-reset: step; }
.step { position: relative; }
.step:before { counter-increment: step; content: counter(step); position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #edf5f1; color: var(--primary); font-weight: 800; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.stat { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 24px; text-align: center; box-shadow: var(--shadow); }
.stat strong { display: block; font-size: 30px; line-height: 1; color: var(--primary); margin-bottom: 8px; }
.filters { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.filter-chip { background: white; border: 1px solid var(--border); color: var(--primary); padding: 10px 16px; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow); }
label { font-weight: 700; color: var(--primary); display: block; margin-bottom: 8px; }
input, select, textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 14px; font: inherit; color: var(--text); background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(18,59,53,0.08); }
textarea { min-height: 150px; resize: vertical; }
.list-clean { margin: 12px 0 0; padding-left: 18px; }
.list-clean li { margin-bottom: 8px; }
.cta-banner { background: linear-gradient(135deg, var(--primary), #1d6153); color: white; border-radius: 28px; padding: 34px; box-shadow: var(--shadow); display: flex; justify-content: space-between; gap: 22px; align-items: center; flex-wrap: wrap; }
.cta-banner h2 { margin: 0 0 8px; }
footer { background: #0f2d28; color: rgba(255,255,255,0.92); padding: 60px 0 100px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 28px; }
.footer-grid h3 { color: white; margin-top: 0; }
.footer-links a { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.88); }
.copyright { margin-top: 24px; text-align:center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 14px; }
.sticky-call { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: rgba(15,45,40,0.98); padding: 10px 14px; box-shadow: 0 -10px 25px rgba(0,0,0,0.16); }
.sticky-call .wrap { width: min(700px, calc(100% - 8px)); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; color: white; }
.sticky-call small { color: rgba(255,255,255,0.8); display: block; }
.sticky-call a { background: var(--accent); color: #172312; font-weight: 800; border-radius: 999px; padding: 14px 18px; white-space: nowrap; }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .split, .footer-grid, .stats { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; }
  .nav-links { width: 100%; justify-content: center; }
  .cta-banner { text-align: center; justify-content: center; }
}
@media (max-width: 680px) {
  .topbar .inner { flex-direction: column; text-align: center; }
  .nav-links { gap: 12px 16px; }
  h1 { font-size: 35px; }
  .hero p, .page-hero p { font-size: 17px; }
  .sticky-call .wrap { grid-template-columns: 1fr; text-align: center; }
  .notice { margin-top: -18px; }
}
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    height: 42px;
  }
}