/* --- SLIDER ANAK SECTION --- */
.child-slider-section {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}
.child-slider-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.child-slider-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.child-slider-filter {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  font-size: 15px;
  color: #444;
}

.child-slider-filter select {
  padding: 8px 16px;
  border: 2px solid #ff944d;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M1 1.5L6 6.5L11 1.5" stroke="%23ff944d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.child-slider-filter select:hover {
  border-color: #f47c20;
  box-shadow: 0 2px 8px rgba(255, 148, 77, 0.2);
}

.child-slider-filter select:focus {
  border-color: #f47c20;
  box-shadow: 0 0 0 3px rgba(255, 148, 77, 0.15);
}
.child-slider-list {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 10px 20px;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.child-slider-list::-webkit-scrollbar {
  display: none;
}

.child-slider-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.child-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  flex-shrink: 0;
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.child-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.child-card-info {
  padding: 12px 12px 0 12px;
}
.child-card-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}
.child-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.child-card-btn {
  background: #ff944d;
  color: #fff;
  border: none;
  border-radius: 0 0 12px 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s;
  display: block;
}
.child-card-btn:hover {
  background: #f47c20;
}
.child-slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px 20px 20px;
}
.slider-prev, .slider-next {
  background: #ff944d;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.18s;
}
.slider-prev:hover, .slider-next:hover {
  background: #f47c20;
}
@media (max-width: 900px) {
  .child-slider-list { flex-direction: column; gap: 12px; align-items: center; }
  .child-card { width: 100%; }
}

