@font-face{
  font-family:'catatan Perjalanan';
  src:url('assets/CP.ttf') format('truetype');
  font-weight:normal;
  font-style:normal;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Open Sans','Helvetica Neue',Arial,sans-serif;
  color:#222;
  line-height:1.5;
  background:#fff;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}

:root{
  --red:rgb(235,56,29);
  --dark-red:#b1141a;
  --cream:#fff5e8;
  --beige:#fcecd4;
  --dark:#222;
}

/* HEADER */
.site-header{
  position:relative;
  background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  z-index:100;
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:10px 48px;
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;
}
.logo img{height:56px}
nav.main-nav{
  display:flex;align-items:center;gap:24px;
  font-weight:400;
  font-size:15px;
  line-height:1.8;
  letter-spacing:.2px;
  color:#313131;
  padding-left:60px;
}
nav.main-nav a{transition:color .2s;white-space:nowrap}
nav.main-nav a:hover{color:var(--red)}
.donate-now-btn{
  background:var(--red);color:#fff;
  padding:12px 26px;
  border-radius:30px;
  font-weight:700;
  text-transform:uppercase;
  font-size:16px;
  transition:background .2s;
}
.donate-now-btn:hover{background:var(--dark-red)}
.mobile-toggle{display:none;font-size:28px;color:var(--red)}

/* HERO */
#save-lives-moment{
  padding-top:0;
  background:url('assets/main-bg.jpg') top left/cover no-repeat,#fcecd4;
  min-height:100vh;
  position:relative;
}
.hero-inner{
  max-width:1100px;
  margin:0 auto;
  padding:20px 24px 60px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.hero-image{width:100%;display:flex;justify-content:center;margin-top:60px;margin-bottom:20px}
.hero-image img{
  width:100%;
  max-width:1100px;
  height:auto;
}
.hero-text{max-width:760px;margin-top:-60px}
.slm-heading{
  font-family:inherit;
  font-size:2.125em;
  font-weight:700;
  line-height:1.2;
  margin-bottom:25px;
  text-align:center;
}
.hero-text .lead{
  font-size:1.125rem;
  line-height:1.65;
  margin:0 auto 26px;
  color:#333;
}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:30px;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition:all .2s;
  text-align:center;
}
.btn-primary{background:var(--red);color:#fff}
.btn-primary:hover{background:var(--dark-red)}
.btn-outline{background:#fff;color:var(--red);border:2px solid var(--red)}
.btn-outline:hover{background:var(--red);color:#fff}
.btn-dark{background:#222;color:#fff}
.btn-dark:hover{background:#000}
.hero-caption{
  font-size:0.925em;
  margin-top:20px;
  max-width:760px;
  text-align:center;
  line-height:1.4;
}

/* SECTION TITLE */
.section-title{
  font-family:inherit;
  font-size:2.125em;
  margin-bottom:20px;
  font-weight:700;
  line-height:1.2;
  text-align:center;
}

/* HOW TO SAVE LIVES (carousel) */
#how-to-save-lives{
  padding:70px 24px 80px;
  background:#e6f3f7;
}
.how-inner{max-width:1100px;margin:0 auto}
#how-to-save-lives .section-title{color:var(--dark);font-size:36px;margin-bottom:30px}

/* Step timeline */
.step-timeline{
  position:relative;
  padding:20px;
  margin-bottom:40px;
}
.step-timeline .timeline-bar{
  position:absolute;
  left:7%;right:7%;
  bottom:34px;
  height:16px;
  background:var(--red);
  border-radius:3px;
  z-index:0;
}
.timeline-steps{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  position:relative;
  z-index:1;
  gap:8px;
  align-items:end;
}
.timeline-step{
  display:flex;flex-direction:column;align-items:center;
  cursor:pointer;
  text-align:center;
  position:relative;
}
.timeline-step .step-count{
  display:none;
  font-size:15px;
  font-weight:800;
  color:#222;
  margin-bottom:4px;
  transition:color .2s;
}
.timeline-step.active .step-count{color:var(--red)}
.timeline-step .step-label{
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  color:#222;
  letter-spacing:.4px;
  margin-bottom:16px;
  line-height:1.2;
  min-height:48px;
  transition:color .2s;
}
.timeline-step .step-dot{
  width:32px;height:32px;
  border-radius:50%;
  background:var(--red);
  border:3px solid #e6f3f7;
  transition:transform .2s;
  position:relative;
  z-index:2;
  margin-bottom:5px;
}
.timeline-step .step-marker{
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:44px;height:auto;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s;
  z-index:3;
}
.timeline-step.active .step-label{color:var(--red)}
.timeline-step.active .step-dot{visibility:hidden}
.timeline-step.active .step-marker{opacity:1}

/* Carousel */
.carousel-wrap{
  position:relative;
  padding:0 60px;
}
.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;height:42px;
  border-radius:50%;
  background:#a8d8e2;
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;font-weight:700;
  cursor:pointer;
  transition:background .2s;
  z-index:2;
  border:none;
}
.carousel-arrow:hover{background:#86c2cf}
.carousel-arrow.prev{left:0}
.carousel-arrow.next{right:0}

.carousel-inner{display:grid;overflow:hidden;width:100%}

.carousel-slide{
  display:grid;
  grid-column:1;grid-row:1;
  grid-template-columns:1fr 1.3fr;
  gap:40px;
  align-items:center;
  padding:20px 0 30px;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.carousel-slide.active{transform:translateX(0);pointer-events:auto}
.carousel-slide.slide-enter-left{transform:translateX(-100%)}
.carousel-slide.slide-exit-left{transform:translateX(-100%)}
.carousel-slide.slide-exit-right{transform:translateX(100%)}
.carousel-slide .slide-img{
  display:flex;align-items:center;justify-content:center;
}
.carousel-slide .slide-img img{
  max-width:260px;width:100%;height:auto;
}
.carousel-slide .slide-content h3{
  font-size:26px;
  font-weight:900;
  text-transform:uppercase;
  color:var(--dark);
  margin-bottom:14px;
  letter-spacing:.4px;
}
.carousel-slide .slide-content p{
  font-size:17px;
  color:#333;
  margin-bottom:20px;
  line-height:1.6;
}
.carousel-slide .slide-content a:not(.btn){color:#fb0202;font-weight:normal}
.carousel-slide .slide-content .btn{
  padding:11px 22px;
  font-size:15px;
}
.slide-socials{display:flex;gap:14px;margin-top:6px}
.slide-socials a img{width:42px;height:42px}

.journey-footer{
  text-align:center;
  margin-top:20px;
  font-size:16px;
  color:#222;
}
.journey-footer a{color:#fb0202}
.journey-footer a:hover{text-decoration:underline}

/* WHERE TO SAVE LIVES */
#where-to-save-lives{
  padding:0 24px 80px;
  background:#e6f3f7;
}
#where-to-save-lives .section-title{color:var(--dark);font-size:36px;margin-bottom:24px}
.where-inner{max-width:1100px;margin:0 auto}

.where-tabs{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:6px;
  border-bottom:2px solid #78e0f5;
  margin-bottom:0;
}
.where-tab{
  padding:14px 8px;
  background:#90f3ff;
  border:none;
  border-bottom:3px solid transparent;
  font-size:15px;
  font-weight:700;
  color:#222;
  cursor:pointer;
  text-align:center;
  line-height:1.3;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
  transition:all .2s;
}
.where-tab .tab-prefix{font-weight:400}
.where-tab:hover{color:var(--red)}
.where-tab.active{
  color:var(--dark);
  border-bottom:none;
  background:#fff;
}

.where-panel{
  display:none;
  background:#90f3ff;
  padding:32px;
  border-radius:0 8px 8px 8px;
}
.where-panel.active{display:block}
.where-panel.community-panel{background:#90f3ff;padding:32px 8px 40px;border-radius:0}

.bb-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}
.bb-map iframe{
  width:100%;
  height:380px;
  border:none;
  border-radius:8px;
  display:block;
}
.bb-details h1{
  font-size:38px;
  font-weight:700;
  line-height:1.2;
  text-align:left;
  font-family:inherit;
  padding-right:30px;
  color:var(--dark);
  margin-bottom:6px;
}
.bb-details .near{
  font-size:18px;
  margin-bottom:14px;
}
.bb-details .address{
  font-size:18px;color:#222;margin-bottom:14px;line-height:1.5;font-weight:700;
}
.bb-details .hours-title{
  font-size:18px;font-weight:700;color:#222;margin-top:12px;
}
.bb-details p{
  font-size:18px;color:#333;line-height:1.55;margin-bottom:4px;
}
.bb-details .new-hours{
  color:var(--red);font-weight:700;font-style:italic;margin-bottom:0;
}
.bb-details .new-hours-text{
  color:var(--red);font-style:italic;margin-top:0;
}
.bb-details .alt-note{
  color:var(--red);font-weight:700;font-style:italic;margin-top:12px;
}

/* Community Drives */
.drives-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 40px;
}
.drive-card{
  display:grid;
  grid-template-columns:36px 1fr;
  align-items:stretch;
  gap:14px;
}
.drive-section{
  display:grid;
  grid-template-columns:110px 1fr;
  align-items:center;
  gap:14px;
  padding-bottom:4px;
  border-bottom:1px solid #f0a878;
}
.drive-area{
  background:#ff922f;
  color:#fff;
  font-size:18px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  padding:7px 2px;
  text-align:center;
  border-radius:0 8px 8px 0;
  align-self:stretch;
  display:flex;align-items:center;justify-content:center;
}
.drive-date{
  padding-top:4px;
  color:#1a1a1a;
}
.drive-date .date{
  font-family:'catatan Perjalanan',sans-serif;
  font-size:2.125em;
  font-weight:700;
  line-height:0.8;
}
.drive-date .day{
  font-family:'catatan Perjalanan',sans-serif;
  font-size:1.175em;
  font-weight:700;
  color:#1a1a1a;
}
.drive-info{padding-top:4px}
.drive-info h4{
  font-size:19px;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:6px;
  line-height:1.25;
}
.drive-info p{font-size:15px;color:#1a1a1a;margin:2px 0;line-height:1.45}

/* SHUTTLE / CHARTERED BUS */
.shuttle-section{
  padding:40px 24px 0;
  background:#dfd7e4;
  text-align:center;
  position:relative;
}
.shuttle-inner{
  max-width:720px;margin:0 auto;
}
.shuttle-heading{
  font-size:37px;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:14px;
  text-align:center;
}
.shuttle-inner p{
  font-size:16px;
  color:#1a1a1a;
  margin-bottom:14px;
  line-height:1.55;
}
.shuttle-inner .email-line{
  margin-bottom:18px;
}
.shuttle-inner .email-line a{
  color:#1a1a1a;font-weight:700;text-decoration:none;
}
.speech-bubble{
  position:relative;
  background-image:url('assets/speech-bubble-long.png');
  background-repeat:no-repeat;
  background-position:center top;
  background-size:100% 100%;
  max-width:520px;
  margin:0 auto;
  padding:28px 40px 44px;
}
.speech-bubble p{
  font-size:16px;color:#1a1a1a;margin-bottom:14px;
}
.speech-bubble .games-cta{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
}
.speech-bubble .games-cta .btn{
  padding:9px 18px;font-size:15px;
}
.shuttle-character{
  margin:-10px auto 0;
  max-width:260px;
  position:relative;
  z-index:1;
  overflow:hidden;
  max-height:200px;
}
.shuttle-character img{width:100%;height:auto;display:block}
.teal-divider{
  height:24px;
  background:#a3dad3;
}

/* MYTHBUSTERS (carousel) */
#mythbusters{
  padding:60px 24px 80px;
  background:#61ded1;
}
#mythbusters .section-title{
  color:#1a1a1a;
  font-size:37px;
  font-weight:700;
  margin-bottom:10px;
}
.myth-inner{max-width:1000px;margin:0 auto}
.myth-wrap{position:relative;padding:0 60px}
.myth-wrap .carousel-arrow{
  background:#86c2cf;
}
.myth-wrap .carousel-arrow:hover{background:#6aa9b7}
.myth-slide{
  display:grid;
  grid-column:1;grid-row:1;
  grid-template-columns:1fr 1.4fr;
  gap:40px;
  align-items:center;
  padding:20px 0 10px;
  min-height:280px;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.myth-slide.active{transform:translateX(0);pointer-events:auto}
.myth-slide.slide-enter-left{transform:translateX(-100%)}
.myth-slide.slide-exit-left{transform:translateX(-100%)}
.myth-slide.slide-exit-right{transform:translateX(100%)}
.myth-slide .slide-img{display:flex;justify-content:center;align-items:center}
.myth-slide .slide-img img{max-width:240px;width:100%;height:auto}
.myth-slide .slide-content h3{
  font-family:'catatan Perjalanan',sans-serif;
  font-size:35px;
  font-weight:900;
  color:#1a1a1a;
  text-transform:uppercase;
  line-height:1.25;
  letter-spacing:.5px;
}
.myth-slide .slide-content p{
  font-size:17px;color:#1a1a1a;
}
.myth-slide.center-layout{
  grid-template-columns:0.5fr 3.5fr;
}
.myth-slide.center-layout .slide-img img.float-left{
  max-width:100px;
}
.myth-slide.center-layout .slide-content h3{
  display:flex;
  align-items:center;
  gap:10px;
}
.myth-slide.center-layout .slide-content h3 span{
  flex:0 0 70%;
  text-align:center;
}
.myth-slide.center-layout .slide-content h3 img{
  flex:0 0 30%;
  width:100%;
  max-width:120px;
  height:auto;
}

/* FAQs */
#faqs{
  padding:50px 24px;
  background:#fff;
}
.faqs-inner{max-width:1000px;margin:0 auto}
.faqs-inner > .section-title{color:var(--dark);margin-bottom:36px}
.faq-category{
  margin-bottom:36px;
}
.faq-category-title{
  font-size:24px;font-weight:700;color:var(--red);
  text-transform:uppercase;letter-spacing:1px;
  margin-bottom:14px;border-bottom:3px solid var(--red);
  padding-bottom:8px;
}
.faq-item{
  border:1px solid #e0e0e0;
  border-radius:6px;
  margin-bottom:8px;
}
.faq-item.open{
  border-color:var(--red);
  background:var(--cream);
}
.faq-question{
  padding:16px 14px;font-weight:700;font-size:18px;
  display:flex;justify-content:space-between;align-items:center;
  cursor:pointer;color:#222;
  transition:color .2s;
}
.faq-question:hover{color:var(--red)}
.faq-question::after{
  content:"+";font-size:26px;color:var(--red);font-weight:300;flex-shrink:0;margin-left:14px;
  transition:transform .25s;
}
.faq-item.open .faq-question::after{content:"−";transform:rotate(180deg)}
.faq-answer{
  display:none;padding:0 14px 18px;font-size:16px;color:#444;line-height:1.6;
}
.faq-answer a{color:var(--red);text-decoration:none}
.faq-answer a:hover{color:var(--dark-red)}
.faq-item.open .faq-answer{display:block}

/* SITE FOOTER (book CTA + microsite note) */
.site-footer{
  background:#fff;color:#222;
  padding:0 10px 20px;
}
.footer-cta{
  max-width:1100px;margin:0 auto;
  display:flex;align-items:center;justify-content:center;gap:32px;
  flex-wrap:wrap;
}
.footer-cta span{
  font-size:20px;font-weight:500;color:#222;margin:0;
}
.microsite-note{
  max-width:1000px;margin:26px auto 0;
  text-align:center;font-style:italic;font-weight:700;
  font-size:16px;line-height:1.5;color:#222;
}
.microsite-note a{color:#3a6fd8;text-decoration:none}
.microsite-note a:hover{text-decoration:underline}

/* RESPONSIVE */
@media (max-width:1180px){
  .header-inner{padding:16px 24px;gap:14px}
  .logo img{height:52px}
  nav.main-nav{gap:16px;font-size:14px;padding-left:30px}
  .donate-now-btn{padding:9px 18px;font-size:14px}
}
@media (max-width:930px){
  nav.main-nav{
    display:none;
    position:absolute;top:100%;left:0;right:0;
    background:#fff;flex-direction:column;
    padding:24px;gap:16px;font-size:18px;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
  }
  nav.main-nav.open{display:flex}
  .mobile-toggle{display:block}
  .hero-text{margin-top:0}
  .hero-cta{justify-content:center}
  .slm-heading{font-size:38px}
  .carousel-slide{grid-template-columns:1fr;text-align:center;gap:20px}
  .carousel-slide .slide-img img{max-width:220px}
  .slide-socials{justify-content:center}
  .carousel-wrap{padding:0 40px}

  /* Windowed timeline — show 5 steps on medium screens */
  .timeline-steps{grid-template-columns:repeat(5,1fr) !important;gap:16px}
  .timeline-step{display:none}
  .timeline-step.visible{display:flex}
  .timeline-step .step-count{display:block}
  .timeline-step .step-label{font-size:15px;min-height:auto;margin-bottom:12px}
  .step-timeline .timeline-bar{left:10%;right:10%}
  .where-tabs{grid-template-columns:repeat(3,1fr)}
  .where-tab{font-size:15px;padding:12px 8px}
  .where-panel{padding:20px}
  .bb-layout{grid-template-columns:1fr;gap:20px}
  .bb-map iframe{height:280px}
  .drives-grid{grid-template-columns:1fr}
  .speech-bubble .games-cta{flex-direction:column;align-items:center}
  .speech-bubble{padding:24px 28px 56px;aspect-ratio:auto}
  .shuttle-heading{font-size:32px}
  .myth-wrap{padding:0 40px}
  .myth-slide{grid-template-columns:1fr;text-align:center;gap:20px;min-height:640px}
  .myth-slide .slide-img img{max-width:280px}
  .myth-slide.center-layout{grid-template-columns:1fr;min-height:auto;align-content:start}
  .myth-slide.center-layout .slide-img{justify-content:flex-start}
  .myth-slide.center-layout .slide-img img.float-left{position:static;max-width:80px;margin:0}
  .myth-slide.center-layout .slide-content{order:1}
  .myth-slide.center-layout .slide-img{order:2}
  .section-title{font-size:34px}
}
@media (max-width:930px){
  .myth-slide.center-layout{min-height:640px;padding-top:150px}
  .myth-slide.center-layout .slide-img img.float-left{max-width:60px}
}
@media (max-width:600px){
  /* Windowed timeline — narrow to 3 steps on small screens */
  .timeline-steps{grid-template-columns:repeat(3,1fr) !important}
  .step-timeline .timeline-bar{left:14%;right:14%}
  .header-inner{padding:16px 16px;gap:10px}
  .logo img{height:52px}
  .donate-now-btn{padding:10px 16px;font-size:14px}
  #save-lives-moment{padding-top:0}
  .slm-heading{font-size:26px}
  .hero-text .lead{font-size:15px}
  .hero-cta .btn{padding:9px 16px;font-size:13px;letter-spacing:.3px}
  .hero-cta{gap:8px}
  .where-tabs{grid-template-columns:repeat(2,1fr)}
  .section-title{font-size:28px}
  .footer-cta{flex-direction:column;gap:18px}
  .footer-cta span{font-size:18px;text-align:center}
  .microsite-note{font-size:16px;margin-top:22px}
}

/* SHARE / GREETING CARDS MODAL */
.share-modal{
  position:fixed;inset:0;z-index:2000;
  display:none;
  align-items:center;justify-content:center;
}
.share-modal.open{display:flex}
.share-modal-backdrop{
  position:absolute;inset:0;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(2px);
}
.share-modal-inner{
  position:relative;
  width:min(92vw,560px);
  max-height:92vh;
  display:flex;flex-direction:column;align-items:center;
  padding:24px 56px 18px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.share-modal-close{
  position:absolute;top:6px;right:8px;
  font-size:30px;line-height:1;
  color:#222;background:none;border:none;
  padding:6px 10px;
  z-index:2;
}
.share-modal-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:36px;height:36px;border-radius:50%;
  background:#fff;color:#555;
  box-shadow:0 2px 6px rgba(0,0,0,.18);
  font-size:18px;
  display:flex;align-items:center;justify-content:center;
  z-index:2;
}
.share-modal-arrow.prev{left:6px}
.share-modal-arrow.next{right:6px}
.share-modal-arrow:hover{color:var(--red)}
.share-card{display:block;grid-column:1;grid-row:1;width:100%;transform:translateX(100%);transition:transform .4s cubic-bezier(.4,0,.2,1);pointer-events:none}
.share-card.active{transform:translateX(0);pointer-events:auto}
.share-card.slide-enter-left{transform:translateX(-100%)}
.share-card.slide-exit-left{transform:translateX(-100%)}
.share-card.slide-exit-right{transform:translateX(100%)}
.share-card img{
  width:100%;max-height:65vh;object-fit:contain;
  margin:0 auto;
}
.share-modal-footer{
  text-align:center;
  margin-top:14px;
  font-size:16px;
  color:#333;
}
.share-modal-footer .share-download{
  color:var(--red);font-weight:700;text-decoration:underline;
}
.share-modal-counter{margin-top:6px;font-size:15px;color:#666}
@media (max-width:600px){
  .share-modal-inner{padding:20px 40px 14px}
  .share-modal-arrow{width:30px;height:30px;font-size:16px}
  .share-modal-arrow.prev{left:0}
  .share-modal-arrow.next{right:0}
  .share-card img{max-height:60vh}
}
