/* FamilyTrip Indonesia — travel/18 */
/* Palet: #006064 (teal) + #ff6e40 (oranye) */

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

:root {
  --primary: #006064;
  --primary-light: #00838f;
  --primary-dark: #004d40;
  --accent: #ff6e40;
  --accent-light: #ffa270;
  --accent-dark: #e64a19;
  --bg: #f0fdfd;
  --bg2: #e0f7fa;
  --text: #1a2e2e;
  --text-muted: #4a6565;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,96,100,.15);
  --shadow-sm: 0 2px 8px rgba(0,96,100,.10);
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; }

/* ===== NAV ===== */
.site-nav { background: var(--primary); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { color: var(--white); font-weight: 800; font-size: 1.15rem; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.nav-logo span.logo-icon { background: var(--accent); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
#nav-toggle { display: none; }
.nav-hamburger { display: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: .3s; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.85); text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: .92rem; font-weight: 500; transition: background .2s, color .2s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.18); color: var(--white); }

@media(max-width:700px) {
  .nav-hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--primary-dark); padding: 12px 16px 16px; gap: 2px; }
  #nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%); color: var(--white); padding: 72px 16px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,110,64,.18) 0%, transparent 70%); pointer-events: none; }
.hero-badge { display: inline-block; background: var(--accent); color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: .06em; padding: 4px 14px; border-radius: 20px; margin-bottom: 18px; text-transform: uppercase; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.hero p { font-size: 1.05rem; max-width: 540px; margin: 0 auto 32px; opacity: .88; }
.btn { display: inline-block; padding: 13px 28px; border-radius: 50px; font-size: .95rem; font-weight: 700; text-decoration: none; transition: transform .15s, box-shadow .15s; cursor: pointer; border: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); margin-left: 10px; }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-primary { background: var(--primary); color: var(--white); }

/* hero shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.hs { position: absolute; border-radius: 50%; opacity: .12; }
.hs1 { width: 220px; height: 220px; background: var(--accent); top: -60px; right: -40px; }
.hs2 { width: 140px; height: 140px; background: var(--white); bottom: -50px; left: 30px; }
.hs3 { width: 80px; height: 80px; background: var(--accent-light); bottom: 40px; right: 80px; }

/* ===== SECTIONS ===== */
.section { padding: 64px 16px; }
.section-alt { background: var(--bg); }
.section-accent { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 8px; }
.section-label.light { color: var(--accent-light); }
.section-title { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.section-sub { color: var(--text-muted); max-width: 560px; margin-bottom: 40px; }
.section-accent .section-sub { color: rgba(255,255,255,.75); }

/* ===== CARDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* feature cards */
.feat-card { padding: 28px 24px; }
.feat-icon { width: 52px; height: 52px; margin-bottom: 16px; background: var(--bg2); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--primary-dark); }
.feat-card p { font-size: .9rem; color: var(--text-muted); }

/* paket cards */
.paket-card { display: flex; flex-direction: column; }
.paket-thumb { height: 150px; position: relative; overflow: hidden; }
.paket-card h3 { font-size: 1rem; font-weight: 700; padding: 18px 20px 4px; color: var(--primary-dark); }
.paket-card .durasi { font-size: .8rem; color: var(--text-muted); padding: 0 20px 8px; }
.paket-card .harga { font-size: 1.1rem; font-weight: 800; color: var(--accent); padding: 0 20px 16px; }
.paket-card .btn { margin: 0 20px 20px; display: block; text-align: center; }

/* testimoni */
.testi-card { padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border-left: 4px solid var(--accent); }
.testi-stars { color: var(--accent); margin-bottom: 10px; font-size: 1.1rem; }
.testi-card p { font-size: .93rem; color: var(--text-muted); margin-bottom: 14px; font-style: italic; }
.testi-author { font-weight: 700; color: var(--primary); font-size: .9rem; }

