:root {
  --navy: #1a1f3c;
  --purple: #7c3f8e;
  --purple-light: #9b5dab;
  --lavender: #d4b8e0;
  --lavender-soft: #f0e8f5;
  --white: #ffffff;
  --gray: #f7f4fb;
  --text-dark: #12152b;
  --text-mid: #4a4a6a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(26,31,60,0.96); backdrop-filter: blur(12px);
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--white); letter-spacing: 2px; }
.nav-logo-sub { font-size: 0.6rem; color: var(--lavender); letter-spacing: 1px; text-transform: uppercase; display: block; line-height: 1; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--lavender); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--purple); color: var(--white) !important; padding: 8px 18px; border-radius: 50px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--purple-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--lavender); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); padding: 20px 24px; flex-direction: column; gap: 16px; z-index: 998; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--lavender); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }

.hero {
  min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, #2d1b69 50%, #4a1f6b 100%);
  display: flex; align-items: center; padding: 80px 24px 48px; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(124,63,142,0.3) 0%, transparent 60%); }
.hero-grid { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,184,224,0.15); border: 1px solid rgba(212,184,224,0.3); color: var(--lavender); font-size: 0.75rem; padding: 6px 14px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--lavender); }
.hero-desc { color: rgba(212,184,224,0.8); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--purple); color: var(--white); padding: 14px 28px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; box-shadow: 0 4px 20px rgba(124,63,142,0.4); }
.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,63,142,0.5); }
.btn-outline { border: 1.5px solid rgba(212,184,224,0.5); color: var(--lavender); padding: 14px 28px; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--lavender); color: var(--white); background: rgba(212,184,224,0.1); }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--white); }
.stat-label { font-size: 0.72rem; color: var(--lavender); text-transform: uppercase; letter-spacing: 1px; }

.hero-slide-wrap { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 80px rgba(0,0,0,0.5); border: 1px solid rgba(212,184,224,0.2); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide-1 { background: linear-gradient(135deg, #2c1654, #7c3f8e); }
.slide-2 { background: linear-gradient(135deg, #1a3a5c, #2d6fa8); }
.slide-3 { background: linear-gradient(135deg, #1c3a1c, #3d7a3d); }
.slide-4 { background: linear-gradient(135deg, #3a1c1c, #8a3d3d); }
.slide-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; padding: 24px; }
.slide-icon { font-size: 3rem; margin-bottom: 12px; }
.slide-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; }
.slide-sub { font-size: 0.85rem; opacity: 0.8; }
.slide-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; border: none; transition: all 0.3s; }
.dot.active { background: var(--white); width: 24px; border-radius: 4px; }

section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-desc { color: var(--text-mid); font-size: 1rem; line-height: 1.7; max-width: 560px; }

#layanan { background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card { background: var(--white); border-radius: 16px; padding: 32px 28px; border: 1px solid rgba(124,63,142,0.1); transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--purple), var(--lavender)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,63,142,0.15); border-color: rgba(124,63,142,0.25); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 52px; height: 52px; background: var(--lavender-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.service-desc { color: var(--text-mid); font-size: 0.88rem; line-height: 1.65; }

#video { background: var(--navy); }
#video .section-title { color: var(--white); }
#video .section-label { color: var(--lavender); }
#video .section-desc { color: rgba(212,184,224,0.75); }
.yt-wrap { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.yt-embed { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; box-shadow: 0 30px 60px rgba(0,0,0,0.4); border: 1px solid rgba(212,184,224,0.15); }
.yt-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.yt-cta-text { color: rgba(212,184,224,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.yt-btn { display: inline-flex; align-items: center; gap: 10px; background: #ff0000; color: white; text-decoration: none; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
.yt-btn:hover { background: #cc0000; transform: translateY(-2px); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.value-card { background: var(--lavender-soft); border-radius: 14px; padding: 28px 22px; border: 1px solid rgba(124,63,142,0.12); }
.value-icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.value-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

#klien { background: var(--gray); }
.clients-stats { display: flex; gap: 48px; margin: 40px 0; }
.client-stat { text-align: center; }
.client-stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--purple); }
.client-stat-label { font-size: 0.8rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 1px; }
.clients-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.client-chip { background: var(--white); border: 1px solid rgba(124,63,142,0.2); color: var(--navy); font-size: 0.82rem; font-weight: 500; padding: 8px 16px; border-radius: 50px; transition: all 0.2s; }
.client-chip:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }

#kontak { background: linear-gradient(135deg, var(--navy) 0%, #2d1b69 100%); text-align: center; }
#kontak .section-title { color: var(--white); }
#kontak .section-label { color: var(--lavender); }
.cta-desc { color: rgba(212,184,224,0.8); font-size: 1rem; line-height: 1.7; max-width: 500px; margin: 16px auto 40px; }
.wa-btn { display: inline-flex; align-items: center; gap: 12px; background: #25d366; color: white; text-decoration: none; padding: 18px 36px; border-radius: 50px; font-weight: 700; font-size: 1.05rem; box-shadow: 0 8px 30px rgba(37,211,102,0.4); transition: all 0.25s; }
.wa-btn:hover { background: #1db954; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.5); }
.contact-info { margin-top: 40px; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.contact-item { color: rgba(212,184,224,0.7); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }

footer { background: #0d1020; padding: 40px 24px 24px; color: rgba(212,184,224,0.5); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: 2px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(212,184,224,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--lavender); }
.footer-copy { width: 100%; text-align: center; font-size: 0.75rem; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }

.float-wa { position: fixed; bottom: 24px; right: 24px; z-index: 997; background: #25d366; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.5); text-decoration: none; animation: pulse-wa 2.5s infinite; }
.float-wa:hover { background: #1db954; }
.float-wa svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.5); } 50% { box-shadow: 0 8px 40px rgba(37,211,102,0.75); } }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Blog Styles */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin-bottom: 48px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid rgba(124,63,142,0.12); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(124,63,142,0.1); }
.blog-thumbnail { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--lavender-soft); }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { padding: 24px; }
.blog-meta { display: flex; gap: 12px; font-size: 0.75rem; color: var(--purple); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; line-height: 1.4; margin-bottom: 12px; }
.blog-title a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--purple); }
.blog-excerpt { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px; }
.blog-readmore { color: var(--purple); text-decoration: none; font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.blog-readmore:hover { gap: 8px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; background: var(--lavender-soft); color: var(--navy); text-decoration: none; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.pagination .page-numbers.current { background: var(--purple); color: white; }
.pagination .page-numbers:hover:not(.current) { background: var(--purple-light); color: white; }

.post-content h2 { font-family: 'Playfair Display', serif; color: var(--navy); margin: 32px 0 16px; }
.post-content h3 { font-family: 'Playfair Display', serif; color: var(--navy); margin: 24px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--purple); text-decoration: none; }
.post-content a:hover { text-decoration: underline; }
.post-content blockquote { border-left: 4px solid var(--purple); padding-left: 24px; margin: 24px 0; font-style: italic; color: var(--text-mid); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-slide-wrap { aspect-ratio: 16/9; order: -1; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.5rem; }
  .yt-wrap { grid-template-columns: 1fr; }
  .clients-stats { gap: 28px; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* Custom Logo */
.custom-logo-wrapper {
    display: flex;
    align-items: center;
}
.custom-logo-wrapper a {
    display: inline-block;
    text-decoration: none;
}
.custom-logo-wrapper img {
    height: 40px;
    width: auto;
}