/* ==================== COMPRO STYLE ==================== */

:root {
    --primary: #712ddf;
    --primary-dark: #3f0996;
    --primary-light: #dfcbff;
    --secondary: #714faa;
    --gray-bg: #F8FAFC;
}

.text-primary{
    color: #712ddf !important;
}

.bg-primary{
    background-color: #712ddf !important;
}

/* Reset & Base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ab86e8;
    background: var(--gray-bg);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}
.navbar-brand span {
    color: #ffffff;
}
.nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    color: #ffffff !important;
}
.nav-link:hover {
    color: #dfcbff !important;
    transform: translateY(-1px);
}
.navbar .btn-light {
    background: white;
    color: var(--primary) !important;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.navbar .btn-light:hover {
    background: #dfcbff;
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f0fdf4 0%, white 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1F2937;
}
.hero h1 span {
    color: var(--primary);
}
.hero p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 30px;
    line-height: 1.7;
}
.hero .btn-primary {
    background: var(--primary);
    border: none;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.hero .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46,125,100,0.35);
}
.hero .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.hero .btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.hero img {
    max-width: 100%;
    animation: floatHero 4s ease-in-out infinite;
}

/* Animasi Hero */
@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}
.features .icon-box {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.features .card {
    border: none;
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.features .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.features .card:hover .icon-box {
    background: var(--primary);
    color: white;
}
.features .card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.features .card p {
    font-size: 14px;
    color: #6B7280;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}
.stats .stat-number {
    font-size: 48px;
    font-weight: 800;
}
.stats .stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #1F2937;
    color: #9CA3AF;
    padding: 40px 0;
}
footer a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: white;
}
footer .brand {
    font-size: 20px;
    font-weight: 700;
    color: white;
}
footer .brand span {
    color: #dfcbff;
}
footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s;
    margin-right: 8px;
}
footer .social-icons a:hover {
    background: var(--primary);
    color: white;
}

/* Min Height */
.min-vh-75 {
    min-height: 75vh;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
        text-align: center;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero .btn {
        width: 100%;
        margin: 5px 0 !important;
    }
    .stats .stat-number {
        font-size: 32px;
    }
    .features .card {
        margin-bottom: 20px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==================== Page Header ==================== */
.page-header {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, #f0fdf4 0%, white 100%);
}
.page-header h1 {
    font-size: 36px;
}

/* ==================== CTA Section ==================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}
.cta .btn-light {
    background: white;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

/* ==================== FAQ Accordion ==================== */
.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-accordion .accordion-button {
    border-radius: 12px !important;
    font-weight: 600;
    padding: 16px 20px;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
}
.faq-accordion .accordion-body {
    padding: 16px 20px;
    color: #6B7280;
    line-height: 1.8;
}

/* ==================== Terms/Privacy Content ==================== */
.page-content h4 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}
.page-content p {
    color: #4B5563;
    line-height: 1.8;
}
.page-content ul {
    padding-left: 20px;
}
.page-content ul li {
    margin-bottom: 8px;
    color: #4B5563;
}

/* ==================== AVATAR PROFILE ==================== */
.avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    margin: 0 auto;
}

.avatar-placeholder .img-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .avatar-placeholder {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .avatar-placeholder {
        width: 100px;
        height: 100px;
    }
}


/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-card .service-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}
.service-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==================== EXTRA CARDS ==================== */
.extra-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.extra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.extra-card .extra-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}
.extra-card h6 {
    font-weight: 700;
}
.extra-card p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==================== SERVICES RESPONSIVE ==================== */
@media (max-width: 768px) {
    .service-card {
        padding: 20px 16px;
    }
    .service-card .service-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}


/* ==================== FAQ SECTION ==================== */
.faq-section .faq-accordion .accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-section .faq-accordion .accordion-button {
    border-radius: 12px !important;
    font-weight: 600;
    padding: 16px 20px;
    background: white;
    color: #1F2937;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}
.faq-section .faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.faq-section .faq-accordion .accordion-body {
    padding: 16px 20px;
    color: #4B5563;
    line-height: 1.8;
    background: #fafbfc;
    border-radius: 0 0 12px 12px;
}
.faq-section .faq-accordion .accordion-body ul {
    padding-left: 20px;
}
.faq-section .faq-accordion .accordion-body ul li {
    margin-bottom: 4px;
}


/* ==================== CONTACT SECTION ==================== */
.contact-section .form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    transition: all 0.3s ease;
}
.contact-section .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,125,100,0.1);
}
.contact-section .form-control::placeholder {
    color: #9CA3AF;
}
.contact-section .form-label {
    font-weight: 600;
    color: #374151;
}
.contact-section .card {
    transition: all 0.3s ease;
}
.contact-section .card:hover {
    transform: translateY(-2px);
}


/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.testimonial-card .testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.testimonial-card .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-card .testimonial-rating {
    margin-bottom: 10px;
}
.testimonial-card .testimonial-text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 8px;
}
.testimonial-card .testimonial-text::before {
    content: '"';
    color: var(--primary);
    font-size: 20px;
}
.testimonial-card .testimonial-text::after {
    content: '"';
    color: var(--primary);
    font-size: 20px;
}

/* ==================== PRICING / PAKET ==================== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.pricing-section .section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-section .section-subtitle {
    color: #6B7280;
    margin-bottom: 48px;
    font-size: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.pricing-card.populer {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(46,125,100,0.12);
}

.pricing-card.populer .populer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-card .pricing-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--primary);
}

.pricing-card .pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.pricing-card .pricing-price {
    font-size: 35px;
    font-weight: 800;
    color: #1F2937;
    line-height: 1.1;
    margin-top: 8px;
}

.pricing-card .pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: #9CA3AF;
}

.pricing-card .pricing-duration {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 20px;
    display: block;
}

.pricing-card .pricing-divider {
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 16px;
    border-radius: 10px;
}

.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex: 1;
}

.pricing-card .pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card .pricing-features li i {
    color: var(--primary);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.pricing-card .pricing-features li .fa-check-circle {
    color: #22c55e;
}

.pricing-card .pricing-features li .fa-times-circle {
    color: #ef4444;
    opacity: 0.5;
}

.pricing-card .btn-pricing {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
}

.pricing-card .btn-pricing:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,125,100,0.3);
}

.pricing-card .btn-pricing-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
}

.pricing-card .btn-pricing-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.pricing-card.populer .btn-pricing {
    background: var(--primary);
}

/* ===== SAVINGS BADGE ===== */
.pricing-card .savings-badge {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .pricing-card .pricing-price {
        font-size: 32px;
    }
    .pricing-card.populer .populer-badge {
        font-size: 11px;
        padding: 3px 16px;
    }
}