:root {
            --primary: #4361ee;
            --primary-dark: #3a0ca3;
            --secondary: #4cc9f0;
            --accent: #f72585;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gradient: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            position: relative;
        }

        
        .navbar {
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        .hero-section {
            height: 100vh;
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(76, 201, 240, 0.08) 0%, transparent 70%);
            transform: rotate(30deg);
            z-index: 0;
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .service-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }
        
        .service-card .card-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .branch-card {
            height: 100%;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            background: white;
            border-radius: 16px;
            overflow: hidden;
            max-width: 480px; /* Atur lebar maksimum card */
            margin: 0 auto; /* Agar card tetap berada di tengah */

        }
        
        .testimonial-card {
            transition: all 0.3s ease;
            height: 100%;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--primary) !important;
        }
        
        .ranking-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(135deg, #f72585, #7209b7);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(114, 9, 183, 0.3);
            z-index: 2;
            transform: rotate(-15deg);
            font-size: 18px;
            border: 2px solid white;
        }
        
        .ranking-badge::after {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(247, 37, 133, 0.3), rgba(114, 9, 183, 0.3));
            z-index: -1;
        }
        
        .divider {
            position: relative;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.3), transparent);
            margin: 40px 0;
        }
        
        .divider::before {
            content: "";
            position: absolute;
            left: 50%;
            top: -5px;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--primary);
        }
        
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .shape-1 {
            width: 150px;
            height: 150px;
            background: var(--primary);
            top: 10%;
            left: -50px;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 100px;
            height: 100px;
            background: var(--accent);
            bottom: 20%;
            right: -30px;
            animation: float 6s ease-in-out infinite 2s;
        }
        
        .shape-3 {
            width: 80px;
            height: 80px;
            background: var(--secondary);
            top: 50%;
            right: 10%;
            animation: float 7s ease-in-out infinite 1s;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 30%;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .mobile-padding {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        /* New Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        .floating-button {
            animation: float 3s ease-in-out infinite;
        }
        
        .glow-effect {
            box-shadow: 0 0 15px rgba(67, 97, 238, 0.3);
        }
        
        .hover-grow {
            transition: transform 0.3s ease;
        }
        
        .hover-grow:hover {
            transform: scale(1.03);
        }

        /* Mobile specific styles */
        @media (max-width: 1024px) {
            .hero-section {
                min-height: auto;
                height: auto;
                padding: 80px 0 60px;
            }
            
            .hero-section::before {
                display: none;
            }
            
            .mobile-padding {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            
            .mobile-text-center {
                text-align: center;
            }
            
            .mobile-mt-8 {
                margin-top: 2rem;
            }
            
            .mobile-flex-col {
                flex-direction: column;
            }
            
            .mobile-w-full {
                width: 100%;
            }
            
            .mobile-mb-6 {
                margin-bottom: 1.5rem;
            }
            
            .mobile-px-4 {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .mobile-py-4 {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }
            
            .mobile-text-xl {
                font-size: 1.25rem;
                line-height: 1.75rem;
            }
            
            .mobile-text-2xl {
                font-size: 1.5rem;
                line-height: 2rem;
            }
            
            .mobile-text-3xl {
                font-size: 1.875rem;
                line-height: 2.25rem;
            }
            
            .mobile-gap-4 {
                gap: 1rem;
            }
            
            .mobile-card-height {
                height: auto;
            
            }
            
            .mobile-service-image {
                height: 120px;
            }
            
            .mobile-branch-image {
                height: 150px;
            }
            
            .mobile-testimonial-padding {
                padding: 1.5rem;
            }
            
            .floating-shape {
                display: none;
            }
            
            .ranking-badge {
                top: 8px;
                left: 8px;
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            
        }
        
        @media (max-width: 640px) {
            .container-padding {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-buttons a {
                width: 100%;
                text-align: center;
            }
            
            .hero-section {
                padding-top: 60px;
            }
        }