* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

:root {
    --primary: #2563eb;
    --secondary: #3b82f6;
    --accent: #60a5fa;
    --dark: #0f172a;
    --light: #ffffff;
    --gray: #64748b;
    --success: #10b981;
    --gradient-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body {
    background: var(--gradient-bg);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow-x: hidden;
}

/* ========== SIMPLIFIED LOADING SCREEN ========== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    max-width: 300px;
    width: 90%;
}

.loading-logo {
    margin-bottom: 25px;
}

.loading-logo-img {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-spinner {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spinner-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    position: absolute;
    z-index: 2;
}

.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    animation: subtlePulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
}

.loading-text span {
    color: #3b82f6;
}

.loading-tagline {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.loading-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
}

.loading-percentage {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes subtlePulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Tambahkan style untuk mencegah scroll selama loading */
body.loading {
    overflow: hidden;
}

/* Animasi fade in untuk konten setelah loading */
.container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.container.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Background Animation seperti jubel.upstoreid.com */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 25%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -2;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-10px, -15px) scale(1.02);
    }
    50% {
        transform: translate(5px, -10px) scale(1.01);
    }
    75% {
        transform: translate(-5px, 5px) scale(1.03);
    }
}

/* Animated Grid Background */
.animated-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 95%, rgba(37, 99, 235, 0.03) 95%),
        linear-gradient(transparent 95%, rgba(37, 99, 235, 0.03) 95%);
    background-size: 50px 50px;
    animation: gridMove 40s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Orbs */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.2), transparent 70%);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15), transparent 70%);
}

.orb:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 5s;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1), transparent 70%);
}

.orb:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 20%;
    animation-delay: 10s;
    background: radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.08), transparent 70%);
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-15px, -20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(10px, 15px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Pulsing Glow Effect */
.pulse-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Animated Lines */
.animated-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    animation: lineFlow 20s linear infinite;
}

.line:nth-child(1) {
    top: 20%;
    left: -100%;
    width: 200%;
    height: 1px;
    animation-delay: 0s;
}

.line:nth-child(2) {
    top: 60%;
    left: -100%;
    width: 200%;
    height: 1px;
    animation-delay: 5s;
}

.line:nth-child(3) {
    top: 80%;
    left: -100%;
    width: 200%;
    height: 1px;
    animation-delay: 10s;
}

.line:nth-child(4) {
    top: 40%;
    left: -100%;
    width: 200%;
    height: 1px;
    animation-delay: 15s;
}

@keyframes lineFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navbar Styles - Exact seperti jubel.upstoreid.com */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo Container dengan Animasi */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Efek Glow pada Logo */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(59, 130, 246, 0.2));
    filter: blur(8px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Efek Pulse pada Logo */
.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    opacity: 0;
    z-index: 0;
}

/* Animasi Hover pada Logo */
.logo-container:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.logo-container:hover .logo-glow {
    opacity: 1;
    width: 55px;
    height: 55px;
}

.logo-container:hover .logo-pulse {
    animation: logoPulse 1.5s ease-out infinite;
}

