/* Main Stylesheet for JatiJepara */

/* Pagination */
.pagination { margin: 3rem 0; display: flex; justify-content: center; gap: 0.5rem; }
.pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 0.375rem; border: 1px solid #cbd5e1; background: #fff; color: var(--jj-dark); transition: all 0.3s ease; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--jj-primary); color: #fff; border-color: var(--jj-primary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 0.375rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn--primary { background: var(--jj-primary); color: #fff; }
.btn--primary:hover { background: var(--jj-dark); color: #fff; }
.btn--accent { background: var(--jj-accent); color: #fff; }
.btn--accent:hover { background: #d97706; color: #fff; }
.btn--outline { border: 2px solid var(--jj-primary); color: var(--jj-primary); background: transparent; }
.btn--outline:hover { background: var(--jj-primary); color: #fff; }

/* Grid (Generic) */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }

/* Post Card */
.post-card,
.blog-card { background: #fff; border-radius: 0.5rem; overflow: hidden; box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.post-card:hover,
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.post-card__thumb img,
.blog-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card__thumb--placeholder img,
.blog-card__thumb--placeholder img { width: 100%; height: 200px; object-fit: cover; background: #e2e8f0; }
.post-card__content,
.blog-card__content { padding: 1.5rem; }
.post-card__meta,
.blog-card__meta { display: flex; gap: 1rem; font-size: 0.875rem; color: #64748b; margin-bottom: 0.5rem; flex-wrap: wrap; }
.post-card__title,
.blog-card__title { font-size: 1.25rem; margin-bottom: 1rem; }
.post-card__title a,
.blog-card__title a { color: var(--jj-dark); }
.post-card__title a:hover,
.blog-card__title a:hover { color: var(--jj-primary); }
.post-card__readmore,
.blog-card__readmore { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--jj-primary); }
.post-card__readmore:hover,
.blog-card__readmore:hover { color: var(--jj-accent); }

/* Footer */
.site-footer { padding: 4rem 0 0 0; }
.footer__grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer__logo-img img { max-width: 180px; margin-bottom: 1rem; }
.footer__logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer__about { font-size: 0.9375rem; line-height: 1.6; opacity: 0.9; margin-bottom: 1.5rem; }
.footer__heading { font-size: 1.125rem; color: #fff; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.5rem; }
.footer__heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--jj-accent); }
.footer__nav-list { list-style: none; padding: 0; margin: 0; }
.footer__nav-list li { margin-bottom: 0.75rem; }
.footer__nav-list a { opacity: 0.8; transition: opacity 0.3s ease, color 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer__nav-list a:hover { opacity: 1; color: var(--jj-accent); }
.footer__nav-list i { font-size: 0.75rem; color: var(--jj-accent); }
.footer__contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.footer__contact-list li { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.9375rem; opacity: 0.9; }
.footer__contact-list i { margin-top: 0.25rem; font-size: 1.125rem; }
.footer__bottom { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; font-size: 0.875rem; opacity: 0.7; }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__payment-icons { display: flex; gap: 1rem; font-size: 1.5rem; opacity: 0.8; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 3rem; height: 3rem; background: var(--jj-accent); color: #fff; border: none; border-radius: 50%; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; z-index: 40; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #d97706; }

/* ── Homepage Sections ────────────────────────────────────────────────────── */

.homepage-wrapper { display: flex; flex-direction: column; }
.homepage-wrapper > section { padding-top: 5rem; padding-bottom: 5rem; }
.homepage-wrapper > .home-hero { padding-top: 0; padding-bottom: 0; }

/* Section Titles */
.section-title-wrapper { margin-bottom: 2.75rem; }
.section-title { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--jj-primary); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-title-line { width: 80px; height: 4px; background: var(--jj-accent); border-radius: 9999px; margin: 0 auto; }
.section-title-line.text-left { margin: 0; }
.section-subtitle { font-size: 1.125rem; color: #64748b; margin-top: 1rem; }

/* 1. Hero Beranda */
.home-hero { position: relative; overflow: hidden; display: flex; align-items: center; color: #fff; }
.home-hero.align-left { justify-content: flex-start; text-align: left; }
.home-hero.align-center { justify-content: center; text-align: center; }
.home-hero__bg { position: absolute; inset: 0; z-index: 0; }
.home-hero__bg-img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__overlay { position: absolute; inset: 0; z-index: 1; }
.home-hero__container { position: relative; z-index: 2; width: 100%; }
.home-hero__content { max-width: 680px; }
.home-hero.align-center .home-hero__content { margin: 0 auto; }
.home-hero__badge { display: inline-block; padding: 0.25rem 1rem; border-radius: 9999px; background: rgba(245, 158, 11, 0.2); color: var(--jj-accent); font-size: 0.875rem; font-weight: 600; border: 1px solid rgba(245, 158, 11, 0.3); text-transform: uppercase; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.home-hero__title { font-family: 'Playfair Display', Georgia, serif; font-size: 2.25rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .home-hero__title { font-size: 2.75rem; } }
.home-hero__title-highlight { color: var(--jj-accent); display: block; }
.home-hero__desc { font-size: 1rem; font-weight: 300; line-height: 1.5; color: #e2e8f0; margin-bottom: 2rem; }
.home-hero__actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 576px) { .home-hero__actions { flex-direction: row; } }
.home-hero.align-center .home-hero__actions { justify-content: center; }

/* Custom button color */
.btn--primary[style*="--btn-bg-custom"] {
    background: var(--btn-bg-custom);
}
.btn--primary[style*="--btn-bg-custom"]:hover {
    filter: brightness(0.9);
}

/* 2. Value Proposition (Keunggulan) */
.homepage-wrapper > .home-vp { position: relative; z-index: 1; padding-top: 0; padding-bottom: 5rem; }
.homepage-wrapper > .home-vp .home-vp__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; background: var(--vp-card-bg, #fff); padding: 2.75rem 2rem; border-radius: 0.75rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
@media (min-width: 768px) { .home-vp__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .home-vp__grid { grid-template-columns: repeat(4, 1fr); } }
.vp-card { text-align: center; padding: 1rem; }
.vp-card__icon-wrapper { width: 4rem; height: 4rem; margin: 0 auto 1.5rem; background: rgba(30, 58, 138, 0.05); color: var(--jj-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06); transition: all 0.3s ease; }
.vp-card:hover .vp-card__icon-wrapper { background: var(--jj-primary); color: #fff; transform: translateY(-5px); }
.vp-card__title { font-size: 1.125rem; font-weight: 700; color: var(--jj-primary); margin-bottom: 0.5rem; }
.vp-card__desc { font-size: 0.875rem; color: #475569; line-height: 1.5; }

/* 3. Kategori Ruangan */
.home-cats__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) {
    .home-cats__grid.grid-col-2,
    .home-cats__grid.grid-col-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .home-cats__grid.grid-col-3 { grid-template-columns: repeat(3, 1fr); }
    .home-cats__grid.grid-col-4 { grid-template-columns: repeat(4, 1fr); }
}
.cat-card { position: relative; height: 20rem; border-radius: 0.75rem; overflow: hidden; display: block; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.cat-card__img-wrapper { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.cat-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover .cat-card__img { transform: scale(1.08); }
.cat-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%); transition: background-color 0.3s ease; }
.cat-card:hover .cat-card__overlay { background: rgba(30, 58, 138, 0.85); }
.cat-card__content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem; z-index: 1; transition: transform 0.3s ease; }
.cat-card:hover .cat-card__content { transform: translateY(-8px); }
.cat-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.cat-card__cta { color: var(--jj-accent); font-size: 0.875rem; font-weight: 600; opacity: 0; transform: translateY(10px); transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; }
.cat-card:hover .cat-card__cta { opacity: 1; transform: translateY(0); }

/* 4. Produk Unggulan */
.home-products__header { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; gap: 1rem; }
@media (min-width: 768px) { .home-products__header { flex-direction: row; align-items: flex-end; } }
.home-products__viewall { font-weight: 600; color: var(--jj-primary); display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s ease; }
.home-products__viewall:hover { color: var(--jj-accent); }
.home-products__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .home-products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
    .home-products__grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
    .home-products__grid.columns-4 { grid-template-columns: repeat(4, 1fr); }
}

.product-card { background: #fff; border-radius: 0.75rem; overflow: hidden; border: 1px solid #f1f5f9; box-shadow: 0 1px 3px 0 rgba(0,0,0,0.05); transition: all 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.product-card__image-wrapper { position: relative; height: 16rem; overflow: hidden; background: #f8fafc; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__badge { position: absolute; top: 1rem; left: 1rem; background: var(--jj-primary); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; z-index: 1; }
.product-card__badge.badge--sale { background: #ef4444; }
.product-card__content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-card__rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--jj-accent); margin-bottom: 0.75rem; }
.product-card__reviews-count { color: #94a3b8; font-size: 0.75rem; }
.product-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem; }
.product-card__title a { color: var(--jj-primary); transition: color 0.3s ease; }
.product-card__title a:hover { color: var(--jj-accent); }
.product-card__desc { font-size: 0.875rem; color: #64748b; line-height: 1.5; margin-bottom: 1.25rem; flex-grow: 1; }
.product-card__footer { margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.product-card__price { margin-bottom: 0.25rem; }
.product-card__price .price { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.product-card__price ins { text-decoration: none; color: var(--jj-accent); font-weight: 700; font-size: 1.25rem; }
.product-card__price del { color: #94a3b8; font-size: 0.875rem; }
.product-card__price .amount { font-weight: 700; font-size: 1.25rem; color: var(--jj-accent); }
.btn--full { width: 100%; }
.btn--primary-card { background: var(--jj-primary); color: #fff; font-size: 0.875rem; padding: 0.625rem 1.25rem; }
.btn--primary-card:hover { background: var(--jj-dark); }
.btn--wa-card { background: #22c55e; color: #fff; font-size: 0.875rem; padding: 0.625rem 1.25rem; }
.btn--wa-card:hover { background: #16a34a; }

/* 5. Custom Order Banner */
.home-cob__card { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15); }
.home-cob__pattern { position: absolute; inset: 0; opacity: 0.08; background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); z-index: 0; pointer-events: none; }
.home-cob__inner { display: flex; flex-direction: column; z-index: 1; position: relative; }
@media (min-width: 1024px) { .home-cob__inner { flex-direction: row; } }
.home-cob__content { padding: 3rem 2rem; color: #fff; z-index: 2; }
@media (min-width: 1024px) { .home-cob__content { width: 60%; padding: 5rem 4rem; } }
.home-cob__title { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; }
@media (min-width: 768px) { .home-cob__title { font-size: 2.5rem; } }
.home-cob__desc { font-size: 1.125rem; color: #cbd5e1; line-height: 1.6; margin-bottom: 2rem; }
.home-cob__image-wrapper { position: relative; height: 16rem; width: 100%; overflow: hidden; }
@media (min-width: 1024px) { .home-cob__image-wrapper { width: 40%; height: auto; min-height: 100%; } }
.home-cob__img { width: 100%; height: 100%; object-fit: cover; }
.home-cob__image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--jj-primary) 0%, transparent 100%); pointer-events: none; }
@media (min-width: 1024px) {
    .home-cob__image-overlay { background: linear-gradient(to right, var(--jj-primary) 0%, transparent 100%); }
}

/* 6. Testimoni */
.home-testi__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .home-testi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
    .home-testi__grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
}
.testi-card { background: var(--jj-light); padding: 2.5rem 2rem; border-radius: 0.75rem; border: 1px solid #f1f5f9; position: relative; overflow: hidden; box-shadow: 0 1px 3px 0 rgba(0,0,0,0.05); }
.testi-card__quote-icon { position: absolute; top: 1.5rem; left: 1.5rem; font-size: 3rem; color: var(--jj-accent); opacity: 0.1; z-index: 0; pointer-events: none; }
.testi-card__inner { position: relative; z-index: 1; }
.testi-card__rating { color: var(--jj-accent); margin-bottom: 1.5rem; font-size: 0.875rem; }
.testi-card__text { font-style: italic; color: #475569; line-height: 1.6; margin-bottom: 2rem; font-size: 1rem; }
.testi-card__profile { display: flex; align-items: center; gap: 1rem; }
.testi-card__avatar { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; }
.testi-card__avatar-initial { width: 3rem; height: 3rem; border-radius: 50%; background: var(--jj-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.25rem; }
.testi-card__name { font-weight: 700; color: var(--jj-primary); font-size: 1rem; margin-bottom: 0.125rem; }
.testi-card__location { font-size: 0.875rem; color: #64748b; }

/* ── 1. Hero Global (Page Header) ────────────────────────────────────────── */
.hero-global { position: relative; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-global__overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-global__container { position: relative; z-index: 2; width: 100%; }
.hero-global__content { max-width: 800px; }
.hero-global__title { font-family: 'Playfair Display', Georgia, serif; font-size: 2.25rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .hero-global__title { font-size: 2.75rem; } }
.hero-global__subtitle { font-size: 1rem; opacity: 0.9; margin-bottom: 1rem; line-height: 1.5; }
.hero-global__breadcrumb { font-size: 0.875rem; margin-top: 1rem; }
.hero-global__breadcrumb .breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; color: rgba(255,255,255,0.7); }
.hero-global__breadcrumb .breadcrumb a { color: #fff; text-decoration: none; transition: color 0.3s; }
.hero-global__breadcrumb .breadcrumb a:hover { color: var(--jj-accent); }
.hero-global__breadcrumb .breadcrumb__sep { font-size: 0.75rem; opacity: 0.6; }
.hero-global__breadcrumb .breadcrumb__current { color: var(--jj-accent); font-weight: 600; }

/* ── 2. Halaman Custom Order ────────────────────────────────────────────── */
.custom-order-main { padding: 5rem 0; }
.custom-order-layout { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 1024px) {
    .custom-order-layout { flex-direction: row; }
}

.custom-order-form-area { width: 100%; }
@media (min-width: 1024px) {
    .custom-order-form-area { width: 65%; }
}
.custom-order-form-title { font-family: 'Playfair Display', Georgia, serif; font-size: 2.25rem; font-weight: 700; color: var(--jj-primary); line-height: 1.2; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .custom-order-form-title { font-size: 2.5rem; } }
.custom-order-form-desc { font-size: 1.0625rem; color: #475569; margin-bottom: 2rem; line-height: 1.7; }

/* Alert Box */
.alert { display: flex; gap: 1rem; padding: 1.25rem; border-radius: 0.5rem; border-left: 4px solid var(--jj-primary); margin-bottom: 2rem; }
.alert--info { background-color: rgba(30, 58, 138, 0.03); border-left-color: var(--jj-primary); }
.alert__icon { font-size: 1.25rem; color: var(--jj-primary); margin-top: 0.125rem; }
.alert__content strong { color: var(--jj-primary); display: block; margin-bottom: 0.25rem; }
.alert__content p { margin: 0; font-size: 0.875rem; color: #475569; line-height: 1.5; }

/* Fallback Form */
.fallback-form { display: flex; flex-direction: column; gap: 1.25rem; background: #fff; padding: 2rem; border-radius: 0.5rem; border: 1px solid #e2e8f0; }
.fallback-form .form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.fallback-form label { font-weight: 600; color: var(--jj-primary); font-size: 0.9375rem; }
.fallback-form input[type="text"],
.fallback-form input[type="tel"],
.fallback-form input[type="email"],
.fallback-form select,
.fallback-form textarea { padding: 0.75rem; border: 1px solid #cbd5e1; border-radius: 0.25rem; outline: none; background: #f8fafc; font-size: 0.9375rem; }
.fallback-form textarea { height: 8rem; resize: vertical; }

/* Sidebar Custom Order */
.custom-order-sidebar { width: 100%; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) {
    .custom-order-sidebar { width: 35%; flex-shrink: 0; }
}

.custom-order-guide-card { background: #fff; padding: 2rem; border-radius: 0.5rem; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.guide-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; color: var(--jj-primary); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid #f1f5f9; }
.guide-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.guide-card__list li { display: flex; gap: 1rem; }
.guide-card__list .step-num { width: 2rem; height: 2rem; background: var(--jj-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.guide-card__list div strong { color: var(--jj-primary); display: block; margin-bottom: 0.25rem; font-size: 0.9375rem; }
.guide-card__list div p { margin: 0; font-size: 0.875rem; color: #64748b; line-height: 1.5; }

.custom-order-wa-card { background: #ecfdf5; border: 1px solid #a7f3d0; padding: 2rem; border-radius: 0.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.wa-card__icon { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; }
.wa-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; color: #065f46; margin-bottom: 0.5rem; }
.wa-card__desc { font-size: 0.875rem; color: #065f46; line-height: 1.6; margin-bottom: 1.5rem; }

/* ── 3. Halaman Blog & Archive ──────────────────────────────────────────── */
.blog-main { padding: 4rem 0; }
.blog-layout { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 1024px) {
    .blog-layout { flex-direction: row; align-items: flex-start; }
}

.blog-content-area { width: 100%; }
@media (min-width: 1024px) {
    .blog-content-area { width: 75%; }
    .blog-content-area.no-sidebar { width: 100%; }
}

/* Sidebar Blog */
.blog-sidebar { width: 100%; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) {
    .blog-sidebar { width: 25%; flex-shrink: 0; position: sticky; top: 2rem; }
}
.blog-sidebar .widget { background: #fff; padding: 1.5rem; border-radius: 0.5rem; border: 1px solid #f1f5f9; margin-bottom: 0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.blog-sidebar .widget-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--jj-primary); margin-bottom: 1.25rem; position: relative; padding-bottom: 0.5rem; border-bottom: 1px solid #e2e8f0; }
.blog-sidebar .widget-title::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 40px; height: 2px; background: var(--jj-accent); }
.blog-sidebar .widget p:last-child { margin-bottom: 0; }
.blog-sidebar .wp-block-search__input,
.blog-sidebar input[type="search"],
.blog-sidebar input[type="text"],
.blog-sidebar select { width: 100%; max-width: 100%; }
.blog-sidebar ul { list-style: none; padding: 0; margin: 0; }
.blog-sidebar li { padding: 0.5rem 0; border-bottom: 1px solid #f8fafc; font-size: 0.9375rem; }
.blog-sidebar li:last-child { border-bottom: none; }
.blog-sidebar li a { color: #475569; text-decoration: none; transition: color 0.3s; }
.blog-sidebar li a:hover { color: var(--jj-accent); }

.blog-entry { background: #fff; padding: 2rem; border-radius: 0.5rem; border: 1px solid #f1f5f9; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
@media (min-width: 768px) { .blog-entry { padding: 3rem; } }
.blog-entry__featured-image { margin-bottom: 2rem; border-radius: 0.5rem; overflow: hidden; }
.blog-entry__featured-image img { width: 100%; height: auto; object-fit: cover; max-height: 450px; }
.blog-entry__meta { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.875rem; color: #64748b; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f1f5f9; }
.blog-entry__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.blog-entry__meta i { color: var(--jj-accent); }
.blog-entry__meta a { color: inherit; text-decoration: none; }
.blog-entry__meta a:hover { color: var(--jj-accent); }

.blog-entry__title { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; line-height: 1.2; color: var(--jj-primary); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .blog-entry__title { font-size: 2.5rem; } }
.blog-entry__body { font-size: 1.0625rem; color: #334155; line-height: 1.8; }
.blog-entry__body p { margin-bottom: 1.5rem; }
.blog-entry__body h2,
.blog-entry__body h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--jj-primary); margin: 2rem 0 1rem 0; }
.blog-entry__body h2 { font-size: 1.75rem; }
.blog-entry__body h3 { font-size: 1.5rem; }
.blog-entry__body blockquote { border-left: 4px solid var(--jj-accent); background: var(--jj-light); padding: 1.5rem; margin: 2rem 0; font-style: italic; border-radius: 0 0.5rem 0.5rem 0; }

/* Related Posts */
.related-posts { margin-top: 4rem; border-top: 1px solid #e2e8f0; padding-top: 3rem; }
.related-posts__title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--jj-primary); margin-bottom: 2rem; }
.related-posts__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 576px) { .related-posts__grid { grid-template-columns: repeat(3, 1fr); } }
.related-post-card { display: flex; flex-direction: column; gap: 0.75rem; }
.related-post-card__thumb img { width: 100%; height: 120px; object-fit: cover; border-radius: 0.375rem; }
.related-post-card__title { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; line-height: 1.3; margin: 0; }
.related-post-card__title a { color: var(--jj-primary); text-decoration: none; transition: color 0.3s; }
.related-post-card__title a:hover { color: var(--jj-accent); }
.related-post-card__date { font-size: 0.75rem; color: #94a3b8; }

/* Comments list custom wrapper */
.blog-entry #comments { margin-top: 4rem; border-top: 1px solid #e2e8f0; padding-top: 3rem; }
.blog-entry #respond { background: var(--jj-light); padding: 2rem; border-radius: 0.5rem; border: 1px solid #e2e8f0; margin-top: 3rem; }
.blog-entry #reply-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--jj-primary); margin-bottom: 1.5rem; display: block; }
.blog-entry #commentform { display: flex; flex-direction: column; gap: 1.25rem; }
.blog-entry #commentform textarea,
.blog-entry #commentform input[type="text"],
.blog-entry #commentform input[type="email"] { width: 100%; padding: 0.75rem; border: 1px solid #cbd5e1; border-radius: 0.25rem; outline: none; background: #fff; font-size: 0.9375rem; }
.blog-entry #commentform textarea { height: 8rem; resize: vertical; }
.blog-entry #commentform label { font-weight: 600; display: block; margin-bottom: 0.5rem; }

/* ── 5. Halaman Bawaan WordPress ───────────────────────────────────────── */
.page-main { padding: 5rem 0; }
.page-article { background: #fff; padding: 2rem; border-radius: 0.5rem; border: 1px solid #f1f5f9; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
@media (min-width: 768px) { .page-article { padding: 3rem; } }
.page-article__content { font-size: 1.0625rem; color: #334155; line-height: 1.8; }
.page-article__content > *:first-child { margin-top: 0; }
.page-article__content > * + * { margin-top: 1.25rem; }
.page-article__content h2,
.page-article__content h3,
.page-article__content h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--jj-primary); line-height: 1.25; }
.page-article__content h2 { font-size: 1.75rem; margin-top: 2.5rem; }
.page-article__content h3 { font-size: 1.5rem; margin-top: 2rem; }
.page-article__content h4 { font-size: 1.25rem; margin-top: 1.75rem; }
.page-article__content p,
.page-article__content ul,
.page-article__content ol,
.page-article__content blockquote { margin-bottom: 0; }
.page-article__content ul,
.page-article__content ol { padding-left: 1.25rem; }
.page-article__content p:last-child { margin-bottom: 0; }
.page-links { margin-top: 2rem; font-weight: 600; color: var(--jj-primary); }

/* ── 6. Halaman Tentang Kami ────────────────────────────────────────────── */
.about-main { padding: 0; }

/* Sejarah / Cerita */
.about-story { padding: 5rem 0; background: #fff; }
.about-story__layout { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
    .about-story__layout { flex-direction: row; }
}
.about-story__content { width: 100%; }
@media (min-width: 1024px) { .about-story__content { width: 55%; } }
.about-story__title { font-family: 'Playfair Display', Georgia, serif; font-size: 2.25rem; font-weight: 700; color: var(--jj-primary); line-height: 1.2; margin-bottom: 1rem; }
.about-story__text { font-size: 1.0625rem; color: #475569; line-height: 1.7; }
.about-story__image-wrapper { width: 100%; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
@media (min-width: 1024px) { .about-story__image-wrapper { width: 45%; } }
.about-story__img { width: 100%; height: auto; object-fit: cover; display: block; }

/* Angka & Statistik */
.about-stats { padding: 4rem 0; background: var(--jj-primary); color: #fff; text-align: center; }
.about-stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (min-width: 768px) { .about-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-item__number { font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 700; color: var(--jj-accent); line-height: 1; }
@media (min-width: 768px) { .stat-item__number { font-size: 3.5rem; } }
.stat-item__label { font-size: 0.9375rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }

/* Galeri Workshop */
.about-gallery { padding: 5rem 0; background: var(--jj-light); }
.about-gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .about-gallery__grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-card { position: relative; height: 15rem; border-radius: 0.5rem; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); cursor: pointer; }
.gallery-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover .gallery-card__img { transform: scale(1.08); }
.gallery-card__overlay { position: absolute; inset: 0; background: rgba(30,58,138,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.gallery-card:hover .gallery-card__overlay { opacity: 1; }
.gallery-card__zoom-icon { font-size: 2rem; color: #fff; }

/* Sertifikat / Trust */
.about-certs { padding: 4rem 0; background: #fff; border-top: 1px solid #f1f5f9; }
.about-certs__inner { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .about-certs__inner { grid-template-columns: repeat(3, 1fr); } }
.cert-card { text-align: center; padding: 2rem; border-radius: 0.5rem; border: 1px solid #f1f5f9; background: var(--jj-light); transition: all 0.3s; }
.cert-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); border-color: var(--jj-accent); }
.cert-card__icon { font-size: 2.5rem; color: var(--jj-accent); margin-bottom: 1.25rem; }
.cert-card__title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--jj-primary); margin-bottom: 0.75rem; }
.cert-card__desc { font-size: 0.875rem; color: #64748b; line-height: 1.5; }
