/* WorldExplorer Tours — Navy Elegan, Aksen Merah */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f3460;
  --navy-dark: #0a2444;
  --navy-light: #1a4a80;
  --accent: #e94560;
  --accent-dark: #c73350;
  --gold: #f4c430;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1f2937;
  --text-light: #4b5563;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }

/* UTILITY */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-alt { background: var(--off-white); }
.text-center { text-align: center; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.5px; }
.section-sub { color: var(--gray); font-size: 1.05rem; margin-bottom: 48px; }
.badge { display: inline-block; background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all .2s; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gold); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: var(--navy); }

/* DEMO BAR */
.demo-bar { background: #1a1a2e; color: #fff; text-align: center; padding: 8px 16px; font-size: 13px; font-family: system-ui, sans-serif; }
.demo-bar a { color: #7dd3fc; text-decoration: none; }
.demo-bar a.cta { color: #fbbf24; font-weight: 600; }

/* NAV */
nav { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; }
.nav-logo-text { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.1; }
.nav-logo-text span { color: var(--gold); }
.nav-logo-sub { font-size: 0.65rem; color: rgba(255,255,255,.6); font-weight: 400; display: block; }

/* checkbox hack */
#nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle-label span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.85); text-decoration: none; padding: 8px 14px; border-radius: 5px; font-size: 0.9rem; font-weight: 500; transition: .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.12); }
.nav-links a.btn-nav { background: var(--accent); color: #fff; padding: 8px 18px; }
.nav-links a.btn-nav:hover { background: var(--accent-dark); }

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy-dark); padding: 16px; gap: 4px; }
  .nav-links a { padding: 12px 16px; border-radius: 6px; }
  #nav-toggle:checked ~ .nav-inner .nav-links { display: flex; }
  nav { position: relative; }
}

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%); color: #fff; padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,.6); }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.globe-wrap { position: relative; width: 340px; height: 340px; }

/* Globe SVG illustration */
.globe-bg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 60px 0 48px; }
}

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: #fff; border-radius: 12px; padding: 32px 24px; box-shadow: 0 2px 16px rgba(15,52,96,.08); border-top: 4px solid var(--accent); text-align: center; transition: .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(15,52,96,.15); }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.92rem; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }
@media (min-width: 480px) and (max-width: 768px) { .features-grid { grid-template-columns: 1fr 1fr; } }

/* PACKAGE CARDS */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(15,52,96,.1); transition: .2s; display: flex; flex-direction: column; }
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(15,52,96,.18); }
.pkg-card.featured { border: 2px solid var(--accent); }
.pkg-thumb { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pkg-label { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
.pkg-label.popular { background: var(--gold); color: var(--navy); }
.pkg-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pkg-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pkg-meta { font-size: 0.82rem; color: var(--gray); margin-bottom: 12px; display: flex; gap: 12px; }
.pkg-price { font-size: 1.4rem; font-weight: 900; color: var(--accent); margin-bottom: 16px; }
.pkg-price span { font-size: 0.8rem; font-weight: 400; color: var(--gray); }
.pkg-body .btn { margin-top: auto; text-align: center; width: 100%; }
@media (max-width: 768px) { .pkg-grid { grid-template-columns: 1fr; } }
@media (min-width: 560px) and (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr 1fr; } }

/* DESTINATIONS */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(15,52,96,.1); transition: .2s; background: #fff; }
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(15,52,96,.18); }
.dest-visual { height: 140px; display: flex; align-items: center; justify-content: center; }
.dest-body { padding: 16px; }
.dest-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.dest-body p { font-size: 0.82rem; color: var(--gray); }
.dest-tag { display: inline-block; background: var(--off-white); color: var(--navy); font-size: 0.7rem; font-weight: 600; padding: 2px 8px; border-radius: 4px; margin-top: 8px; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dest-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border-radius: 12px; padding: 28px 24px; box-shadow: 0 2px 16px rgba(15,52,96,.08); position: relative; }
.testi-card::before { content: '"'; font-size: 4rem; color: var(--accent); opacity: .2; position: absolute; top: 8px; left: 20px; font-family: Georgia, serif; line-height: 1; }
.testi-stars { color: var(--gold); margin-bottom: 12px; font-size: 0.9rem; }
.testi-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-loc { font-size: 0.78rem; color: var(--gray); }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%); color: #fff; padding: 72px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; opacity: .85; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; transition: .2s; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 28px rgba(15,52,96,.2); }
.gallery-item:nth-child(3n+1) { aspect-ratio: 4/3; }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15,52,96,.85)); color: #fff; padding: 24px 12px 12px; font-size: 0.82rem; font-weight: 600; opacity: 0; transition: .2s; }
.gallery-item:hover .gallery-label { opacity: 1; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form { background: #fff; border-radius: 14px; padding: 36px; box-shadow: 0 4px 24px rgba(15,52,96,.1); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-light); border-radius: 7px; font-family: var(--font); font-size: 0.92rem; color: var(--text); transition: .2s; background: var(--off-white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-info { }
.info-card { background: var(--navy); color: #fff; border-radius: 14px; padding: 32px; margin-bottom: 20px; }
.info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.info-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.info-icon { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item p { font-size: 0.88rem; color: rgba(255,255,255,.8); }
.info-item strong { color: #fff; display: block; font-size: 0.9rem; }
.map-placeholder { background: linear-gradient(135deg, var(--navy-light), var(--navy)); border-radius: 14px; height: 200px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; opacity: .8; }
.jam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.jam-item { background: rgba(255,255,255,.08); padding: 10px 12px; border-radius: 8px; font-size: 0.82rem; }
.jam-item strong { display: block; color: var(--gold); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* INCLUDE/EXCLUDE */
.inc-list { list-style: none; margin: 10px 0; }
.inc-list li { font-size: 0.83rem; color: var(--text-light); padding: 3px 0; display: flex; gap: 8px; }
.inc-list li::before { content: '✓'; color: #16a34a; font-weight: 700; }
.exc-list { list-style: none; margin: 10px 0; }
.exc-list li { font-size: 0.83rem; color: var(--text-light); padding: 3px 0; display: flex; gap: 8px; }
.exc-list li::before { content: '✗'; color: var(--accent); font-weight: 700; }
.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; }
.inc-exc h4 { font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

/* BREADCRUMB */
.breadcrumb { background: var(--navy-dark); padding: 12px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: rgba(255,255,255,.6); }
.breadcrumb-inner a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-inner a:hover { color: #fff; }
.breadcrumb-inner span { color: rgba(255,255,255,.4); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; padding: 60px 0 48px; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* FOOTER */
footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; margin: 12px 0 20px; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: .2s; }
.social-icon:hover { background: var(--accent); }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 0.85rem; transition: .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,.4); }
.footer-logo { font-size: 1rem; font-weight: 800; color: #fff; }
.footer-logo span { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* HIGHLIGHT ROW */
.highlight-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.highlight-tag { background: rgba(15,52,96,.08); color: var(--navy); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