@keyframes logoPulse {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.7;
    }
    50% {
        width: 70px;
        height: 70px;
        opacity: 0.3;
    }
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* Animasi Logo saat Load */
@keyframes logoEntrance {
    0% {
        transform: scale(0.8) rotate(-10deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.logo-img {
    animation: logoEntrance 0.8s ease-out forwards;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.logo-text span {
    color: #3b82f6;
    position: relative;
}

/* Efek Hover pada Teks Logo */
.logo-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    transition: left 0.5s ease;
}

.logo-text:hover::before {
    left: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Header Styles */
header {
    text-align: center;
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 0.8rem;
    color: #3b82f6;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
}

/* Hero Section dengan animasi */
.hero {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Services Section dengan animasi */
.services {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

/* Service Image Styles */
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(transparent, rgba(30, 41, 59, 0.9));
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 25px 25px 15px;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0 25px 25px;
    flex-grow: 1;
}

/* Service Button Styles */
.service-button-container {
    margin: 0 25px 25px;
    position: relative;
    z-index: 1;
}

.service-btn {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.3));
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(3px);
}

/* Animasi tambahan untuk card layanan dengan tombol */
.service-card:hover .service-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Pricing Section */
.pricing {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.pricing-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pricing-link {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-link:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.pricing-link i {
    font-size: 2rem;
    color: #3b82f6;
    width: 40px;
}

.pricing-link h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.pricing-link p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Testimonial Section */
.testimonial {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Footer */
footer {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
}

.footer-content h3 {
    margin-bottom: 30px;
    color: white;
    font-size: 1.5rem;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-links a:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Testimonial Slider Styles */
.testimonial-slider-container {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.8s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: #3b82f6;
    position: absolute;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content p::before {
    top: -20px;
    left: 0;
}

.testimonial-content p::after {
    bottom: -40px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.testimonial-author h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-author p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.slider-btn {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #3b82f6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.slider-dot:hover {
    background: rgba(59, 130, 246, 0.7);
    transform: scale(1.1);
}

/* Autoplay Progress Bar */
.autoplay-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    z-index: 10;
}

.autoplay-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Animation for slide entrance */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-slide {
    animation: slideIn 0.6s ease-out;
}

/* Hero Character Section */
.hero-character {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.character-container {
    text-align: center;
}

.character-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.character-single {
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-image {
    position: relative;
    text-align: center;
}

.character-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.character-image:hover img {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.5));
}

/* Hero Character Left Section */
.hero-character-left {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.character-left-container {
    max-width: 1200px;
    margin: 0 auto;
}

.character-left-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.character-left-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.8s ease;
}

.character-left-content:hover::before {
    left: 100%;
}

.character-left-image {
    position: relative;
    text-align: center;
}

.character-left-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.character-left-content:hover .character-left-image img {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(59, 130, 246, 0.4));
}

.character-left-text {
    text-align: left;
}

.character-left-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* ========== SEO OPTIMIZATION STYLES ========== */

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #60a5fa;
}

.breadcrumb span {
    color: #cbd5e1;
}

/* Rating Badge Styles */
.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.rating-badge .stars {
    color: #ffd700;
}

.rating-badge span {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section Styles */
.faq-section {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.faq-item h3 {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    position: relative;
    background: rgba(37, 99, 235, 0.05);
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Animated Divider */
.animated-divider {
    position: relative;
    width: 100%;
    height: 4px;
    margin: 60px 0;
    overflow: hidden;
}

.divider-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #2563eb,
        #3b82f6,
        #60a5fa,
        #3b82f6,
        #2563eb,
        transparent
    );
    border-radius: 2px;
    position: relative;
    animation: dividerFlow 3s ease-in-out infinite;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    animation: dividerShine 2s ease-in-out infinite;
}

.divider-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 8px;
    transform: translateY(-50%);
    background: radial-gradient(
        ellipse at center,
        rgba(37, 99, 235, 0.3) 0%,
        transparent 70%
    );
    filter: blur(5px);
    animation: dividerPulse 4s ease-in-out infinite;
}

@keyframes dividerFlow {
    0%, 100% {
        background: linear-gradient(
            90deg,
            transparent,
            #2563eb,
            #3b82f6,
            #60a5fa,
            #3b82f6,
            #2563eb,
            transparent
        );
    }
    50% {
        background: linear-gradient(
            90deg,
            transparent,
            #60a5fa,
            #3b82f6,
            #2563eb,
            #3b82f6,
            #60a5fa,
            transparent
        );
    }
}

@keyframes dividerShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.05);
    }
}

/* Responsive Design untuk Divider */
@media (max-width: 768px) {
    .animated-divider {
        margin: 40px 0;
        height: 3px;
    }
    
    .divider-line {
        height: 1.5px;
    }
    
    .divider-glow {
        height: 6px;
        filter: blur(3px);
    }
}

/* Responsive Design untuk SEO Elements */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .rating-badge {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .faq-item h3 {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .character-left-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 30px;
    }
    
    .character-left-text {
        text-align: center;
    }
    
    .character-left-image img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .character-left-content {
        padding: 20px;
    }
    
    .character-left-image img {
        max-width: 200px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .character-image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .character-image img {
        max-width: 250px;
    }
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .testimonial-slide {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .slider-controls {
        gap: 20px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .slider-dots {
        gap: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .autoplay-progress {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .slider-controls {
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .subtitle {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-links {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Kurangi animasi untuk mobile */
    .animated-grid,
    .floating-orbs,
    .pulse-glow {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-image {
        height: 180px;
    }
    
    /* Non-aktifkan beberapa animasi untuk performa mobile */
    .animated-lines {
        display: none;
    }
}