/* ==========================================================================
   Dunia Kidz Party — UI/UX Enhancements & Component Overrides 2025
   ========================================================================== */

/* Focus rings */
.btn:focus-visible {
  outline: 3px solid rgba(59,91,219,0.5);
  outline-offset: 3px;
}

.main-nav a:focus-visible {
  outline: 3px solid rgba(59,91,219,0.4);
  outline-offset: 2px;
  border-radius: 8px;
}

.prev-btn:focus-visible,
.next-btn:focus-visible {
  outline: 3px solid rgba(59,91,219,0.4);
  outline-offset: 3px;
}

/* Gallery preview card enhancements */
.gallery-preview-card:focus-visible {
  outline: 3px solid rgba(255,212,59,0.6);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(255,212,59,0.15);
}

/* Body overlay when mobile menu open */
body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.45);
  backdrop-filter: blur(2px);
  z-index: 999;
}

/* Shrink header on scroll */
.site-header.scrolled .header-inner {
  height: calc(var(--header-height) - 8px);
  transition: height 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger {
  background: transparent;
}
.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.mobile-menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}


/* City nav pills */
.city-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0 0 16px;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  background: white;
}
.city-pill:hover,
.city-pill:focus-visible {
  background: linear-gradient(135deg, #3B5BDB, #7C3AED);
  color: white;
  border-color: transparent;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(59,91,219,0.25);
}

/* City card actions */
.city-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.city-actions .btn {
  width: 100%;
  min-width: 0;
}
@media (max-width: 640px) {
  .city-actions {
    grid-template-columns: 1fr;
  }
}

/* Map embed responsive */
.map-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 2px solid rgba(59,91,219,0.1);
}
.map-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* City image styling */
.city-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 14px;
  background-image: var(--city-bg);
  background-size: cover;
  background-position: 50% 40%;
  background-repeat: no-repeat;
}
.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.city-image:hover img {
  transform: scale(1.04);
}

/* Notice / success banner */
.notice {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05));
  border: 1.5px solid rgba(34,197,94,0.35);
  border-radius: 12px;
  color: #15803d;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Form error states */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-error-msg {
  color: #ef4444;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Scroll progress bar (top) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #3B5BDB, #7C3AED, #FFD43B);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Lokasi page - hero label */
.lokasi-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  color: var(--accent, #FFD43B);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,212,59,0.3);
  margin-bottom: 1rem;
}

/* ============================================================
   Hero Photo Collage
   ============================================================ */
.hero-photo-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(59,91,219,0.3), 0 8px 24px rgba(0,0,0,0.15);
  max-width: 440px;
  margin: 0 auto;
}

.collage-main {
  grid-row: span 2;
  overflow: hidden;
}

.collage-main img,
.collage-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.collage-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.collage-side img {
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-photo-collage:hover .collage-main img,
.hero-photo-collage:hover .collage-side img {
  transform: scale(1.05);
}


/* ============================================================
   Package card enhancements
   ============================================================ */
.package-meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  opacity: 0.85;
  color: rgba(255,255,255,0.9);
}