/* --- GALLERY SECTION ALT --- */
.gallery-section-alt {
  background: #fff;
  padding: 40px 0 60px 0;
  text-align: center;
}
.gallery-title-alt {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}
.gallery-highlight-alt {
  color: #222;
  font-size: 20px;
  font-weight: 700;
}
.gallery-list-alt {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.gallery-card-alt {
  position: relative;
  width: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  transition: box-shadow 0.18s, transform 0.18s;
}
.gallery-card-alt img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.gallery-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, #ff944d 80%, #ff944d00 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 0 4px 0;
  text-align: center;
  border-radius: 0 0 8px 8px;
}
.gallery-link-alt {
  display: inline-block;
  background: #ff944d;
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 28px;
  text-decoration: none;
  font-size: 16px;
  margin-top: 8px;
  transition: background 0.18s;
}
.gallery-link-alt:hover {
  background: #f47c20;
}
@media (max-width: 900px) {
  .gallery-list-alt { flex-direction: column; gap: 12px; align-items: center; }
  .gallery-card-alt { width: 100%; }
}
/* --- CTA ALT HOVER ANIMATION --- */
.cta-item-alt {
  transition: transform 0.22s cubic-bezier(.4,1.6,.6,1), box-shadow 0.18s;
}
.cta-item-alt:hover, .cta-item-alt:focus {
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 12px 32px 0 rgba(255,122,47,0.18);
  z-index: 3;
}
.cta-item-alt:hover .cta-icon-alt, .cta-item-alt:focus .cta-icon-alt {
  border-color: #f47c20;
  box-shadow: 0 4px 16px 0 rgba(255,122,47,0.18);
}
.cta-item-alt:hover .cta-label-alt, .cta-item-alt:focus .cta-label-alt {
  color: #f47c20;
}
/* --- CTA SECTION ALT (Screenshot Style) --- */
.cta-section-alt {
  background: #fff;
  padding: 32px 0 0 0;
  display: flex;
  justify-content: center;
}
.cta-list-alt {
  display: flex;
  gap: 0;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
  background: linear-gradient(90deg, #ff944d 0%, #ffe1b2 100%);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 6px 18px 0 rgba(0,0,0,0.10);
  padding: 0 0 0 0;
  position: relative;
}
.cta-item-alt {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 24px 0;
  position: relative;
  z-index: 2;
  color: #ff944d;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.18s;
}
.cta-icon-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
  margin-top: -45px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  border: 2px solid #ff944d;
}
.cta-label-alt {
  margin-top: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.cta-item-alt:hover .cta-icon-alt {
  border-color: #f47c20;
}
.cta-item-alt:hover .cta-label-alt {
  color: #f47c20;
}
@media (max-width: 900px) {
  .cta-section-alt {
    padding: 24px 0 0 0;
  }
  
  .cta-list-alt { 
    flex-direction: column; 
    gap: 20px;
    padding: 20px 16px;
    border-radius: 12px;
    margin: 0 16px;
  }
  
  .cta-item-alt { 
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
  }
  
  .cta-icon-alt { 
    margin-top: 0;
    margin-bottom: 0;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }
  
  .cta-icon-alt img {
    width: 35px;
    height: 35px;
  }
  
  .cta-label-alt {
    font-size: 16px;
    text-align: left;
    align-self: center;
  }
}

/* --- INFO SECTION ALT (Screenshot Style) --- */
.info-section-alt {
  background: #fff;
  padding: 40px 0 0 0;
  display: flex;
  justify-content: center;
}
.info-content-alt {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.info-icon-alt {
  flex-shrink: 0;
  margin-top: 8px;
}
.info-main-alt {
  flex: 1 1 0;
  min-width: 320px;
}
.info-title-alt {
  color: #ff944d;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-highlight-alt {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  margin-top: 8px;
  text-transform: uppercase;
}
.info-desc-alt {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}
.info-link-alt {
  color: #ff944d;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-top: 8px;
  transition: color 0.18s;
}
.info-link-alt:hover {
  color: #f47c20;
}
.info-video-alt {
  flex: 1 1 0;
  max-width: 420px;
  position: relative;
}
.info-video-alt img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 24px 0 rgba(255,122,47,0.10);
}
.info-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition: filter 0.18s;
}
.info-video-play:hover {
  filter: brightness(1.1) drop-shadow(0 2px 8px #ff944d44);
}
@media (max-width: 900px) {
  .info-content-alt { flex-direction: column; gap: 24px; align-items: stretch; }
  .info-video-alt { max-width: 100%; }
}
/* --- GLOBAL & RESPONSIVE --- */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
  color: #222;
  margin-top: 0;
}
a {
  color: #f47c20;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #ff944d;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
main {
  min-height: 60vh;
  background: #fff;
}
@media (max-width: 900px) {
  body { font-size: 15px; }
  h1 { font-size: 32px; }
  h2 { font-size: 22px; }
}
@media (max-width: 600px) {
  body { font-size: 14px; }
  h1 { font-size: 22px; }
  h2 { font-size: 16px; }
}
/* --- FOOTER --- */
.site-footer {
  background: #fff;
  color: #222;
  font-size: 15px;
  border-top: 1px solid #eee;
  margin-top: 48px;
}
.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px 0 24px;
}
.footer-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-col, .footer-news {
  flex: 1 1 180px;
  margin-bottom: 24px;
}
.footer-title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
  color: #f47c20;
}
.footer-col a {
  display: block;
  color: #222;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.18s;
}
.footer-col a:hover {
  color: #f47c20;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.newsletter-row {
  display: flex;
  gap: 12px;
}
.newsletter-names {
  display: flex;
  gap: 12px;
}
.newsletter-names input {
  flex: 1;
}
.newsletter-email-row {
  margin-top: 4px;
  display: flex;
  gap: 12px;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 15px;
  outline: none;
  flex: 1;
}
.newsletter-button {
  background: #f47c20;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.newsletter-button:hover {
  background: #ff944d;
}
.footer-social-row {
  margin-top: 12px;
}
.footer-social-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 4px;
  display: block;
}
.footer-social-icons {
  display: flex;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  color: #f47c20;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.social-link:hover {
  background: #f47c20;
  color: #fff;
}
.footer-bar {
  background: #fff7ef;
  padding: 16px 0;
  margin-top: 12px;
}
.footer-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}
.footer-bar-text {
  font-size: 16px;
  color: #222;
}
.footer-bar-logo img {
  height: 36px;
  width: auto;
}
.footer-bottom {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  color: #888;
}
.footer-bottom-links {
  margin-bottom: 4px;
}
.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.18s;
}
.footer-bottom-links a:hover {
  color: #f47c20;
}
@media (max-width: 900px) {
  .footer-main, .footer-bar-inner { flex-direction: column; gap: 16px; padding: 0 8px; }
  .footer-grid { flex-direction: column; gap: 16px; }
}

/* --- HERO HOME SLIDER (Hanya di Homepage) --- */
.hero-home-slider-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #000;
  position: relative;
  overflow: hidden;
  height: 75vh;
  min-height: 550px;
}
.hero-home-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-home-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}
.hero-home-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-home-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}
.hero-home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}
.hero-home-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FF944D;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
  line-height: 1.2;
}
.hero-home-desc {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
}
.hero-home-btn {
  display: inline-block;
  background: #FF944D;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255,148,77,0.4);
}
.hero-home-btn:hover {
  background: #f47c20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,148,77,0.6);
}
.hero-home-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  color: #FF944D;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-home-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}
.hero-home-prev {
  left: 20px;
}
.hero-home-next {
  right: 20px;
}
.hero-home-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-home-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-home-dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .hero-home-slider-section {
    height: 500px;
  }
  .hero-home-title {
    font-size: 32px;
  }
  .hero-home-desc {
    font-size: 16px;
  }
  .hero-home-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
  .hero-home-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .hero-home-slider-section {
    height: 400px;
  }
  .hero-home-title {
    font-size: 24px;
  }
  .hero-home-desc {
    font-size: 14px;
  }
}

