* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

/* Warna Brand: Putih, Hitam, Emas */
:root {
    --white: #FFFFFF;
    --black: #000000;
    --gold: #D4AF37;
    --light-gold: #f8f1e0;     /* untuk latar lembut */
    --dark-gold: #b8960b;       /* untuk hover */
    --gray: #4a4a4a;             /* teks sekunder */
    --light-gray: #f5f5f5;        /* background ringan */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: var(--gold);
    font-size: 14px;
    display: block;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.cta-button {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.cta-button:hover {
    background: var(--dark-gold);
    color: var(--black) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 150px 0 80px;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--dark-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
    font-size: 18px;
}

/* Keunggulan */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.feature-card i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--black);
}

/* Legalitas Section */
.legalitas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.legal-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.legal-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--gold);
}

.legal-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 15px;
}

.legal-card h3 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 18px;
}

.legal-card p {
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 15px;
}

.btn-legal {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-gray);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-legal:hover {
    background: var(--gold);
    color: var(--black);
}

/* Layanan */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-category {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-category h3 {
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
}

.service-category ul {
    list-style: none;
}

.service-category li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category i {
    color: var(--gold);
    font-size: 14px;
}

/* Paket Harga */
.pricing-tabs {
    margin-top: 30px;
}

.pricing-subtitle {
    font-size: 24px;
    color: var(--black);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: scale(105%);
    border-color: var(--gold);
}

.best-seller {
    border: 2px solid var(--gold);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--black);
    font-size: 22px;
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    line-height: 1.2;
}

.price small {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

.duration {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.features-list i {
    color: var(--gold);
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--gold);
    color: var(--black);
}

/* Cara Kerja */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Testimoni */
.testimonials {
    background: var(--light-gray);
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimoni-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.testimoni-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.testimoni-card h4 {
    color: var(--black);
    margin-bottom: 5px;
}

.testimoni-card .position {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimoni-card i {
    color: var(--gold);
    margin-right: 5px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.blog-image {
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: var(--dark-gold);
}

.btn-all-articles {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s;
}

.btn-all-articles:hover {
    background: var(--gold);
    color: var(--black);
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.faq-question {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.faq-answer {
    color: var(--gray);
    padding-left: 20px;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--white);
}

.footer-col p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.footer-col i {
    margin-right: 10px;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content,
    .features,
    .legalitas-grid,
    .services-grid,
    .pricing-grid,
    .testimoni-grid,
    .blog-grid,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Logo styling dengan gambar */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px; /* Sedikit melengkung di sudut */
    object-fit: cover;
    border: 2px solid var(--gold); /* Border emas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.logo-text span {
    color: var(--gold);
    font-size: 14px;
    display: block;
    font-weight: 500;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text span {
        font-size: 11px;
    }
}

/* Floating WA dengan warna hijau dan animasi berdetak */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-wa a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366; /* Warna hijau resmi WhatsApp */
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-wa 2s infinite; /* Animasi berdetak */
}

.floating-wa a:hover {
    transform: scale(1.1);
    background: #128C7E; /* Warna hijau gelap WhatsApp saat hover */
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    animation: none; /* Hentikan animasi saat hover */
}

/* Animasi berdetak (pulse effect) */
@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* Tambahan efek untuk teks (opsional) */
.floating-wa a i {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}