/* ===== PAKET PAGE ===== */
.paket-full-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.paket-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.paket-header { padding: 20px; color: var(--white); }
.paket-body { padding: 20px; }
.paket-body h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; color: var(--primary); }
.paket-body ul { list-style: none; margin-bottom: 14px; }
.paket-body ul li { font-size: .88rem; color: var(--text-muted); padding: 3px 0; display: flex; align-items: flex-start; gap: 8px; }
.paket-body ul li::before { content: '✓'; color: #00897b; font-weight: 700; flex-shrink: 0; }
.paket-body ul.excl li::before { content: '✗'; color: #ef5350; }
.paket-price { font-size: 1.3rem; font-weight: 900; color: var(--accent); margin: 14px 0 4px; }
.paket-price small { font-size: .75rem; font-weight: 400; color: var(--text-muted); }
.grid-paket { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }

/* ===== DESTINASI PAGE ===== */
.dest-card { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.dest-ilu { height: 120px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.dest-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); }
.dest-card p { font-size: .88rem; color: var(--text-muted); }
.dest-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dest-tag { font-size: .75rem; background: var(--bg2); color: var(--primary); padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.grid-dest { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* ===== GALERI PAGE ===== */
.galeri-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.galeri-item { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; transition: transform .2s; }
.galeri-item:hover { transform: scale(1.03); }
.galeri-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.55)); color: #fff; font-size: .78rem; font-weight: 600; padding: 18px 10px 8px; }

/* ===== KONTAK PAGE ===== */
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media(max-width:700px) { .kontak-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 2px solid #c8e6e7; border-radius: 10px; font-family: inherit; font-size: .93rem; color: var(--text); background: var(--white); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 110px; }
.info-block { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--bg2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-block h4 { font-size: .9rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 2px; }
.info-block p { font-size: .85rem; color: var(--text-muted); }
.map-placeholder { height: 200px; border-radius: 14px; background: linear-gradient(135deg, var(--bg2) 0%, #b2ebf2 100%); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 600; font-size: .9rem; gap: 10px; margin-top: 20px; border: 2px dashed #80deea; }

/* ===== FOOTER ===== */
footer { background: var(--primary-dark); color: rgba(255,255,255,.75); padding: 40px 16px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 28px; }
footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 12px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color .2s; }
footer ul a:hover { color: var(--accent-light); }
footer p { font-size: .85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; text-align: center; font-size: .82rem; max-width: 1100px; margin: 0 auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--bg2); padding: 10px 16px; font-size: .83rem; }
.breadcrumb .container { display: flex; gap: 8px; align-items: center; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); text-decoration: none; }

/* ===== PAGE HERO (inner) ===== */
.page-hero { background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); padding: 52px 16px 56px; text-align: center; }
.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { opacity: .82; max-width: 520px; margin: 0 auto; }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.badge { display: inline-block; font-size: .72rem; font-weight: 700; padding: 2px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; }
.badge-hot { background: var(--accent); color: var(--white); }
.badge-new { background: #00897b; color: var(--white); }
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }

/* Thumb gradients — reusable */
.grad-a { background: linear-gradient(135deg, #006064 0%, #00838f 60%, #4db6ac 100%); }
.grad-b { background: linear-gradient(135deg, #ff6e40 0%, #ffa270 60%, #ffcc80 100%); }
.grad-c { background: linear-gradient(135deg, #00838f 0%, #26c6da 60%, #b2ebf2 100%); }
.grad-d { background: linear-gradient(135deg, #e64a19 0%, #ff6e40 60%, #ffab91 100%); }
.grad-e { background: linear-gradient(135deg, #004d40 0%, #00796b 60%, #4db6ac 100%); }
.grad-f { background: linear-gradient(135deg, #bf360c 0%, #e64a19 60%, #ff8a65 100%); }
.grad-g { background: linear-gradient(135deg, #006064 0%, #26c6da 100%); }
.grad-h { background: linear-gradient(135deg, #ff6e40 0%, #ffca28 100%); }

/* SVG icon color helpers */
.ico-teal { color: var(--primary); }

/* CTA section */
.cta-section { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); padding: 60px 16px; text-align: center; color: var(--white); }
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 12px; }
.cta-section p { opacity: .88; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-white { background: var(--white); color: var(--accent-dark); font-weight: 700; }
