/* ── BaweanTrip Pages Shared CSS ── */
:root {
  --sky: #06AEF7;
  --cyan: #0CC8B8;
  --navy: #041525;
  --surface: #071e33;
  --surface2: #0a2840;
  --muted: rgba(255,255,255,0.6);
  --gradient: linear-gradient(135deg, var(--cyan), var(--sky));
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: #fff; overflow-x: hidden; }

/* ── Navbar ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between; backdrop-filter: blur(12px); background: rgba(4,21,37,0.85); border-bottom: 1px solid rgba(6,174,247,0.1); }
.nav-logo img { height: 34px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--gradient); color: #fff !important; padding: 8px 20px; border-radius: 50px; font-weight: 600 !important; }

/* ── Hero ── */
.page-hero { padding: 120px 32px 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(6,174,247,0.15) 0%, transparent 70%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(6,174,247,0.1); border: 1px solid rgba(6,174,247,0.3); border-radius: 50px; padding: 6px 16px; font-size: 13px; color: var(--sky); font-weight: 500; margin-bottom: 20px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 64px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--gradient); color: #fff; text-decoration: none; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s, box-shadow .2s; box-shadow: 0 8px 24px rgba(6,174,247,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6,174,247,0.4); }
.btn-secondary { border: 1px solid rgba(6,174,247,0.4); color: var(--sky); text-decoration: none; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-secondary:hover { background: rgba(6,174,247,0.1); }

/* ── Sections ── */
.section { padding: 80px 32px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--sky); text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; }
.section-desc { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 600px; }
.centered { text-align: center; }
.centered .section-desc { margin: 0 auto; }

/* ── Feature Cards ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(6,174,247,0.1); border-radius: 20px; padding: 28px; transition: all .3s; }
.feature-card:hover { border-color: rgba(6,174,247,0.3); background: rgba(6,174,247,0.05); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(6,174,247,0.1); }
.feature-icon { width: 48px; height: 48px; background: rgba(6,174,247,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.step { text-align: center; padding: 32px 24px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; position: relative; }
.step-num { width: 48px; height: 48px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; margin: 0 auto 16px; }
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Mockup ── */
.mockup-section { background: linear-gradient(180deg, rgba(6,174,247,0.05) 0%, transparent 100%); border-top: 1px solid rgba(6,174,247,0.1); border-bottom: 1px solid rgba(6,174,247,0.1); padding: 80px 32px; }
.mockup-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mockup-inner.reverse { direction: rtl; }
.mockup-inner.reverse > * { direction: ltr; }
.mockup-phone { width: 220px; height: 420px; background: var(--surface2); border-radius: 36px; border: 2px solid rgba(6,174,247,0.3); margin: 0 auto; position: relative; overflow: hidden; box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(6,174,247,0.1), inset 0 1px 0 rgba(255,255,255,0.05); }
.mockup-phone::before { content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.mockup-screen { position: absolute; top: 28px; left: 8px; right: 8px; bottom: 8px; border-radius: 28px; overflow: hidden; background: var(--navy); display: flex; flex-direction: column; }
.phone-header { padding: 12px 14px; background: var(--gradient); font-size: 11px; font-weight: 600; }
.phone-content { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.phone-card { background: var(--surface2); border-radius: 10px; padding: 10px; border: 1px solid rgba(6,174,247,0.1); }
.phone-card-title { font-size: 9px; font-weight: 600; margin-bottom: 4px; color: var(--sky); }
.phone-card-text { font-size: 8px; color: var(--muted); }
.phone-btn { background: var(--gradient); border-radius: 8px; padding: 8px; text-align: center; font-size: 9px; font-weight: 700; margin-top: 4px; }
.mockup-text .section-desc { margin-bottom: 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--muted); }
.check-list li::before { content: '✓'; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── CTA ── */
.cta-section { text-align: center; padding: 80px 32px; background: radial-gradient(ellipse at center, rgba(6,174,247,0.1) 0%, transparent 70%); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-section p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.store-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-store { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 14px; text-decoration: none; transition: all .3s; font-weight: 600; font-size: 14px; }
.btn-play { background: var(--gradient); color: #fff; box-shadow: 0 8px 24px rgba(6,174,247,0.3); }
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6,174,247,0.4); }
.btn-ios { border: 1px solid rgba(6,174,247,0.4); color: var(--sky); }
.btn-ios:hover { background: rgba(6,174,247,0.1); }

/* ── Footer ── */
footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 32px; text-align: center; color: var(--muted); font-size: 13px; }
footer a { color: var(--sky); text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .page-hero { padding: 100px 16px 60px; }
  .section { padding: 60px 16px; }
  .mockup-inner { grid-template-columns: 1fr; gap: 40px; }
  .mockup-inner.reverse { direction: ltr; }
  .mockup-phone { width: 200px; height: 380px; }
}