/* --- CTA SECTION --- */
.cta-section {
  background: #fff;
  padding: 32px 0 16px 0;
  display: flex;
  justify-content: center;
}
.cta-list {
  display: flex;
  gap: 32px;
  max-width: 900px;
  width: 100%;
  justify-content: center;
}
.cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  padding: 24px 32px;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  font-size: 18px;
  transition: box-shadow 0.18s, background 0.18s;
}
.cta-item:hover {
  background: #ff944d11;
  box-shadow: 0 8px 32px 0 rgba(255,122,47,0.10);
}
.cta-icon {
  font-size: 38px;
  margin-bottom: 10px;
  color: #f47c20;
}
@media (max-width: 900px) {
  .cta-list { flex-direction: column; gap: 16px; align-items: center; }
  .cta-item { width: 100%; max-width: 320px; }
}

/* --- INFO SECTION --- */
.info-section {
  background: #fff7ef;
  padding: 32px 0;
  text-align: center;
}
.info-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
}
.info-desc {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* --- NEWS SECTION --- */
.news-section {
  background: #fff;
  padding: 32px 0 16px 0;
  text-align: center;
}
.news-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin-bottom: 24px;
}
.news-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  width: 320px;
  max-width: 100%;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s;
  cursor: pointer;
}
.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}
.news-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  padding: 16px 16px 8px;
  transition: color 0.3s;
}
.news-card-date {
  font-size: 13px;
  color: #999;
  padding: 0 16px 16px;
}
.news-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,122,47,0.15);
  transform: translateY(-4px);
}
.news-card:hover img {
  transform: scale(1.05);
}
.news-card:hover .news-card-title {
  color: #FF944D;
}
@media (max-width: 900px) {
  .news-list { flex-direction: column; gap: 16px; align-items: center; }
  .news-card { width: 100%; }
}

/* --- SUBSCRIBE & SOSMED SECTION --- */
.subscribe-section {
  background: #fff7ef;
  padding: 32px 0 24px 0;
  text-align: center;
}
.subscribe-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.subscribe-form input[type="email"] {
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 24px;
  font-size: 16px;
  outline: none;
  min-width: 220px;
}
.subscribe-form button {
  background: #f47c20;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.subscribe-form button:hover {
  background: #ff944d;
}
.sosmed-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.sosmed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  color: #f47c20;
  font-size: 22px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.sosmed-icon:hover {
  background: #f47c20;
  color: #fff;
}
@media (max-width: 900px) {
  .subscribe-form { flex-direction: column; gap: 8px; }
}
/* --- NAVBAR & DROPDOWN --- */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  flex: 1;
  margin-left: 32px;
}
.nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item > a {
  color: #222;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  display: block;
}
.nav-item > a:hover,
.nav-item > a:focus {
  background: #ff944d22;
  color: #f47c20;
}
.has-dropdown {
  position: relative;
}
.has-dropdown > .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.10);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 10;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  display: block;
}
.dropdown li {
  list-style: none;
}
.dropdown a {
  color: #222;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 18px;
  display: block;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.dropdown a:hover,
.dropdown a:focus {
  background: #ff944d22;
  color: #f47c20;
}
.dropdown .has-dropdown {
  position: relative;
}
.dropdown .has-dropdown > .dropdown {
  left: 100%;
  top: 0;
  margin-left: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-btn,
.lang-btn {
  background: none;
  border: none;
  color: #222;
  font-size: 16px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.18s;
}
.search-btn:hover,
.lang-btn:hover {
  background: #ff944d22;
}
.account-dropdown {
  position: relative;
}
.account {
  color: #222;
  font-size: 15px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.18s;
  white-space: nowrap;
}
.account:hover {
  background: #ff944d22;
  color: #f47c20;
}
.account-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 8px;
  min-width: 180px;
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0 0;
  z-index: 1000;
}
.account-dropdown:hover .account-menu {
  display: block;
}
.account-menu li {
  padding: 0;
  margin: 0;
}
.account-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}
.account-menu li a:hover {
  background: #f8f9fa;
  color: #FF944D;
}
.contact-link {
  color: #222;
  font-size: 15px;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.contact-link:hover {
  background: #ff944d22;
  color: #f47c20;
}
/* REMOVED - See line 1955 for correct mobile header styles */

/* Informasi Penting Slider Gambar */
.info-slider-section {
  width: 100%;
  background: #fff;
  padding: 32px 0 16px 0;
  display: flex;
  justify-content: center;
}
.info-slider-container {
  display: flex;
  align-items: center;
  max-width: 900px;
  width: 100%;
  position: relative;
}
.info-slider-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  scroll-behavior: smooth;
}
.info-slide {
  min-width: 100%;
  transition: transform 0.4s cubic-bezier(.4,1.6,.6,1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-slide img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
}
.info-slider-nav {
  background: #ff944d;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  transition: background 0.18s, box-shadow 0.18s;
}
.info-slider-nav:hover {
  background: #f47c20;
  box-shadow: 0 4px 16px 0 rgba(255,122,47,0.18);
}
@media (max-width: 600px) {
  .info-slider-section { padding: 16px 0 8px 0; }
  .info-slide img { max-height: 180px; }
  .info-slider-container { max-width: 100vw; }
}
.hero-menu-item {
  /* ...existing code... */
  transition: color 0.18s, transform 0.22s cubic-bezier(.4,1.6,.6,1), box-shadow 0.18s;
}
.hero-menu-item .hero-menu-icon {
  /* ...existing code... */
  transition: border-color 0.18s, color 0.18s, transform 0.22s cubic-bezier(.4,1.6,.6,1), box-shadow 0.18s;
}
.hero-menu-item.sponsor-animate:hover .hero-menu-icon,
.hero-menu-item.sponsor-animate:focus .hero-menu-icon {
  transform: translateY(-10px) scale(1.08) rotate(-8deg);
  box-shadow: 0 8px 24px 0 rgba(255,122,47,0.18);
}
.hero-menu-item.sponsor-animate:hover span:last-child,
.hero-menu-item.sponsor-animate:focus span:last-child {
  transform: translateY(-4px) scale(1.04);
  color: #f47c20;
}
.hero-menu-item.sponsor-animate span:last-child {
  transition: color 0.18s, transform 0.22s cubic-bezier(.4,1.6,.6,1);
}
.hero-menu {
  background: none;
  box-shadow: none;
  padding: 0;
}
.hero-menu-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  position: relative;
}
.hero-menu-bg {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  background: linear-gradient(90deg, #ff944d 0%, #ff944d 70%, #ffe1b2 100%);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 6px 18px 0 rgba(0,0,0,0.10);
  z-index: 1;
}
.hero-menu-item {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 0 0 24px 0;
  transition: color 0.18s;
}
.hero-menu-item .hero-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: #fff;
  border: 2px solid #ff944d;
  border-radius: 50%;
  color: #ff944d;
  font-size: 38px;
  margin-bottom: 10px;
  margin-top: -45px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}
