/**
 * Creovative Studio - Shared styles (semua halaman)
 * Load: fonts.css → common.css → tailwind.built.css → aos.css
 */

/* ---- Base ---- */
body {
    background-color: #E8FCF7; /* fallback gradasi lembut */
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* ---- Hero gradient: soft diffused (putih top → teal bottom), seperti frosted blur ---- */
.hero-gradient {
    /* Radial: terang di tengah-atas, halus ke teal di bawah/sisi */
    background: radial-gradient(ellipse 140% 100% at 50% -10%, #ffffff 0%, #f5fcfb 25%, #e8f7f5 50%, #d4efec 75%, #b8e5e1 100%);
}
.hero-gradient-subtle {
    background: linear-gradient(135deg, #ffffff 0%, rgba(21, 91, 91, 0.06) 50%, rgba(21, 91, 91, 0.12) 100%);
}
/* Blur orbs untuk efek diffused / frosted (dipakai di global background) */
.hero-blur-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-blur-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    opacity: 0.5;
}
/* Grid pattern sangat halus (opsional, bisa tidak dipakai di hero) */
.bg-grid-pattern {
    background-image: repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(21, 91, 91, 0.04) 31px, rgba(21, 91, 91, 0.04) 32px),
        repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(21, 91, 91, 0.04) 31px, rgba(21, 91, 91, 0.04) 32px);
}

/* ---- Navbar: putih di atas, ngeblur (glass) saat scroll ---- */
.navbar-bar {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.navbar-bar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

/* ---- Buttons: primary & secondary (rapi, konsisten) ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn:focus {
    outline: none;
}
.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(21, 91, 91, 0.35);
}

.btn-primary {
    background: linear-gradient(180deg, #1a6b6b 0%, #155b5b 50%, #0f4444 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(21, 91, 91, 0.28), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #155b5b 0%, #0f4444 100%);
    box-shadow: 0 4px 14px rgba(21, 91, 91, 0.35), 0 2px 4px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(21, 91, 91, 0.25);
}

.btn-secondary {
    background: #fff;
    color: #155b5b;
    border: 2px solid #155b5b;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.btn-secondary:hover {
    background: rgba(21, 91, 91, 0.06);
    box-shadow: 0 2px 8px rgba(21, 91, 91, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}
.btn-secondary:active {
    transform: translateY(0);
}

/* Ukuran tambahan */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 1rem;
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: 0.625rem;
}
.btn-block {
    width: 100%;
}