.package-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.package-body li i.fa-check-circle {
  color: var(--success, #22C55E);
}

.packages-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-muted, #94a3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.packages-note i {
  color: var(--primary, #3B5BDB);
}

.packages-note a {
  color: var(--primary, #3B5BDB);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   CTA section improvements
   ============================================================ */

.cta-buttons-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
}

.cta-buttons-row .btn-white {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}

.cta-buttons-row .btn-white:hover {
  background: white;
  color: var(--primary, #3B5BDB);
  border-color: white;
}

.cta-note {
  font-size: 0.82rem;
  opacity: 0.7;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}

/* ============================================================
   Hero image responsive
   ============================================================ */
.hero-image-wrap {
  position: relative;
}

@media (max-width: 768px) {
  .hero-photo-collage {
    max-width: 320px;
    gap: 6px;
  }
  .collage-side img { height: 120px; }
  .hero-badge-float { display: none; }
  .cta-buttons-row { flex-direction: column; align-items: center; }
  .cta-buttons-row .btn { width: 100%; max-width: 320px; }
}

/* ============================================================
   General polish
   ============================================================ */

/* Smooth scroll progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #3B5BDB, #7C3AED, #FFD43B);
  z-index: 9999;
  width: 0;
  transition: width 0.1s linear;
}

/* Improved testimonial slider dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-color, #e2e8f0);
  border: none; cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.t-dot.active {
  background: var(--primary, #3B5BDB);
  width: 22px;
  border-radius: 4px;
}

/* Feature cards: hover lift improvement */
.feature-card {
  will-change: transform;
}

/* Back to top: show after scroll */
.back-to-top {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NEW PAGE COMPONENTS — City, Service, FAQ, About, Paket pages
   ============================================================ */

/* Breadcrumb nav */
.breadcrumb-nav {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
  font-size: 0.83rem;
}
.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  color: #64748b;
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 6px;
  color: #94a3b8;
}
.breadcrumb a { color: #64748b; text-decoration: none; }
.breadcrumb a:hover { color: #3B5BDB; }
.breadcrumb li[aria-current="page"] { color: #1e293b; font-weight: 600; }

/* Page hero (non-homepage) */
.page-hero {
  background: #0f172a;
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.25;
}
.page-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.page-hero .hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero .service-label-hero {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #FFD43B;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Trust bar */
.trust-bar {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}
.trust-bar-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.trust-item strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e293b;
}
.trust-item span {
  font-size: 0.78rem;
  color: #64748b;
}

/* City coverage / neighborhood tags */
.city-coverage {
  padding: 48px 0;
  background: #f8fafc;
}
.city-coverage h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: #1e293b;
}
.city-coverage > .container > p {
  margin-top: 16px;
  color: #64748b;
  font-size: 0.9rem;
}
.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.neighborhood-tag {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

/* Packages section (standalone pages) */
.packages-section {
  padding: 64px 0;
  background: #fff;
}
.packages-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.packages-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}
.packages-section .section-header p {
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.package-card {
  background: #0f172a;
  color: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.package-card.package-popular {
  border: 2px solid #FFD43B;
}
.popular-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD43B;
  color: #1e293b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.package-card h2,
.package-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.package-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFD43B;
}
.package-meta {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
}
.package-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package-features li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.88);
  padding-left: 14px;
  position: relative;
}
.package-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #FFD43B;
  font-weight: 700;
}
.package-card .btn {
  margin-top: auto;
}
.package-card .btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}
.package-card .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Testimonials section (standalone) */
.testimonials-section {
  padding: 64px 0;
  background: #f8fafc;
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 36px;
}
.testimonials-section .section-header h2,
.testimonials-section > .container > h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  margin: 0 0 16px;
}
.testimonial-card blockquote p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
}
.testimonial-card footer strong {
  display: block;
  font-size: 0.88rem;
  color: #1e293b;
  font-weight: 700;
}
.testimonial-card footer span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* FAQ section */
.faq-section {
  padding: 64px 0;
  background: #fff;
}
.faq-section h2,
.faq-content .faq-category h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.faq-item {
  padding: 22px 24px;
  border-bottom: 1px solid #e2e8f0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px;
}
.faq-item p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.faq-more {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #64748b;
}
.faq-more a { color: #3B5BDB; font-weight: 600; }

/* FAQ page specific */
.faq-category-nav {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
}
.faq-category-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.faq-cat-pill {
  padding: 7px 16px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
}
.faq-cat-pill:hover {
  background: #3B5BDB;
  color: #fff;
  border-color: #3B5BDB;
}
.faq-content {
  padding: 56px 0;
}
.faq-category {
  margin-bottom: 48px;
}

/* Services grid */
.services-overview {
  padding: 64px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
}
.service-label {
  display: inline-block;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.service-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.service-card h2 a { color: #1e293b; text-decoration: none; }
.service-card h2 a:hover { color: #3B5BDB; }
.service-card > p {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 16px;
  line-height: 1.55;
}
.service-features-preview {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.84rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-features-preview li::before {
  content: '– ';
  color: #3B5BDB;
  font-weight: 700;
}

/* Service detail layout */
.service-description {
  padding: 64px 0;
}
.service-desc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-desc-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}
.service-desc-text p {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.7;
}
.service-features-box {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
}
.service-features-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}
.service-features-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features-box ul li {
  font-size: 0.88rem;
  color: #334155;
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}
.service-features-box ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #3B5BDB;
  font-weight: 700;
}
@media (max-width: 768px) {
  .service-desc-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* About page */
.about-story {
  padding: 64px 0;
  background: #fff;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-story .about-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}
.about-story .about-text p {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-story .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-item {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #1e293b;
}
.stat-item span {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .about-story-inner { grid-template-columns: 1fr; }
}

.about-values {
  padding: 64px 0;
  background: #f8fafc;
}
.about-values > .container > h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 36px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.87rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.about-contact {
  padding: 56px 0;
  background: #fff;
}
.about-contact > .container > h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 28px;
}
.contact-info-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.contact-info-block > div strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 8px;
}
.contact-info-block > div p {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.55;
  margin: 0 0 4px;
}
.contact-info-block a { color: #3B5BDB; font-weight: 600; }

/* CTA section */
.cta-section {
  background: #0f172a;
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  min-height: 54px;
}

/* Related articles (standalone pages) */
.related-articles {
  padding: 56px 0;
  background: #f8fafc;
}
.related-articles > .container > h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 28px;
  text-align: center;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.articles-grid-large .article-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}
.article-card h2, .article-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}
.article-card h2 a, .article-card h3 a {
  color: #1e293b;
  text-decoration: none;
}
.article-card h2 a:hover, .article-card h3 a:hover { color: #3B5BDB; }
.article-card p {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
}
.article-category {
  background: #f1f5f9;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.article-read, .article-date {
  font-size: 0.78rem;
  color: #94a3b8;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.article-tag {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.76rem;
  color: #64748b;
}
.article-read-link {
  font-size: 0.87rem;
  font-weight: 600;
  color: #3B5BDB;
  text-decoration: none;
  margin-top: auto;
}
.article-read-link:hover { text-decoration: underline; }

/* Category filter */
.category-filter {
  padding: 20px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.category-filter nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-pill {
  padding: 6px 16px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
}
.cat-pill:hover {
  background: #3B5BDB;
  color: #fff;
  border-color: #3B5BDB;
}
.cat-pill-active {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
}

/* Articles section */
.articles-section {
  padding: 56px 0;
  background: #fff;
}

/* Footer grid (new pages) */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-col strong {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}
.footer-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

/* Nav active state */
.nav-active {
  color: #3B5BDB !important;
  font-weight: 700;
}

/* Packages full page */
.packages-full .package-card {
  margin-top: 12px;
}

/* Packages note (paket_list) */
.packages-note {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 48px 0;
  text-align: center;
}
.packages-note h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}
.packages-note p {
  color: #475569;
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ─── Lokasi listing page ─────────────────────────────────────── */
.lokasi-section {
  padding: 56px 0;
  background: #fff;
}

.lokasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.lokasi-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lokasi-card:hover {
  border-color: #3B5BDB;
  box-shadow: 0 4px 16px rgba(59,91,219,0.08);
}
.lokasi-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.lokasi-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.lokasi-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.lokasi-card-actions .btn {
  font-size: 0.82rem;
  padding: 8px 16px;
}

.lokasi-note {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 48px 0;
  text-align: center;
}
.lokasi-note h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}
.lokasi-note p {
  color: #475569;
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: 0.93rem;
  line-height: 1.6;
}

.lokasi-kantor {
  padding: 56px 0;
  background: #fff;
}
.lokasi-kantor h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}
.lokasi-kantor > .container > p {
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
