:root {
    /* Color Palette */
    --primary: #087D3B; /* Dark Green */
    --primary-light: #22C55E; /* Light Green */
    --secondary: #F59E0B; /* Orange */
    --secondary-hover: #D97706; /* Dark Orange */
    
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    
    --border: #E0E4E9;
    --text-main: #111827;
    --text-muted: #64748B;
    
    --purple: #8B5CF6;
    --blue: #3B82F6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-orange: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-green: linear-gradient(135deg, #22C55E 0%, #34D399 100%);
    --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    
    /* Shadows - Soft Modern */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(8, 125, 59, 0.12);
    --shadow-float: 0 15px 35px rgba(0, 0, 0, 0.06);
    
    /* Geometry */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    
    /* Spacing */
    --section-padding: 80px 0;
    
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title, .logo-text {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography Helpers */
.text-center { text-align: center; }
.section-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Helpers for Cards */
.bg-orange { background: var(--gradient-orange); }
.bg-green { background: var(--gradient-green); }
.bg-blue { background: var(--gradient-blue); }
.bg-purple { background: var(--gradient-purple); }
.text-white { color: #FFFFFF !important; }

.bg-green-light { background-color: #DCFCE7; color: var(--primary); }
.bg-orange-light { background-color: #FEF3C7; color: var(--secondary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(8, 125, 59, 0.3);
}
.btn-primary:hover {
    background-color: #066630;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 125, 59, 0.4);
}

.btn-warning {
    background-color: var(--secondary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
.btn-warning:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background-color: #fff;
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ---------------- HEADER ---------------- */
.topbar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    padding: 8px 0;
    display: none;
}

@media (min-width: 992px) {
    .topbar { display: block; }
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 24px;
}

.topbar-left a, .topbar-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left a:hover {
    color: #fff;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-social {
    display: flex;
    gap: 12px;
}
.topbar-social a {
    font-size: 1.1rem;
    background: rgba(255,255,255,0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.topbar-social a:hover {
    background: var(--secondary);
    color: #fff;
}

/* NAVBAR */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 5px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--primary);
}

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.1;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.nav-menu {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
    display: block;
}

.nav-right .btn {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        gap: 24px;
    }
    
    .nav-menu a {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-main);
        position: relative;
        padding-bottom: 4px;
    }
    
    .nav-menu a:hover, .nav-menu a.active {
        color: var(--primary);
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: var(--transition);
    }
    
    .nav-menu a:hover::after, .nav-menu a.active::after {
        width: 100%;
    }

    .hamburger { display: none; }
    .nav-right .btn { display: inline-flex; }
}

/* ---------------- HERO SECTION ---------------- */
.hero {
    position: relative;
    padding: 60px 0 160px;
    background: radial-gradient(circle at top left, #F0FDF4 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    flex: 1;
    z-index: 20;
    position: relative;
}

.hero-text .title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text .highlight {
    color: var(--primary);
}

.hero-text .desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--secondary);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    font-family: 'Outfit', sans-serif;
}

@media (min-width: 992px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    .hero-text .title { font-size: 3.8rem; }
}

/* Floating Statistics */
.stats-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: #FFFFFF;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border);
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-card:hover {
    background-color: var(--bg-light);
    transform: translateY(-5px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.stat-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 24px; }
    .stat-card { flex-direction: row; text-align: left; }
}

/* ---------------- PROGRAMS SECTION ---------------- */
.program-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-intro {
    max-width: 400px;
}

.program-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.program-item {
    border-radius: var(--radius-md);
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.program-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.program-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.program-footer {
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.badge-white {
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.program-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    opacity: 0.9;
}

.program-img-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.trophy-img {
    width: 140px;
}

@media (min-width: 768px) {
    .program-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .program-layout { flex-direction: row; align-items: stretch; }
    .program-intro { flex: 0 0 300px; display: flex; flex-direction: column; justify-content: center; }
    .program-grid { flex: 1; grid-template-columns: repeat(3, 1fr); }
    .program-grid > div:nth-child(4) { grid-column: span 3; } /* Keterampilan full width in 3 col layout maybe, or maybe adjust */
}

@media (min-width: 1200px) {
    .program-grid { grid-template-columns: repeat(4, 1fr); }
    .program-grid > div:nth-child(4) { grid-column: auto; }
}

/* ---------------- WHY US SECTION ---------------- */
.why-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #DCFCE7;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}
.feature-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.why-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .why-layout { flex-direction: row; align-items: center; }
    .why-text { flex: 1; }
    .why-image { flex: 1; }
}

/* ---------------- GALLERY & TESTIMONIAL ---------------- */
.gt-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: 24px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #DCFCE7;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rating {
    color: var(--secondary);
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .gt-grid { flex-direction: row; }
    .gallery-section { flex: 2; }
    .testimonial-section { flex: 1; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------------- CTA BANNER ---------------- */
.cta-box {
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .cta-box {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 50px 60px;
    }
    .cta-content { flex: 1; }
    .cta-action { flex-shrink: 0; }
    .cta-content h2 { font-size: 2.5rem; }
}

/* ---------------- FOOTER ---------------- */
.footer {
    background-color: var(--primary);
    color: rgba(255,255,255,0.9);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-icon {
    font-size: 2.5rem;
}
.footer-logo .logo-text h2 {
    font-size: 1.3rem;
    margin: 0;
}
.footer-logo .logo-text p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-desc {
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.social-links a:hover {
    background: var(--secondary);
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    opacity: 0.8;
}
.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    opacity: 0.9;
}
.contact-info li i {
    font-size: 1.2rem;
    margin-top: 4px;
}

.map-preview {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 150px;
}
.map-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a:hover {
    color: var(--secondary);
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr; }
}

/* ---------------- MOBILE APP STYLE BOTTOM NAV ---------------- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

@media (min-width: 992px) {
    .bottom-nav { display: none; }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    gap: 4px;
}
.bottom-nav-item i {
    font-size: 1.5rem;
}
.bottom-nav-item.active, .bottom-nav-item:hover {
    color: var(--primary);
}

/* WA Float */
.wa-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
@media (min-width: 992px) {
    .wa-float { bottom: 30px; }
}
.wa-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Modal & Toast (Simple) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}
.modal-overlay.show .modal-content {
    transform: translateY(0);
}
.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-body {
    padding: 24px;
}
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(8,125,59,0.1);
}
.w-100 { width: 100%; }
.mt-3 { margin-top: 16px; }

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3000;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast-notification.show {
    transform: translateX(0);
}
.toast-notification i {
    font-size: 2rem;
    color: var(--primary);
}
.toast-text h4 {
    margin-bottom: 4px;
    color: var(--text-main);
}
.toast-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------------- DEMO TOPBAR ---------------- */
.demo-topbar {
    background: linear-gradient(90deg, #111827 0%, #1F2937 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    z-index: 1001;
    position: relative;
}
.demo-topbar-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.demo-topbar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.badge-live {
    background: #EF4444;
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    animation: pulse 2s infinite;
}
.demo-text {
    font-weight: 500;
}
.demo-topbar-action {
    display: flex;
    align-items: center;
    gap: 16px;
}
.demo-countdown {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}
.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
}
@media (min-width: 768px) {
    .demo-topbar-content {
        flex-direction: row;
    }
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* ---------------- ONBOARDING MODAL ---------------- */
.onboarding-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.onboarding-overlay.show {
    opacity: 1;
    visibility: visible;
}
.onboarding-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 90%;
    max-width: 450px;
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-md);
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-lg);
}
.onboarding-overlay.show .onboarding-content {
    transform: scale(1);
}
.ob-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.onboarding-step {
    display: none;
}
.onboarding-step.active {
    display: block;
}
.onboarding-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}
.onboarding-step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}
.ob-features {
    text-align: left;
    margin: 20px 0;
}
.ob-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}
.ob-features li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ---------------- NEW SPLASH SCREEN ---------------- */
.splash-screen-new {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.splash-screen-new.active {
    visibility: visible;
    opacity: 1;
}
.splash-content {
    text-align: center;
}
.splash-pkbm {
    font-size: 5rem;
    color: #fff;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-50px);
}
.splash-screen-new.active .splash-pkbm {
    animation: dropOut 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes dropOut {
    0% { opacity: 0; transform: translateY(-50px); }
    60% { opacity: 1; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
.splash-izzatul {
    font-size: 2rem;
    color: var(--primary-light);
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
}
.splash-screen-new.active .splash-izzatul {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ---------------- GET WEBSITE MODAL ---------------- */
.modal-getweb .modal-body {
    padding: 20px 30px;
}
.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 5px;
}
.price-label { font-weight: 600; color: var(--text-muted); }
.price-value { font-weight: 800; font-size: 1.2rem; color: var(--text-main); }
.price-note { font-size: 0.8rem; color: #EF4444; margin-bottom: 20px; text-align: right; }

.domain-title { font-size: 1rem; margin-bottom: 12px; }
.domain-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.domain-radio {
    position: relative;
    cursor: pointer;
}
.domain-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio-content {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.domain-radio:hover .radio-content {
    border-color: #CBD5E1;
}
.domain-radio input:checked ~ .radio-content {
    border-color: var(--primary);
    background: #F0FDF4;
}
.radio-content .ext { font-weight: 600; font-size: 1rem; }
.radio-content .price { color: var(--text-muted); font-size: 0.9rem; }

.total-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed var(--border);
    padding-top: 16px;
    margin-bottom: 16px;
}
.total-price-box span { font-size: 1.1rem; font-weight: 600; }
.total-price-box h3 { font-size: 1.8rem; color: var(--primary); font-weight: 800; }

.guarantee-box {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 12px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.guarantee-box i { font-size: 1.5rem; color: #3B82F6; margin-top: 2px; }
.guarantee-box strong { color: #1E3A8A; display: block; font-size: 0.95rem; }
.guarantee-box p { color: #3B82F6; font-size: 0.8rem; margin-top: 2px; line-height: 1.4; }

/* ---------------- FAQ SECTION ---------------- */
.faq-section {
    background-color: var(--bg-main);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: var(--transition);
}
.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}
.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #FAFAFA;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary max height */
}
.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------------- AI CHAT FLOATING BUTTON ---------------- */
.ai-float {
    position: fixed;
    bottom: 90px; /* Above WA button */
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 999;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    animation: bounce 2s infinite;
}
.ai-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------------- AI CHAT MODAL ---------------- */
.ai-modal-content {
    padding: 0;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    height: 80vh;
    max-height: 600px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.ai-header {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    padding: 20px;
    border-bottom: none;
    color: #fff;
    align-items: flex-start;
}
.ai-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ai-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.ai-header h3 { color: #fff; font-size: 1.1rem; margin-bottom: 2px; }
.ai-header p { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
.ai-header .close-btn { color: #fff; background: rgba(0,0,0,0.1); }

.ai-body {
    flex: 1;
    background: #F3F4F6;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.bot-message {
    align-self: flex-start;
    background: #fff;
    color: var(--text-main);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 5px rgba(59, 130, 246, 0.2);
}
.wa-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    text-decoration: none;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.ai-footer {
    padding: 16px;
    background: #fff;
    border-top: 1px solid var(--border);
}
.ai-input-form {
    display: flex;
    gap: 10px;
    align-items: center;
}
.ai-input-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition);
}
.ai-input-form input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.btn-ai-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3B82F6;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-ai-send:hover {
    background: #2563EB;
    transform: scale(1.05);
}
