/* ==============================================================================
   SAPADAYTOUR.COM - NORTHWEST MOUNTAIN ADVENTURE DESIGN SYSTEM
   Palette: Pine Mist Emerald (#00e699 / #10b981), Terraced Gold (#f59e0b), Obsidian (#080a0f)
============================================================================== */

:root {
  --bg-main: #080a0f;
  --bg-surface: #0e121a;
  --bg-card: #131924;
  --bg-card-hover: #1a2332;
  --bg-glass: rgba(19, 25, 36, 0.75);

  --emerald-primary: #00e699;
  --emerald-hover: #00c984;
  --emerald-light: #6ee7b7;
  --emerald-gradient: linear-gradient(135deg, #00e699 0%, #10b981 100%);
  --gold-primary: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);

  --text-white: #ffffff;
  --text-heading: #f8fafc;
  --text-body: #94a3b8;
  --text-muted: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-emerald: rgba(0, 230, 153, 0.25);
  --border-light: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.65);
  --shadow-emerald: 0 10px 30px rgba(0, 230, 153, 0.25);

  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text-emerald {
  background: var(--emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Top Notification Bar */
.top-notice-bar {
  background: linear-gradient(90deg, #064e3b 0%, #065f46 50%, #047857 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 230, 153, 0.3);
}

/* Header & Navbar */
.header-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 10, 15, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--emerald-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-emerald);
}

.brand-info strong {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: block;
}

.brand-info strong span {
  color: var(--emerald-primary);
}

.brand-info small {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--emerald-primary);
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-pill-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-pill-wa:hover {
  transform: translateY(-2px);
  background: #22c55e;
}

.btn-pill-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald-gradient);
  color: #080a0f;
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-emerald);
}

.btn-pill-book:hover {
  transform: translateY(-2px);
}

/* Hero Section */
.hero-sec {
  padding: 40px 0 50px;
}

.hero-banner-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-emerald);
  box-shadow: var(--shadow-lg);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg-media {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8,10,15,0.94) 0%, rgba(8,10,15,0.85) 50%, rgba(8,10,15,0.6) 100%);
  z-index: 2;
}

.hero-content-grid {
  position: relative;
  z-index: 3;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 230, 153, 0.12);
  border: 1px solid rgba(0, 230, 153, 0.35);
  color: var(--emerald-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 18px;
  color: #fff;
}

.hero-subtitle {
  font-size: 16.5px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: var(--emerald-gradient);
  color: #080a0f;
  font-size: 15px;
  font-weight: 900;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-emerald);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-trust-box {
  background: rgba(19, 25, 36, 0.85);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
}

.trust-val {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
}

.trust-lbl {
  font-size: 12.5px;
  color: var(--text-body);
}

/* Value Props Bar */
.features-bar {
  padding: 20px 0 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-3px);
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(0, 230, 153, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}

.feature-info p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Tour Cards & Grid */
.sec-tours {
  padding: 40px 0 80px;
}

.sec-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.sec-badge {
  display: inline-block;
  background: rgba(0, 230, 153, 0.1);
  border: 1px solid rgba(0, 230, 153, 0.3);
  color: var(--emerald-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.sec-header-center h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 12px;
}

.sec-header-center p {
  font-size: 16px;
  color: var(--text-body);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tour-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 230, 153, 0.15);
}

.tour-card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-media img {
  transform: scale(1.06);
}

.floating-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.tag-bestseller { background: var(--emerald-gradient); color: #080a0f; }
.tag-popular { background: var(--gold-gradient); color: #080a0f; }
.tag-classic { background: #3b82f6; color: #fff; }

.floating-duration {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255,255,255,0.1);
}

.tour-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.tour-rating-stars {
  font-size: 13px;
  color: var(--gold-primary);
  font-weight: 700;
}

.tour-reviews-count {
  font-size: 12px;
  color: var(--text-muted);
}

.tour-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.tour-title a:hover {
  color: var(--emerald-primary);
}

.tour-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tour-highlights-mini {
  list-style: none;
  margin-bottom: 20px;
}

.tour-highlights-mini li {
  font-size: 12.5px;
  color: #cbd5e1;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-card-bottom {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-price-box .price-lbl {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.price-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-val-wrap del {
  font-size: 13px;
  color: var(--text-muted);
}

.price-current {
  font-size: 22px;
  font-weight: 900;
  color: var(--emerald-primary);
  font-family: var(--font-heading);
}

.price-val-wrap small {
  font-size: 11px;
  color: var(--text-muted);
}

.btn-view-details {
  background: rgba(0, 230, 153, 0.12);
  border: 1px solid rgba(0, 230, 153, 0.35);
  color: var(--emerald-light);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.btn-view-details:hover {
  background: var(--emerald-gradient);
  color: #080a0f;
  transform: translateY(-2px);
}

/* Sapa Gallery Grid */
.sec-gallery {
  padding: 40px 0 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gallery-item {
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Why Us */
.sec-why {
  padding: 60px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* FAQ Accordion */
.sec-faq {
  padding: 70px 0;
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--border-emerald);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--emerald-primary);
  font-weight: 800;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
}

/* CTA Banner */
.sec-cta-banner {
  padding: 40px 0 80px;
}

.cta-banner-box {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 60%, #047857 100%);
  border: 1px solid rgba(0, 230, 153, 0.4);
  border-radius: var(--radius-xl);
  padding: 50px 60px;
  text-align: center;
  box-shadow: var(--shadow-emerald);
}

.cta-banner-box h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner-box p {
  font-size: 16px;
  color: #d1fae5;
  max-width: 680px;
  margin: 0 auto 28px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: #05070a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-body);
}

.footer-links a:hover {
  color: var(--emerald-primary);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 230, 153, 0.2);
}

.modal-close-btn {
  position: absolute;
  top: 16px; right: 18px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-header-media {
  position: relative;
  height: 220px;
  flex-shrink: 0;
}

.modal-header-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-media-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8,10,15,0.2) 0%, rgba(8,10,15,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.modal-media-overlay h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
}

.modal-rating-row {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #cbd5e1;
}

.modal-body-scroll {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-sec-box {
  margin-bottom: 24px;
}

.modal-sec-box h3 {
  font-size: 16.5px;
  color: var(--emerald-light);
  margin-bottom: 10px;
}

.modal-checklist {
  list-style: none;
}

.modal-checklist li {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.itinerary-timeline-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.timeline-time {
  font-weight: 800;
  color: var(--emerald-primary);
  font-size: 13.5px;
  display: block;
  margin-bottom: 2px;
}

.timeline-desc {
  font-size: 13.5px;
  color: var(--text-body);
}

.modal-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.inc-box, .exc-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.inc-box h4 { color: var(--emerald-light); font-size: 14px; margin-bottom: 8px; }
.exc-box h4 { color: #f87171; font-size: 14px; margin-bottom: 8px; }

.inc-box ul, .exc-box ul {
  list-style: none;
}

.inc-box li, .exc-box li {
  font-size: 12.5px;
  color: var(--text-body);
  margin-bottom: 4px;
}

.modal-cta-footer {
  text-align: center;
  padding-top: 10px;
}

.btn-modal-wa {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-modal-wa:hover {
  transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-content-grid { grid-template-columns: 1fr; padding: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .hero-banner-card { min-height: auto; }
  .hero-content-grid { padding: 30px 20px; }
  .hero-trust-box { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-inc-exc-grid { grid-template-columns: 1fr; }
}