.hero-menu-item span:last-child {
  margin-top: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-menu-item:hover .hero-menu-icon {
  border-color: #f47c20;
  color: #f47c20;
}
.hero-menu-item:hover span:last-child {
  color: #f47c20;
}
@media (max-width: 900px) {
  .hero-menu-inner { flex-direction: column; gap: 0; }
  .hero-menu-bg { height: 120px; }
  .hero-menu-item { padding-bottom: 32px; }
  .hero-menu-item .hero-menu-icon { margin-top: -45px; }
}
/* --- Home Page Styles --- */
.hero-menu {
  background: linear-gradient(90deg, #ffb36b 0%, #ff7a2f 100%);
  padding: 0;
}
.hero-menu-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 0 10px 0;
}
.hero-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  min-width: 120px;
  transition: background 0.18s, color 0.18s;
  border-radius: 8px;
  padding: 8px 0 0 0;
}
.hero-menu-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.hero-menu-icon {
  font-size: 32px;
  margin-bottom: 6px;
}

.hero-info {
  background: #fff;
  padding: 32px 0 0 0;
}
.hero-info-inner {
  display: flex;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  padding: 0 32px;
}
.hero-info-left {
  flex: 1 1 0;
}
.hero-info-right {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
}
.hero-info-img {
  max-width: 340px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.hero-info-badge {
  display: inline-block;
  background: #ff7a2f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.hero-info-link {
  display: inline-block;
  margin-top: 16px;
  color: #f47c20;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.hero-info-link:hover { text-decoration: underline; }

.child-slider {
  background: #fff;
  padding: 36px 0 0 0;
  text-align: center;
}
.child-slider-filter {
  margin: 0 auto 18px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #444;
}

.child-slider-filter select {
  padding: 8px 16px;
  border: 2px solid #ff944d;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg width=\"12\" height=\"8\" viewBox=\"0 0 12 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"%3e%3cpath d=\"M1 1.5L6 6.5L11 1.5\" stroke=\"%23ff944d\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.child-slider-filter select:hover {
  border-color: #f47c20;
  box-shadow: 0 2px 8px rgba(255, 148, 77, 0.2);
}

.child-slider-filter select:focus {
  border-color: #f47c20;
  box-shadow: 0 0 0 3px rgba(255, 148, 77, 0.15);
}
.child-slider-list {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
}
.child-card {
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 200px;
  min-width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.child-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.child-card-info {
  padding: 10px 10px 0 10px;
  text-align: left;
  width: 100%;
}
.child-card-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 2px;
}
.child-card-name {
  font-weight: 700;
  color: #444;
  font-size: 15px;
  margin-bottom: 8px;
}
.child-card-btn {
  background: #f47c20;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
  width: 90%;
  margin: 10px 0 12px 0;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s;
}
.child-card-btn:hover { background: #d65a00; }
.child-slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.child-slider-nav button {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.child-slider-nav button:hover { background: #f47c20; color: #fff; }

.gallery-section {
  background: #fff;
  padding: 36px 0 0 0;
  text-align: center;
}
.gallery-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}
.gallery-highlight { color: #f47c20; }
.gallery-list {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 16px;
}
.gallery-list img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}
.gallery-link {
  display: inline-block;
  color: #f47c20;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 18px;
}
.gallery-link:hover { text-decoration: underline; }

.news-section {
  background: #fff;
  padding: 36px 0 36px 0;
  text-align: center;
}
.news-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}
.news-list {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.news-card {
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.news-card-title {
  font-weight: 600;
  color: #444;
  font-size: 15px;
  padding: 12px 14px 16px 14px;
  text-align: left;
}
@media (max-width: 900px) {
  .hero-menu-inner { gap: 12px; }
  .hero-info-inner { flex-direction: column; gap: 18px; padding: 0 10px; }
  .hero-info-right { justify-content: center; }
  .child-slider-list, .gallery-list, .news-list { flex-direction: column; gap: 18px; align-items: center; }
  .child-card, .news-card { width: 90vw; max-width: 340px; }
  .gallery-list img { width: 90vw; max-width: 340px; }
}

/* OLD HEADER STYLES - REMOVED TO AVOID CONFLICT */

/* --- Dashboard Header Styles (refined) --- */
}
.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-header .header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.site-header .search-btn {
  background: transparent;
  border: none;
  color: #888;
  padding: 0 6px;
  display: flex;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.18s;
}
.site-header .search-btn:hover {
  color: #f47c20;
}
.site-header .account {
  color: #666;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
}
/* OLD HEADER STYLES - REMOVED TO AVOID CONFLICT */

/* --- Footer Cleaned & Matched --- */
.site-footer {
  background: #f7f7f7;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #444;
  margin-top: 0;
  font-size: 15px;
  border-top: 3px solid #ededed;
}
.footer-main {
  padding: 40px 0 0 0;
  background: #efefef;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  padding: 0 32px;
}
.footer-title {
  font-weight: 700;
  color: #444;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.footer-col a {
  display: block;
  color: #f47c20;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 15px;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-col a:hover {
  color: #d65a00;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.newsletter-names {
  display: flex;
  gap: 10px;
}
.newsletter-form input[type="text"], .newsletter-form input[type="email"] {
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 14px;
  height: 34px;
  background: #fff;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
}
.newsletter-form input[type="text"]:focus, .newsletter-form input[type="email"]:focus {
  border: 1.5px solid #f47c20;
}
.newsletter-email {
  margin-top: 0;
  margin-bottom: 0;
}
.newsletter-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.newsletter-email-row {
  margin-top: 10px;
}
.newsletter-email-row .newsletter-email {
  flex: 1 1 auto;
}
.newsletter-button {
  background: #f47c20;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  cursor: pointer;
}
.newsletter-button:hover {
  background: #d65a00;
}
.footer-social-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-label {
  font-weight: 500;
  color: #444;
  font-size: 14px;
  margin-right: 8px;
}
.footer-social-icons {
  display: flex;
  gap: 10px;
}
.footer-social-icons .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #888;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.footer-social-icons .social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.footer-social-icons .social-link:hover {
  color: #f47c20;
}
.footer-bar {
  background: #fff;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 36px;
}
.footer-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 32px;
}
.footer-bar-text {
  color: #444;
  font-size: 15px;
  justify-self: center;
}
.footer-bar-logo img {
  height: 38px;
}
.footer-bottom {
  background: #fff;
  padding: 16px 0 10px 0;
  text-align: center;
}
.footer-bottom-links {
  color: #f47c20;
  font-size: 13px;
  margin-bottom: 4px;
}
.footer-bottom-links a {
  color: #f47c20;
  text-decoration: none;
  margin: 0 6px;
  font-size: 13px;
  font-weight: 500;
}
.footer-bottom-links a:hover {
  color: #d65a00;
}
.footer-bottom-links span {
  color: #f47c20;
  margin: 0 2px;
}
.footer-bottom-copyright {
  color: #9ca3af;
  font-size: 13px;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 16px;
  }
}

/* --- Dashboard Header Styles (refined) --- */
.site-header.dashboard {
  position: relative;
  background: #333333;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .header-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
  gap: 12px;
  flex-wrap: nowrap;
}

.site-header .logo {
  display: flex;
  align-items: center;
}

.site-header .logo img{
  height:44px;
  display: block;
}

.site-header .main-nav {}

.site-header .nav-list{
  display:flex;
  gap:26px;
  align-items:center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .nav-item > a{
  color:#cfcfcf;
  text-decoration:none;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.06em;
  padding:6px 0;
  display: block;
}

.site-header .nav-item > a:hover{color:#fff}

.site-header .header-actions{
  display:flex;
  gap:12px;
  align-items:center;
}

.site-header .search-btn{
  background:transparent;
  border:none;
  color:#dcdcdc;
  padding:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
}

.site-header .search-btn svg{color:inherit}

.site-header .account{
  color:#dcdcdc;
  font-size:13px;
  cursor: pointer;
}

.site-header .contact-link{
  color:#dcdcdc;
  text-decoration:none;
  font-size:13px;
}

.site-header .lang-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:#fff;
  padding:5px 10px;
  border-radius:3px;
  font-size:13px;
  cursor: pointer;
}

.btn-donate-header {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-donate-header:hover {
  transform: scale(1.05);
}

/* page content container for admin */
.page-content .container{max-width:1200px;margin:28px auto;padding:0 18px}
.admin-login input{padding:8px 10px;margin:6px 0;border:1px solid #ccc;border-radius:4px}
.admin-login button{background:#f47c20;color:#fff;border:none;padding:8px 12px;border-radius:4px}

@media (max-width:1100px){
  .site-header .nav-list{gap:16px}
}

/* MOBILE: Clean Layout */
@media (max-width:900px){
  /* Background navbar putih */
  .site-header.dashboard {
    background: #fff !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }
  
  /* Hamburger button - hitam untuk background putih */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* Header layout: Hamburger | Donasi | spacer | Akun | Logo */
  .site-header .header-inner {
    display: flex !important;
    flex-direction: row !important;
    padding: 8px 12px !important;
    align-items: center !important;
    gap: 8px !important;
    height: auto !important;
  }
  
  /* Donasi button */
  .site-header .btn-donate-header {
    padding: 6px 12px !important;
    font-size: 12px !important;
    border-radius: 16px !important;
    flex-shrink: 0 !important;
  }
  
  /* Spacer untuk push ke kanan */
  .site-header .header-spacer {
    flex-grow: 1 !important;
  }
  
  /* Account dropdown */
  .site-header .account-dropdown {
    flex-shrink: 0 !important;
  }
  
  .site-header .account {
    color: #333 !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
  
  /* Logo paling kanan */
  .site-header .logo {
    display: flex !important;
    width: auto !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
  }
  
  .site-header .logo img {
    height: 36px !important;
    display: block !important;
  }
  
  /* Hide search, contact, lang di mobile */
  .site-header .header-actions {
    display: none !important;
  }
  
  /* Sidebar Menu */
  .site-header .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    z-index: 1000 !important;
    transition: left 0.3s ease !important;
    overflow-y: auto !important;
    padding: 20px 0 !important;
    display: block !important;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }
  
  .site-header .main-nav.active {
    left: 0 !important;
  }
  
  .site-header .nav-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .site-header .nav-item {
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    list-style: none !important;
  }
  
  .site-header .nav-item > a {
    display: block !important;
    padding: 18px 24px !important;
    font-size: 15px !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
  }
  
  .site-header .nav-item > a:hover {
    background: rgba(255,255,255,0.1) !important;
  }
  
  /* Dropdown di sidebar */
  .site-header .nav-item.has-dropdown .dropdown {
    position: static !important;
    display: none !important;
    background: rgba(0,0,0,0.2) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  
  .site-header .nav-item.has-dropdown:hover .dropdown {
    display: block !important;
  }
  
  .site-header .nav-item .dropdown li {
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }
  
  .site-header .nav-item .dropdown li a {
    padding: 14px 24px 14px 40px !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.9) !important;
  }
  
  .search-btn {
    padding: 5px !important;
  }
  
  .site-header .account {
    font-size: 10px !important;
  }
  
  /* Hide desktop items */
  .site-header .header-actions .contact-link,
  .site-header .header-actions .lang-btn {
    display: none !important;
  }
}
  }
  .footer-bar-inner {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    padding: 16px 16px;
  }
  .footer-bar-logo {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 24px 0 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }
  .footer-bar-inner {
    padding: 12px 10px;
  }
}
.footer-social-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-label {
  font-weight: 500;
  color: #444;
  font-size: 14px;
  margin-right: 8px;
}
.footer-social-icons {
  display: flex;
  gap: 10px;
}
.footer-social-icons a svg {
  display: block;
  width: 22px;
  height: 22px;
}
.footer-bar {
  background: #fff;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 36px;
}
.footer-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.footer-bar-text {
  color: #444;
  font-size: 15px;
}
.footer-bar-logo img {
  height: 36px;
}
.footer-bottom {
  background: #fff;
  padding: 16px 0 10px 0;
  text-align: center;
}
.footer-bottom-links {
  color: #ff7a2f;
  font-size: 13px;
  margin-bottom: 4px;
}
.footer-bottom-links a {
  color: #ff7a2f;
  text-decoration: none;
  margin: 0 6px;
  font-size: 13px;
  font-weight: 500;
}
.footer-bottom-links a:hover {
  color: #e05d0e;
}
.footer-bottom-links span {
  color: #ff7a2f;
  margin: 0 2px;
}
.footer-bottom-copyright {
  color: #9ca3af;
  font-size: 13px;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .footer-grid, .footer-bar-inner {
    flex-direction: column;
    display: flex;
    gap: 24px;
    align-items: stretch;
  }
  .footer-bar-inner {
    gap: 12px;
    align-items: center;
    text-align: center;
  }
  .footer-bar-logo {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 24px 0 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }
  .footer-bar-inner {
    padding: 12px 10px;
  }
}
/* =======================================
   STORIES PAGE STYLES
   ======================================= */

/* Homepage Stories Section */
.recent-stories-section {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}

.stories-slider-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.stories-slider-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.stories-slider-list {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 10px 20px;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stories-slider-list::-webkit-scrollbar {
  display: none;
}

.stories-slider-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.story-card-home {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 260px;
  min-width: 260px;
  max-width: 260px;
  flex-shrink: 0;
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.story-card-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.story-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card-home:hover .story-img {
  transform: scale(1.05);
}

.story-info-home {
  padding: 12px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-location {
  display: inline-block;
  font-size: 12px;
  color: #666;
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 6px;
  font-weight: 500;
}

.story-name {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 6px 0 4px;
  line-height: 1.3;
}

.story-author-name {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
  font-style: italic;
}

.btn-story-detail {
  background: #ff6b35;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease;
  display: block;
  margin-top: auto;
}

.btn-story-detail:hover {
  background: #e55a2b;
}

.stories-slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.story-slider-prev,
.story-slider-next {
  background: #ff6b35;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-slider-prev:hover,
.story-slider-next:hover {
  background: #e55a2b;
}

/* Stories Page */
.stories-hero {
  background: #fff;
  padding: 60px 20px 40px;
  text-align: center;
}

.stories-hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.stories-hero-desc {
  font-size: 15px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.stories-filter-section {
  background: #fff;
  padding: 0 20px 40px;
  text-align: center;
}

.category-filter {
  display: inline-flex;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.category-btn {
  padding: 10px 24px;
  background: white;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-right: 1px solid #ddd;
  transition: all 0.3s ease;
}

.category-btn:last-child {
  border-right: none;
}

.category-btn:hover {
  background: #f8f9fa;
  color: #333;
}

.category-btn.active {
  background: #ff6b35;
  color: white;
}

.stories-grid-section {
  padding: 20px 20px 60px;
  background: #f8f9fa;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.story-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.story-image-link {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  padding: 20px 16px;
  text-align: left;
}

.story-category {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
  font-weight: 400;
}

.story-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.story-title a {
  color: #333;
  text-decoration: none;
}

.story-meta {
  display: none;
}

.story-author {
  display: block;
  font-size: 13px;
  color: #999;
  margin-bottom: 16px;
  font-weight: 400;
}

.story-date,
.story-views {
  display: none;
}

.story-excerpt {
  display: none;
}

.story-read-more {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: #ff6b35;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.story-read-more:hover {
  background: #e55a2b;
  transform: none;
}

.no-stories {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #999;
}

/* Stories Gallery Page (like media) */
.stories-gallery-section {
  padding: 40px 20px 60px;
  background: #f8f9fa;
}

.stories-filter {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.stories-filter-btn {
  padding: 12px 24px;
  background: white;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-right: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stories-filter-btn:last-child {
  border-right: none;
}

.stories-filter-btn:hover {
  background: #f8f9fa;
  color: #333;
}

.stories-filter-btn.active {
  background: #ff6b35;
  color: white;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.story-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.story-item .story-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.story-item .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-item:hover .story-image img {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-item:hover .story-overlay {
  opacity: 1;
}

.view-icon {
  font-size: 40px;
}

.story-item .story-info {
  padding: 20px;
  text-align: center;
}

.story-item .story-category {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.story-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 10px 0;
  line-height: 1.4;
}

.story-item .story-author {
  font-size: 13px;
  color: #999;
  font-style: italic;
  margin-top: 8px;
}

.empty-stories {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.empty-stories h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
}

.empty-stories p {
  color: #999;
  font-size: 14px;
}

/* Story Modal */
.story-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

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

.story-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1;
}

.story-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.story-modal-close:hover {
  background: white;
  transform: rotate(90deg);
}

.story-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.story-modal-image {
  background: #f0f0f0;
}

.story-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.story-modal-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.modal-category {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  width: fit-content;
}

.story-modal-details h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.modal-author {
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-bottom: 24px;
}

.modal-content-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.modal-content-text p {
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .recent-stories-section {
    padding: 40px 0;
  }
  
  .stories-slider-title {
    font-size: 24px;
  }
  
  .stories-slider-desc {
    font-size: 14px;
  }
  
  .stories-slider-list {
    gap: 16px;
  }
  
  .story-card-home {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
  }
  
  .story-image-wrapper {
    height: 260px;
  }
  
  .stories-hero {
    padding: 40px 20px 30px;
  }
  
  .stories-hero-title {
    font-size: 24px;
  }
  
  .stories-hero-desc {
    font-size: 14px;
  }
  
  .stories-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
  }
  
  .stories-filter-btn {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .story-item .story-image {
    height: 220px;
  }
  
  .story-modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .story-modal-layout {
    grid-template-columns: 1fr;
  }
  
  .story-modal-image img {
    min-height: 250px;
  }
  
  .story-modal-details {
    padding: 30px 24px;
  }
  
  .story-modal-details h2 {
    font-size: 22px;
  }
  
  .modal-content-text {
    font-size: 14px;
  }
}

/* --- PAYMENT METHOD SELECTION CARDS --- */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.payment-option-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  display: block;
}

.payment-option-card input[type="radio"] {
  float: left;
  margin: 4px 8px 0 0;
}

.payment-card-content {
  overflow: hidden;
}

.payment-icon {
  font-size: 24px;
  float: left;
  margin-right: 8px;
}

.payment-info {
  overflow: hidden;
}

.payment-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 2px 0;
}

.payment-desc {
  font-size: 11px;
  color: #888;
  margin: 0;
}

@media (max-width: 768px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== MOBILE RESPONSIVE ENHANCEMENTS ===== */

/* Mobile Menu Toggle - Default HIDDEN for desktop */
.mobile-menu-toggle {
  display: none;
}

/* REMOVED DUPLICATE MOBILE STYLES - SEE LINE 1955 FOR CORRECT MOBILE STYLES */

@media (max-width: 640px) {
  /* Further mobile optimizations */
  .main-nav {
    width: 100%;
    left: -100%;
  }
  
  .site-header .logo img {
    height: 32px;
  }
  
  .btn-donate-header {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  /* Touch-friendly buttons */
  .btn-donate-submit,
  .btn-primary,
  .btn-secondary {
    min-height: 48px;
    font-size: 16px;
    padding: 12px 24px;
  }
  
  /* Modal optimizations */
  .modal-content,
  .modal-content-sponsor {
    width: 95%;
    margin: 20px auto;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .sponsor-modal-layout {
    flex-direction: column;
  }
  
  .sponsor-form-section,
  .sponsor-image-section {
    width: 100%;
  }
  
  .sponsor-image-section {
    min-height: 200px;
  }
  
  .sponsor-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .sponsor-icon {
    margin-right: 0;
  }
  
  /* Form inputs */
  .form-group-modern input,
  .form-group-modern select,
  .form-group-modern textarea {
    font-size: 16px;
    padding: 12px 16px;
    min-height: 48px;
  }
  
  /* Amount selection */
  .amount-selection {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .amount-btn {
    min-height: 48px;
    font-size: 14px;
    padding: 8px;
  }
  
  /* Children slider */
  .children-slider-wrapper {
    margin: 0 8px;
  }
  
  .child-slide {
    flex-direction: column;
  }
  
  .child-slide-image {
    width: 100%;
    height: 300px;
  }
  
  .child-slide-info {
    width: 100%;
    padding: 20px 16px;
  }
  
  .child-slide-name {
    font-size: 24px;
  }
  
  .child-slide-description {
    font-size: 14px;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  
  .slider-nav.slider-prev {
    left: 8px;
  }
  
  .slider-nav.slider-next {
    right: 8px;
  }
  
  /* Account dropdown */
  .account-dropdown {
    position: static;
  }
  
  .account-menu {
    right: 0;
    left: auto;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .hero-content h1,
  .sponsor-hero-title {
    font-size: 28px;
  }
  
  .hero-content p,
  .sponsor-hero-desc {
    font-size: 14px;
  }
  
  .amount-selection {
    grid-template-columns: 1fr;
  }
  
  .form-section-title {
    font-size: 16px;
  }
  
  .modal-content,
  .modal-content-sponsor {
    width: 100%;
    margin: 10px;
    border-radius: 12px;
  }
  
  .close {
    font-size: 32px;
    padding: 8px;
  }
}