/* ============================================================
   AMISUMMITMATES — style.css
   ============================================================ */

:root {
  --forest:    #1a3a2a;
  --moss:      #2d5a3d;
  --sage:      #4a7c5f;
  --mint:      #6db08a;
  --earth:     #8b6f47;
  --sand:      #c4a882;
  --cream:     #f5f0e8;
  --dark:      #0d1f17;
  --charcoal:  #1c2b22;
  --white:     #ffffff;
  --wa-green:  #25D366;
  --card-bg:   rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,20,14,0.9), transparent);
  backdrop-filter: blur(4px);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(10,20,14,0.97);
  padding-top: .9rem; padding-bottom: .9rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--mint); letter-spacing: .02em; text-decoration: none; }
.nav-logo span { color: var(--sand); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .25s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--mint); transform: scaleX(0); transition: transform .25s; border-radius: 2px; }
.nav-links a:hover, .nav-links a.nav-active { color: var(--mint); }
.nav-links a:hover::after, .nav-links a.nav-active::after { transform: scaleX(1); }
.nav-wa { background: var(--wa-green); color: #fff; padding: .5rem 1.2rem; border-radius: 50px; font-size: .85rem; font-weight: 600; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
#hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: url('GunungBatur.jpg') center/cover no-repeat; transform: scale(1.05); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(10,25,16,0.7) 0%, rgba(10,20,14,0.55) 50%, rgba(13,31,23,0.8) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 900px; animation: fadeUp .9s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-block; margin-bottom: 1.5rem; background: rgba(109,176,138,0.15); border: 1px solid rgba(109,176,138,0.3); padding: .4rem 1.1rem; border-radius: 50px; font-size: .78rem; font-weight: 600; letter-spacing: .1em; color: var(--mint); text-transform: uppercase; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 900; line-height: 1.08; color: var(--white); margin-bottom: 1.2rem; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero-title em { color: var(--mint); font-style: normal; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 300; min-height: 2em; }
#hero-typed::after { content: '|'; animation: blink 1s step-end infinite; color: var(--mint); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--mint); color: var(--dark); padding: .9rem 2rem; border-radius: 50px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: all .25s; box-shadow: 0 8px 25px rgba(109,176,138,0.35); }
.btn-primary:hover { background: #7fcba0; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(109,176,138,0.45); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); padding: .9rem 2rem; border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: all .25s; backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-3px); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,0.45); font-size: .75rem; letter-spacing: .08em; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(109,176,138,0.7), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ── SECTION COMMONS ── */
section { padding: 6rem 1.5rem; }
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--mint); margin-bottom: .8rem; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.section-sub { color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.7; font-size: 1rem; font-weight: 300; }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .section-sub { margin: 0 auto; }
.no-results { text-align: center; padding: 4rem; color: rgba(255,255,255,0.35); font-size: 1rem; }

/* ── DESTINATIONS ── */
#destinations { background: var(--charcoal); }
.dest-filter { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { background: transparent; border: 1.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); padding: .45rem 1.2rem; border-radius: 50px; font-size: .85rem; font-weight: 500; cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif; }
.filter-btn.active, .filter-btn:hover { background: var(--mint); color: var(--dark); border-color: var(--mint); font-weight: 700; }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; transition: opacity .35s ease, transform .35s ease; }
.dest-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); cursor: pointer; transform-style: preserve-3d; }
.dest-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.card-img { position: relative; height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest-card:hover .card-img img { transform: scale(1.07); }
.card-difficulty { position: absolute; top: 1rem; left: 1rem; padding: .3rem .8rem; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.diff-beginner { background: rgba(109,176,138,0.85); color: var(--dark); }
.diff-intermediate { background: rgba(196,168,130,0.9); color: var(--dark); }
.diff-advanced { background: rgba(180,60,50,0.85); color: #fff; }
.card-sunrise { position: absolute; top: 1rem; right: 1rem; background: rgba(255,200,50,0.15); border: 1px solid rgba(255,200,50,0.3); color: #ffc832; padding: .25rem .65rem; border-radius: 50px; font-size: .7rem; font-weight: 600; }
.card-body { padding: 1.4rem; }
.card-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; margin-bottom: .25rem; }
.card-region { font-size: .78rem; color: rgba(255,255,255,0.4); margin-bottom: .6rem; }
.card-desc { color: rgba(255,255,255,0.55); font-size: .88rem; line-height: 1.6; margin-bottom: 1rem; }
.card-meta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.meta-item { display: flex; align-items: center; gap: .35rem; font-size: .78rem; color: rgba(255,255,255,0.5); }
.meta-icon { font-size: 1rem; }
.card-actions { display: flex; gap: .6rem; }
.card-cta { flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem; background: var(--wa-green); color: #fff; padding: .7rem .5rem; border-radius: 12px; font-weight: 700; font-size: .85rem; text-decoration: none; transition: all .2s; box-shadow: 0 4px 15px rgba(37,211,102,0.25); }
.card-cta:hover { background: #1ebe5a; transform: translateY(-1px); }
.card-map-btn { display: flex; align-items: center; justify-content: center; gap: .4rem; background: rgba(109,176,138,0.1); border: 1.5px solid rgba(109,176,138,0.3); color: var(--mint); padding: .7rem .9rem; border-radius: 12px; font-weight: 600; font-size: .82rem; cursor: pointer; transition: all .2s; white-space: nowrap; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.card-map-btn:hover { background: rgba(109,176,138,0.2); }
.card-gb-link { display: flex; align-items: center; justify-content: center; background: rgba(196,168,130,0.1); border: 1.5px solid rgba(196,168,130,0.3); color: var(--sand); padding: .7rem .9rem; border-radius: 12px; font-weight: 600; font-size: .82rem; text-decoration: none; transition: all .2s; }
.card-gb-link:hover { background: rgba(196,168,130,0.2); }

/* ── TRAIL MAP MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(5,12,8,0.92); backdrop-filter: blur(10px); align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--charcoal); border: 1px solid rgba(109,176,138,0.2); border-radius: 24px; overflow: hidden; max-width: 900px; width: 100%; max-height: 90vh; display: flex; flex-direction: column; animation: modalIn .3s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: none; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
.modal-subtitle { color: rgba(255,255,255,0.45); font-size: .8rem; margin-top: .1rem; }
.modal-close { background: rgba(255,255,255,0.06); border: none; color: var(--white); width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-body { overflow-y: auto; padding: 1.5rem; flex: 1; }
.modal-map-loading { text-align: center; padding: 3rem; color: rgba(255,255,255,0.4); }
.modal-map-error { text-align: center; padding: 2rem; }
.modal-map-error p { color: rgba(255,255,255,0.5); margin-bottom: 1rem; font-size: .9rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; gap: .8rem; flex-wrap: wrap; flex-shrink: 0; }
.modal-btn-gb { display: inline-flex; align-items: center; gap: .4rem; background: var(--mint); color: var(--dark); padding: .6rem 1.2rem; border-radius: 50px; font-size: .85rem; font-weight: 700; text-decoration: none; transition: all .2s; }
.modal-btn-gb:hover { background: #7fcba0; }
.modal-btn-dl { display: inline-flex; align-items: center; gap: .4rem; background: rgba(196,168,130,0.12); border: 1px solid rgba(196,168,130,0.3); color: var(--sand); padding: .6rem 1.2rem; border-radius: 50px; font-size: .85rem; font-weight: 600; text-decoration: none; }
.modal-btn-dl:hover { background: rgba(196,168,130,0.22); }

/* ── DIFFICULTY ── */
#difficulty { background: var(--dark); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.diff-card { border-radius: 20px; padding: 2rem; border: 1px solid var(--card-border); position: relative; overflow: hidden; transition: transform var(--transition); }
.diff-card:hover { transform: translateY(-4px); }
.diff-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.diff-card.beginner::before { background: var(--mint); }
.diff-card.intermediate::before { background: var(--sand); }
.diff-card.advanced::before { background: #c43c32; }
.diff-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.diff-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .4rem; }
.diff-card.beginner .diff-label { color: var(--mint); }
.diff-card.intermediate .diff-label { color: var(--sand); }
.diff-card.advanced .diff-label { color: #e85040; }
.diff-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.diff-peaks { list-style: none; }
.diff-peaks li { padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: .9rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: .5rem; }
.diff-peaks li::before { content: '▸'; font-size: .7rem; opacity: .5; }

/* ── HOW IT WORKS ── */
#how { background: var(--forest); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 3rem; left: 16.6%; right: 16.6%; height: 1px; background: linear-gradient(to right, transparent, var(--mint), transparent); }
.step { text-align: center; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--moss), var(--mint)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin: 0 auto 1.2rem; box-shadow: 0 8px 25px rgba(109,176,138,0.3); }
.step-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.step-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.step-desc { color: rgba(255,255,255,0.55); font-size: .9rem; line-height: 1.6; }

/* ── ABOUT ── */
#about { background: var(--charcoal); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: 24px; overflow: hidden; height: 480px; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,23,0.6) 0%, transparent 50%); }
.about-badge-wrap { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 2; display: flex; gap: 1rem; }
.about-badge { background: rgba(13,31,23,0.85); backdrop-filter: blur(10px); border: 1px solid rgba(109,176,138,0.2); border-radius: 14px; padding: .8rem 1rem; flex: 1; text-align: center; }
.ab-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--mint); }
.ab-label { font-size: .72rem; color: rgba(255,255,255,0.5); margin-top: .15rem; }
.about-features { list-style: none; margin: 1.5rem 0 2.5rem; }
.about-features li { padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: .8rem; color: rgba(255,255,255,0.75); font-size: .95rem; }
.feat-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(109,176,138,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── KOMUNITAS SECTION ── */
#komunitas { background: var(--dark); position: relative; overflow: hidden; }
#komunitas::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(109,176,138,0.06) 0%, transparent 70%); pointer-events: none; }
.komunitas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* Stats strip */
.komunitas-stats { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.kstat { text-align: center; }
.kstat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--mint); display: block; }
.kstat-label { font-size: .75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: .08em; }

/* Grup cards */
.group-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.group-card { display: flex; align-items: center; gap: 1rem; padding: 1.2rem; border-radius: 16px; border: 1px solid var(--card-border); background: var(--card-bg); transition: transform var(--transition), border-color var(--transition); text-decoration: none; color: var(--white); }
.group-card:hover { transform: translateX(6px); border-color: rgba(109,176,138,0.3); }
.group-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.group-icon.wa  { background: rgba(37,211,102,0.12); }
.group-name { font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.group-desc { font-size: .82rem; color: rgba(255,255,255,0.5); }
.group-badge { margin-left: auto; background: var(--wa-green); color: #fff; padding: .25rem .7rem; border-radius: 50px; font-size: .72rem; font-weight: 700; white-space: nowrap; }

/* Form pendaftaran */
.join-form-wrap { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px; padding: 2rem; }
.join-form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: .4rem; }
.join-form-sub { color: rgba(255,255,255,0.5); font-size: .88rem; margin-bottom: 1.8rem; line-height: 1.5; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: .45rem; letter-spacing: .02em; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: .75rem 1rem; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .92rem;
  transition: border-color .2s, background .2s; outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--mint); background: rgba(109,176,138,0.06);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-select option { background: #1c2b22; color: #fff; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit-btn {
  width: 100%; background: var(--mint); color: var(--dark); padding: 1rem; border: none;
  border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .25s; box-shadow: 0 6px 20px rgba(109,176,138,0.3);
  margin-top: .5rem;
}
.form-submit-btn:hover { background: #7fcba0; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(109,176,138,0.4); }
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-privacy { text-align: center; font-size: .75rem; color: rgba(255,255,255,0.3); margin-top: .8rem; }

/* ── GALLERY ── */
#gallery { background: var(--charcoal); }
.gallery-tabs { display: flex; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.gallery-tab { background: transparent; border: 1.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); padding: .5rem 1.6rem; border-radius: 50px; font-size: .88rem; font-weight: 500; cursor: pointer; transition: all .25s; font-family: 'DM Sans', sans-serif; }
.gallery-tab.active, .gallery-tab:hover { background: var(--mint); color: var(--dark); border-color: var(--mint); font-weight: 700; }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 220px 220px; gap: 1rem; }
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; transition: transform .3s; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,14,0.5) 0%, transparent 60%); opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: 1; }
.moments-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.moment-card { border-radius: 18px; overflow: hidden; background: var(--card-bg); border: 1px solid var(--card-border); transition: transform .3s, box-shadow .3s; }
.moment-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,0.45); }
.moment-img-wrap { position: relative; height: 230px; overflow: hidden; }
.moment-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.moment-card:hover .moment-img-wrap img { transform: scale(1.07); }
.moment-tag { position: absolute; top: .85rem; left: .85rem; background: rgba(13,31,23,0.82); backdrop-filter: blur(6px); border: 1px solid rgba(109,176,138,0.3); color: var(--mint); padding: .25rem .75rem; border-radius: 50px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.moment-body { padding: 1.1rem 1.2rem 1.2rem; }
.moment-mountain { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.moment-meta { display: flex; gap: 1rem; font-size: .78rem; color: rgba(255,255,255,0.45); margin-top: .2rem; }
.moment-caption { margin-top: .6rem; font-size: .85rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ── CONTACT CTA ── */
#contact { background: linear-gradient(135deg, var(--forest) 0%, var(--charcoal) 100%); text-align: center; position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; inset: 0; background: url('GunungAgung.jpg') center/cover; opacity: .07; }
.contact-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.contact-inner .section-title { margin-bottom: 1rem; }
.contact-inner .section-sub { margin: 0 auto 2.5rem; color: rgba(255,255,255,0.6); }
.wa-cta-btn { display: inline-flex; align-items: center; gap: .8rem; background: var(--wa-green); color: #fff; padding: 1.1rem 2.5rem; border-radius: 50px; font-size: 1.1rem; font-weight: 700; text-decoration: none; box-shadow: 0 8px 30px rgba(37,211,102,0.4); transition: all .3s; }
.wa-cta-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(37,211,102,0.55); background: #1ebe5a; }
.wa-icon { font-size: 1.3rem; }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 3rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--mint); text-decoration: none; }
.footer-logo span { color: var(--sand); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: .82rem; }
.footer-socials { display: flex; gap: .8rem; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; font-size: .9rem; transition: all .2s; }
.social-link:hover { border-color: var(--mint); color: var(--mint); }

/* ── FLOATING WA ── */
.float-wa { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: var(--wa-green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; text-decoration: none; box-shadow: 0 6px 25px rgba(37,211,102,0.45); animation: floatPop .6s ease 1s both; transition: transform .25s, box-shadow .25s, opacity .25s; }
.float-wa:hover { transform: scale(1.12) !important; box-shadow: 0 10px 35px rgba(37,211,102,0.6); opacity: 1 !important; }
@keyframes floatPop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.float-wa-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.15); opacity: 0; } }

/* ── MOBILE NAV ── */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(10,20,14,0.97); backdrop-filter: blur(12px); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); text-decoration: none; transition: color .2s; }
.mobile-nav-overlay a:hover { color: var(--mint); }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; cursor: pointer; color: var(--white); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px); z-index: 9999; padding: .9rem 1.8rem; border-radius: 50px; font-size: .9rem; font-weight: 600; opacity: 0; transition: all .35s cubic-bezier(.4,0,.2,1); pointer-events: none; white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-success { background: var(--mint); color: var(--dark); box-shadow: 0 8px 25px rgba(109,176,138,0.4); }
.toast-error   { background: #c43c32; color: #fff; box-shadow: 0 8px 25px rgba(196,60,50,0.4); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { height: 320px; }
  .komunitas-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.2rem; }
  .dest-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .moments-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .modal-box { max-height: 95vh; border-radius: 16px; }
  .card-actions { flex-wrap: wrap; }
  .toast { white-space: normal; text-align: center; max-width: 90vw; }
}