/* ---- Scroll progress bar ---- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #155b5b, #1a6b6b);
    z-index: 9999;
    transition: width 0.1s;
}

/* ---- Portfolio image modal: double-frame, modern ---- */
.portfolio-modal-overlay {
    z-index: 10000;
}
.portfolio-modal {
    background: transparent;
}
.portfolio-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.portfolio-modal-outer {
    position: relative;
    width: 100%;
    max-width: 56rem;
    padding: 0.5rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
    border-radius: 1.5rem;
    box-shadow: 0 0 0 1px rgba(21, 91, 91, 0.15), 0 25px 50px -12px rgba(15, 68, 68, 0.25), 0 0 80px -20px rgba(21, 91, 91, 0.2);
    animation: portfolio-modal-enter 0.3s ease-out;
}
.portfolio-modal-inner {
    position: relative;
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8);
}
.portfolio-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 5;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #155b5b;
    border: 1px solid rgba(21, 91, 91, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, background 0.2s, color 0.2s;
}
.portfolio-modal-close:hover {
    background: #155b5b;
    color: #fff;
    transform: scale(1.05);
}
.portfolio-modal-img-wrap {
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-height: min(80vh, 32rem);
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio-modal-img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: min(78vh, 30rem);
    object-fit: contain;
    display: block;
}
.portfolio-modal-caption-wrap {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(90deg, rgba(21, 91, 91, 0.08) 0%, rgba(21, 91, 91, 0.04) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(21, 91, 91, 0.12);
}
.portfolio-modal-caption {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #0f4444;
    margin: 0;
}
@keyframes portfolio-modal-enter {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.portfolio-modal-img-wrap {
    position: relative;
}
.portfolio-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #155b5b;
    border: 1px solid rgba(21, 91, 91, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
}
.portfolio-modal-nav:hover {
    background: #155b5b;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.portfolio-modal-prev { left: 0.75rem; }
.portfolio-modal-next { right: 0.75rem; }
.portfolio-modal-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
}
.portfolio-modal-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(21, 91, 91, 0.22);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.portfolio-modal-dot.active {
    background: #155b5b;
    transform: scale(1.4);
}
.portfolio-modal-img {
    transition: opacity 0.15s ease;
}

/* ---- Portfolio Grid: override flex-scroll dengan CSS grid saat ada pagination ---- */
[data-portfolio-grid] {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    overflow: visible !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-bottom: 0 !important;
}
@media (min-width: 640px) {
    [data-portfolio-grid] { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    [data-portfolio-grid] { grid-template-columns: repeat(3, 1fr); }
}
[data-portfolio-grid] > * {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

/* ---- Portfolio Pagination ---- */
.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.portfolio-page-btn {
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.625rem;
    border-radius: 99px;
    background: #fff;
    border: 1px solid rgba(21,91,91,0.18);
    color: #155b5b;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    line-height: 1;
    user-select: none;
}
.portfolio-page-btn:hover:not(:disabled):not(.active) {
    background: rgba(21,91,91,0.08);
    border-color: #155b5b;
    color: #155b5b;
}
.portfolio-page-btn.active {
    background: #155b5b;
    color: #fff;
    border-color: #155b5b;
    box-shadow: 0 4px 12px rgba(21,91,91,0.25);
}
.portfolio-page-btn.active:hover {
    background: #0f4444;
    border-color: #0f4444;
    box-shadow: 0 6px 16px rgba(21,91,91,0.35);
}
.portfolio-page-btn:disabled {
    opacity: 0.32;
    cursor: default;
}

/* ---- Portfolio Tab Buttons hover ---- */
.portfolio-tab-btn {
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s !important;
}
.portfolio-tab-btn.active:hover {
    background-color: #0f4444 !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(21,91,91,0.3) !important;
    transform: translateY(-1px);
}
.portfolio-tab-btn:not(.active):hover {
    background-color: rgba(21,91,91,0.07) !important;
    border-color: #155b5b !important;
    color: #155b5b !important;
}

/* ---- CTA: bg terang (bukan warna footer) | Footer: gelap ---- */
.section-cta-final {
    background: linear-gradient(180deg, #d6ede7 0%, #e8f5f3 50%, #f0faf9 100%);
    color: #0f766e;
}
.section-cta-final-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(21, 91, 91, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.section-cta-final-title {
    color: #134e4a;
}
.section-cta-final-accent {
    color: #0d9488;
}
.section-cta-final-desc {
    color: #115e59;
}

.footer-creovative {
    background-color: #0d3d3d;
    color: #fff;
}

/* Footer rapi: layout & spacing seperti referensi */
.footer-creovative-inner {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem 4rem;
}
@media (min-width: 768px) {
    .footer-creovative-inner {
        padding: 4.5rem 3rem 5rem;
    }
}
@media (min-width: 1024px) {
    .footer-creovative-inner {
        padding-left: 4rem;
    }
}

.footer-creovative-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 2rem;
    width: 100%;
}
@media (min-width: 768px) {
    .footer-creovative-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 3rem;
    }
}
@media (min-width: 1024px) {
    .footer-creovative-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 2.5rem 3.5rem;
    }
}
@media (min-width: 1280px) {
    .footer-creovative-grid {
        gap: 2.5rem 4rem;
    }
}

.footer-col {
    min-width: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo {
    height: 2.5rem;
    width: 2.5rem;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-company-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
}
.footer-address {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 18rem;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0 0 1.25rem 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links li:last-child {
    margin-bottom: 0;
}
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.footer-social a {
    display: inline-flex;
}
.footer-creovative .footer-social svg {
    fill: rgba(255, 255, 255, 0.9);
}
.footer-creovative .footer-social a:hover svg {
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .footer-bottom {
        padding: 1.75rem 3rem;
    }
}
@media (min-width: 1024px) {
    .footer-bottom {
        padding-left: 4rem;
    }
}
.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.footer-creovative a,
.footer-creovative p,
.footer-creovative span,
.footer-creovative h3 {
    color: inherit;
}
.footer-creovative .text-white\/90,
.footer-creovative ul a {
    color: rgba(255, 255, 255, 0.9);
}
.footer-creovative .text-white\/90:hover,
.footer-creovative ul a:hover {
    color: #fff;
}
.footer-creovative .text-white\/70 {
    color: rgba(255, 255, 255, 0.75);
}
.footer-creovative svg {
    fill: rgba(255, 255, 255, 0.9);
}
.footer-creovative a:hover svg {
    fill: #fff;
}

/* CTA section: dua tombol warna beda (primary hijau, secondary outline teal) */
.section-cta-final .btn-cta-primary {
    background: linear-gradient(180deg, #25D366 0%, #1da851 50%, #128c7e 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35), 0 2px 4px rgba(0, 0, 0, 0.08);
}
.section-cta-final .btn-cta-primary:hover {
    background: linear-gradient(180deg, #2ee06b 0%, #25D366 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-1px);
}
.section-cta-final .btn-cta-wa {
    color: #0f766e;
    background: transparent;
    border: 2px solid #0d9488;
}
.section-cta-final .btn-cta-wa:hover {
    color: #fff;
    background: #0d9488;
    border-color: #0d9488;
}
.section-cta-final .btn-cta-wa svg {
    fill: currentColor;
}

/* ---- Learning / eBook section card ---- */
.learning-card {
    transition: box-shadow 0.2s ease;
}
.learning-ebook-mockup {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 1024px) {
    .learning-ebook-mockup:hover {
        transform: translateY(-4px);
        box-shadow: 0 25px 50px -12px rgba(15, 68, 68, 0.15);
    }
}

/* ---- Glass panel (navbar, cards) ---- */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* ---- Service section: kartu dengan background putih blur (frosted) ---- */
.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.service-card .service-col {
    min-width: 0;
    flex: 1 1 50%;
}
@media (min-width: 768px) {
    .service-card .service-col {
        max-width: 50%;
    }
}

/* ---- Gradient text ---- */
.glow-text {
    background: linear-gradient(135deg, #0f4444 0%, #155b5b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- Timeline (workflow) ---- */
.timeline-line-v2 {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #155b5b, #0f4444);
    transform: translateX(-50%);
    z-index: 0;
}

/* ---- Workflow: bullet list (circle + garis vertikal, tidak menumpuk) ---- */
.workflow-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}
.workflow-bullet-list::before {
    content: "";
    position: absolute;
    left: 0.3125rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(to bottom, rgba(21, 91, 91, 0.3), rgba(21, 91, 91, 0.12));
    border-radius: 1px;
    z-index: 0;
}
.workflow-bullet-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
}
.workflow-bullet-item:last-child {
    padding-bottom: 0;
}
.workflow-bullet-item:last-child .workflow-bullet-card {
    margin-bottom: 0;
}
.workflow-bullet {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #155b5b;
    margin-top: 0.5rem;
    margin-left: -1.5rem;
    box-shadow: 0 0 0 3px rgba(21, 91, 91, 0.15);
    z-index: 1;
}
.workflow-bullet-card {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(21, 91, 91, 0.12);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.workflow-bullet-item:hover .workflow-bullet-card {
    box-shadow: 0 4px 16px rgba(21, 91, 91, 0.08);
    border-color: rgba(21, 91, 91, 0.2);
}

/* ---- Workflow section: step card (jika dipakai) ---- */
.workflow-step-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(21, 91, 91, 0.12);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.workflow-step:hover .workflow-step-card {
    box-shadow: 0 8px 24px rgba(21, 91, 91, 0.08);
    border-color: rgba(21, 91, 91, 0.2);
}
.workflow-step-badge {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.workflow-step:hover .workflow-step-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(21, 91, 91, 0.3);
}

/* ---- 3D Mockup (spreadsheet/app window) ---- */
.perspective-container {
    perspective: 1000px;
}

.preserve-3d {
    transform-style: preserve-3d;
}

.mockup-window {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ---- Window dots (mockup) ---- */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

/* ---- Custom scrollbar ---- */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

/* ---- Services: icon wrapper ---- */
.service-icon-wrapper {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

/* ---- Portfolio: filter button active ---- */
.filter-btn.active {
    background-color: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ---- Hero: smartphone mockup float + shadow ---- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}
.animate-float-delayed {
    animation: float 4s ease-in-out infinite 1s;
}
.phone-mockup-3d {
    transform: perspective(900px) rotateY(-12deg);
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25), 0 15px 35px -15px rgba(21, 91, 91, 0.15);
}

/* ---- Hero mockup: sidebar menu clickable + KPI + table ---- */
.mockup-sidebar-btn {
    border: none;
    cursor: pointer;
    outline: none;
}
.mockup-sidebar-btn:hover {
    background: rgba(226, 232, 240, 0.6);
}
.mockup-sidebar-btn.active {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border-left: 3px solid #10b981;
    padding-left: calc(0.75rem - 3px);
}
.mockup-sidebar-btn.active span:first-of-type {
    background: rgba(16, 185, 129, 0.2);
    color: #059669;
}
.mockup-sidebar-btn.active .text-slate-400 {
    color: #059669;
}

.mockup-kpi-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mockup-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
}

.mockup-table-wrap {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease;
}
.mockup-table-wrap:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.mockup-table-row {
    transition: background-color 0.2s ease;
}
.mockup-table-row:hover {
    background-color: rgba(248, 250, 252, 0.9);
}

@keyframes mockup-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: mockup-fade-in 0.35s ease-out forwards;
}

/* ---- WA widget animation ---- */
@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.animate-pulse-scale {
    animation: pulse-scale 2s infinite ease-in-out;
}

/* ---- Consultation form (hanya halaman consultation) ---- */
#creovativeForm input[type="text"],
#creovativeForm input[type="email"],
#creovativeForm select,
#creovativeForm textarea {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    transition: all 0.3s ease;
}

#creovativeForm input[type="text"]:focus,
#creovativeForm input[type="email"]:focus,
#creovativeForm select:focus,
#creovativeForm textarea:focus {
    background-color: #ffffff;
    border-color: #10b981;
    outline: none;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

#creovativeForm select option {
    background-color: #ffffff;
    color: #0f172a;
}

#creovativeForm input[type="radio"] {
    accent-color: #10b981;
    width: 1.2em;
    height: 1.2em;
}

/* Consultation: body layout (sticky footer) ---- */
body.consultation-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---- Blob animation (from contoh.html) ---- */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Mix blend modes */
.mix-blend-multiply {
    mix-blend-mode: multiply;
}
.mix-blend-screen {
    mix-blend-mode: screen;
}
