@import url('https://googleapis.com');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f4f9fd;
    color: #1a1a1a;
}

/* NAVBAR STYLES */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-auth a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn-login {
    color: #2563eb;
    padding: 8px 16px;
    transition: color 0.2s;
}

.btn-login:hover {
    color: #1d4ed8;
}

.btn-register {
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-register:hover {
    background-color: #1d4ed8;
}

/* HERO SECTION STYLES */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-image-box {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-cover: cover;
}

.hero-text-box h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.text-blue {
    color: #2563eb;
}

.hero-text-box p {
    margin-top: 24px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    max-width: 450px;
}

.cta-box {
    margin-top: 32px;
}

.btn-cta {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
    transition: all 0.2s;
}

.btn-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* RESPONSIVE UNTUK HP (MOBILE) */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Sembunyikan menu tengah di HP */
    }

    .hero-container {
        grid-template-columns: 1fr; /* Di HP susunan menjadi atas bawah */
        gap: 32px;
        text-align: center;
    }

    .hero-image-box {
        order: 2; /* Gambar pindah ke bawah seperti contoh okhome */
    }

    .hero-text-box {
        order: 1; /* Teks pindah ke atas */
    }

    .hero-text-box h1 {
        font-size: 32px;
    }

    .hero-text-box p {
        margin: 16px auto 0 auto;
        font-size: 16px;
    }
}
/* STYLES UNTUK KENAPA CHOOSE US */
.features-section {
    padding: 80px 20px;
    text-align: center;
}

.features-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.features-container .subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 40px;
}

.features-list {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    max-width: 450px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    background-color: #d1fae5;
    color: #059669;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.feature-text {
    font-size: 15px;
    color: #4a5568;
    font-weight: 500;
}

/* STYLES UNTUK CARA PESAN */
.steps-section {
    padding: 60px 20px 100px 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.steps-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 48px;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #f9fafb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    background-color: #2563eb;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* RESPONSIVE MOBILE UNTUK CARA PESAN */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr; /* Di HP jadi berbaris vertikal */
        gap: 24px;
    }
}
/* STYLES UNTUK LAYANAN KAMI */
.services-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
}

.services-header {
    text-align: left;
    margin-bottom: 48px;
}

.services-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.services-header p {
    color: #64748b;
    font-size: 15px;
    max-width: 600px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #eff6ff;
    margin: 0 auto 24px auto;
    overflow: hidden;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    text-align: left;
}

.service-card .desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.service-card .price {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: left;
}

.service-card .price span {
    font-size: 14px;
    font-weight: 700;
}

.btn-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px;
    border-radius: 12px;
    transition: background-color 0.2s;
}

.btn-detail:hover {
    background-color: #1d4ed8;
}

/* RESPONSIVE MOBILE UNTUK LAYANAN */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .services-header {
        text-align: center;
    }
    .services-header p {
        margin: 0 auto;
    }
}
/* STYLES UNTUK TESTIMONI INSTAGRAM */
.instagram-section {
    background-color: #111c2c;
    color: #ffffff;
    padding: 80px 20px;
}

.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.insta-text-box {
    text-align: left;
}

.insta-text-box h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.insta-text-box p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    max-width: 420px;
}

.insta-slider-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.slide-arrow {
    background: transparent;
    border: 1px solid #4b5563;
    color: #9ca3af;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.slide-arrow:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.insta-phone-frame {
    width: 240px;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #374151;
    background-color: #1f2937;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.insta-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.3;
}

.dot.active {
    opacity: 1;
}

.insta-footer-btn {
    margin-top: 48px;
    display: flex;
    justify-content: flex-end;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(31, 41, 55, 0.6);
    border: 1px solid #374151;
    color: #e5e7eb;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-instagram:hover {
    background-color: #1f2937;
    color: #ffffff;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .insta-text-box {
        text-align: center;
    }
    .insta-text-box p {
        margin: 0 auto;
    }
    .insta-footer-btn {
        justify-content: center;
    }
}

/* STYLES UNTUK TESTIMONI CONTAINER BIASA */
.review-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.review-header {
    text-align: center;
    margin-bottom: 48px;
}

.review-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.review-header p {
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background-color: #f4f9fd;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.comment {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.avatar-text {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-blue { background-color: #2563eb; }
.av-green { background-color: #10b981; }
.av-orange { background-color: #ea580c; }

.user-detail h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.user-detail p {
    font-size: 12px;
    color: #9ca3af;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .review-grid {
        grid-template-cols: 1fr;
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* STYLES UNTUK FAQ ACCORDION */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.faq-container h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111827;
}

.search-box {
    margin-bottom: 24px;
}

.search-box input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-box input:focus {
    border-color: #2563eb;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: #f3f4f6;
    border: none;
    color: #4b5563;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    background-color: #e5e7eb;
}

.tab-btn.active {
    background-color: #2563eb;
    color: #ffffff;
}

.cat-label {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin: 24px 0 8px 0;
}

.acc-item {
    border-bottom: 1px solid #f3f4f6;
    background-color: #ffffff;
}

.acc-header {
    padding: 18px 0;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.acc-header:hover {
    color: #2563eb;
}

.arrow-indicator {
    color: #9ca3af;
    font-size: 14px;
    transition: transform 0.2s;
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
}

.acc-content p {
    padding-bottom: 16px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.acc-item.open .arrow-indicator {
    transform: rotate(90deg);
}

/* STYLES UNTUK FOOTER */
.site-footer {
    background-color: #111c2c;
    color: #9ca3af;
    padding: 60px 20px;
    font-size: 13px;
    border-top: 1px solid #1f2937;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.brand-desc {
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 4px;
}

.legal-links a:hover {
    color: #ffffff;
}

.copyright {
    margin-top: 24px;
    color: #6b7280;
}

.links-col ul {
    list-style: none;
}

.links-col ul li {
    margin-bottom: 10px;
}

.links-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.links-col ul li a:hover {
    color: #ffffff;
}

.contact-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cs-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-sub p, .kemendag-info p {
    margin-bottom: 4px;
}

.kemendag-info {
    border-top: 1px solid #1f2937;
    padding-top: 16px;
}

.gov-title {
    color: #9ca3af;
    font-weight: 600;
}

.gov-sub {
    color: #6b7280;
    font-size: 12px;
}

/* RESPONSIVE MOBILE FOOTER */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
