 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-color: #1e3a8a;
     --secondary-color: #3b82f6;
     --accent-color: #60a5fa;
     --text-dark: #1f2937;
     --text-light: #6b7280;
     --bg-light: #f9fafb;
     --white: #ffffff;
     --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     --gradient-white: linear-gradient(135deg, #ffffff 0%, #ebeaeb 100%);
     --nav-height: 80px;
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     line-height: 1.6;
     color: var(--text-dark);
     overflow-x: hidden;
 }

 /* Scrollbar Styling */
 ::-webkit-scrollbar {
     width: 10px;
 }

 ::-webkit-scrollbar-track {
     background: #f1f1f1;
 }

 ::-webkit-scrollbar-thumb {
     background: var(--secondary-color);
     border-radius: 5px;
 }

 /* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     height: var(--nav-height);
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .navbar.scrolled {
     height: 70px;
     background: rgba(255, 255, 255, 0.98);
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 1rem 2rem;
     height: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     align-items: center;
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--primary-color);
     text-decoration: none;
     transition: transform 0.3s ease;
 }

 .logo:hover {
     transform: scale(1.05);
 }

 .logo i {
     margin-right: 0.5rem;
     font-size: 2rem;
     background: var(--gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2rem;
 }

 .nav-link {
     color: var(--text-dark);
     text-decoration: none;
     font-weight: 500;
     position: relative;
     transition: color 0.3s ease;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--secondary-color);
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: 100%;
 }

 .nav-link:hover {
     color: var(--secondary-color);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     z-index: 1001;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background: var(--text-dark);
     margin: 3px 0;
     transition: 0.3s;
 }

 /* Hero Section - FIXED */
 .hero {
     margin-top: var(--nav-height);
     min-height: calc(100vh - var(--nav-height));
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     width: 200%;
     height: 200%;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     animation: float 20s infinite linear;
 }

 @keyframes float {
     0% {
         transform: translate(-50%, -50%) rotate(0deg);
     }

     100% {
         transform: translate(-50%, -50%) rotate(360deg);
     }
 }

 .hero-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 4rem 2rem;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     color: white;
     margin-bottom: 1rem;
     animation: slideInLeft 1s ease;
 }

 .hero-content p {
     font-size: 1.25rem;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 2rem;
     animation: slideInLeft 1s ease 0.2s;
     animation-fill-mode: both;
 }

 .hero-buttons {
     display: flex;
     gap: 1rem;
     animation: slideInLeft 1s ease 0.4s;
     animation-fill-mode: both;
 }

 .btn {
     padding: 1rem 2rem;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-primary {
     background: white;
     color: var(--primary-color);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 }

 .btn-secondary {
     background: transparent;
     color: white;
     border: 2px solid white;
 }

 .btn-secondary:hover {
     background: white;
     color: var(--primary-color);
     transform: translateY(-3px);
 }

 .hero-image {
     position: relative;
     animation: slideInRight 1s ease;
 }

 .hero-image img {
     width: 100%;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 }

 .floating-card {
     position: absolute;
     background: white;
     padding: 1.5rem;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     animation: float-card 3s ease-in-out infinite;
 }

 .floating-card-1 {
     top: -20px;
     right: -20px;
     animation-delay: 0s;
 }

 .floating-card-2 {
     bottom: -20px;
     left: -20px;
     animation-delay: 1.5s;
 }

 @keyframes float-card {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Services Section - FIXED SPACING */
 .services {
     padding: 6rem 2rem;
     background: var(--bg-light);
     position: relative;
     z-index: 10;
 }

 .section-header {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 4rem;
 }

 .section-header h2 {
     font-size: 2.5rem;
     color: var(--text-dark);
     margin-bottom: 1rem;
     position: relative;
     display: inline-block;
 }

 .section-header h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 4px;
     background: var(--gradient);
     border-radius: 2px;
 }

 .section-header p {
     color: var(--text-light);
     font-size: 1.1rem;
     margin-top: 1.5rem;
 }

 .services-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .service-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: var(--gradient);
     transform: scaleX(0);
     transition: transform 0.3s ease;
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .service-icon {
     width: 70px;
     height: 70px;
     background: var(--gradient-white);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-icon {
     transform: rotate(5deg) scale(1.1);
 }

 .service-icon i {
     font-size: 2rem;
     color: white;
 }

 .service-card h3 {
     font-size: 1.5rem;
     color: var(--text-dark);
     margin-bottom: 1rem;
 }

 .service-card p {
     color: var(--text-light);
     line-height: 1.8;
 }

 /* About Section */
 .about {
     padding: 6rem 2rem;
     background: white;
 }

 .about-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .about-image {
     position: relative;
 }

 .about-image img {
     width: 100%;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
 }

 .about-content h2 {
     font-size: 2.5rem;
     color: var(--text-dark);
     margin-bottom: 1.5rem;
 }

 .about-content p {
     color: var(--text-light);
     margin-bottom: 1.5rem;
     line-height: 1.8;
 }

 .stats {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
     margin-top: 2rem;
 }

 .stat-item {
     text-align: center;
     padding: 1.5rem;
     background: var(--bg-light);
     border-radius: 10px;
     transition: transform 0.3s ease;
 }

 .stat-item:hover {
     transform: scale(1.05);
 }

 .stat-number {
     font-size: 2rem;
     font-weight: bold;
     color: var(--secondary-color);
     display: block;
 }

 .stat-label {
     color: var(--text-light);
     font-size: 0.9rem;
     margin-top: 0.5rem;
 }

 /* Why Choose Us */
 .why-choose {
     padding: 6rem 2rem;
     background: var(--bg-light);
 }

 .features-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
 }

 .feature-item {
     text-align: center;
     padding: 2rem;
     background: white;
     border-radius: 15px;
     transition: all 0.3s ease;
 }

 .feature-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
     width: 80px;
     height: 80px;
     margin: 0 auto 1.5rem;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.3s ease;
 }

 .feature-item:hover .feature-icon {
     transform: scale(1.1) rotate(360deg);
 }

 .feature-icon i {
     font-size: 2rem;
     color: white;
 }

 .feature-item h3 {
     font-size: 1.3rem;
     color: var(--text-dark);
     margin-bottom: 1rem;
 }

 .feature-item p {
     color: var(--text-light);
     line-height: 1.6;
 }

 /* Portfolio Section */
 .portfolio {
     padding: 6rem 2rem;
     background: white;
 }

 .portfolio-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .portfolio-item {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
     cursor: pointer;
 }

 .portfolio-item:hover {
     transform: scale(1.05);
 }

 .portfolio-item img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .portfolio-item:hover img {
     transform: scale(1.1);
 }

 .portfolio-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 1.5rem;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .portfolio-item:hover .portfolio-overlay {
     opacity: 1;
 }

 .portfolio-overlay h3 {
     color: white;
     font-size: 1.3rem;
     margin-bottom: 0.5rem;
 }

 .portfolio-overlay p {
     color: rgba(255, 255, 255, 0.9);
     font-size: 0.9rem;
 }

 /* Testimonials */
 .testimonials {
     padding: 6rem 2rem;
     background: var(--bg-light);
 }

 .testimonials-container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
 }

 .testimonial-slider {
     display: flex;
     gap: 2rem;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     padding: 2rem 0;
 }

 .testimonial-card {
     min-width: 350px;
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     scroll-snap-align: center;
     transition: transform 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
 }

 .stars {
     color: #fbbf24;
     margin-bottom: 1rem;
 }

 .testimonial-text {
     color: var(--text-light);
     font-style: italic;
     margin-bottom: 1.5rem;
     line-height: 1.8;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--gradient);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: bold;
     font-size: 1.2rem;
 }

 .author-info h4 {
     color: var(--text-dark);
     margin-bottom: 0.2rem;
 }

 .author-info p {
     color: var(--text-light);
     font-size: 0.9rem;
 }

 /* Contact Section */
 .contact {
     padding: 6rem 2rem;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     position: relative;
 }

 .contact-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .contact-content h2 {
     font-size: 2.5rem;
     color: white;
     margin-bottom: 1.5rem;
 }

 .contact-content p {
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 2rem;
     line-height: 1.8;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     color: white;
 }

 .contact-item i {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .contact-form {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     color: var(--text-dark);
     margin-bottom: 0.5rem;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 0.8rem;
     border: 2px solid #e5e7eb;
     border-radius: 8px;
     font-size: 1rem;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--secondary-color);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .submit-btn {
     width: 100%;
     padding: 1rem;
     background: var(--gradient);
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
 }

 /* Footer */
 .footer {
     background: var(--text-dark);
     color: white;
     padding: 3rem 2rem 1rem;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .footer-section h3 {
     margin-bottom: 1rem;
     color: white;
 }

 .footer-section p,
 .footer-section ul {
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.8;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 0.5rem;
 }

 .footer-section ul li a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section ul li a:hover {
     color: white;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: var(--gradient);
     transform: translateY(-3px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: rgba(255, 255, 255, 0.7);
 }

 /* Responsive Design - FIXED */
 @media (max-width: 992px) {
     .nav-container {
         padding: 1rem;
     }

     .logo {
         font-size: 1.3rem;
     }

     .logo i {
         font-size: 1.8rem;
     }
 }

 @media (max-width: 768px) {
     .nav-menu {
         position: fixed;
         left: -100%;
         top: var(--nav-height);
         flex-direction: column;
         background: white;
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
         padding: 2rem 0;
         height: calc(100vh - var(--nav-height));
         overflow-y: auto;
         z-index: 999;
     }

     .nav-menu.active {
         left: 0;
     }

     .hamburger {
         display: flex;
     }

     .hamburger.active span:nth-child(2) {
         opacity: 0;
     }

     .hamburger.active span:nth-child(1) {
         transform: translateY(9px) rotate(45deg);
     }

     .hamburger.active span:nth-child(3) {
         transform: translateY(-9px) rotate(-45deg);
     }

     .hero-container {
         grid-template-columns: 1fr;
         text-align: center;
         padding: 2rem;
     }

     .hero-content h1 {
         font-size: 2.5rem;
     }

     .hero-buttons {
         justify-content: center;
     }

     .hero-image {
         display: none;
     }

     .about-container,
     .contact-container {
         grid-template-columns: 1fr;
     }

     .services-grid,
     .features-grid,
     .portfolio-grid {
         grid-template-columns: 1fr;
     }

     .stats {
         grid-template-columns: 1fr;
     }

     /* Adjust mobile padding */
     .services,
     .about,
     .why-choose,
     .portfolio,
     .testimonials,
     .contact {
         padding: 4rem 1rem;
     }
 }

 /* Animations on Scroll */
 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Loading Animation */
 .loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: white;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     transition: opacity 0.5s ease;
 }

 .loader.hidden {
     opacity: 0;
     pointer-events: none;
 }

 .spinner {
     width: 50px;
     height: 50px;
     border: 5px solid var(--bg-light);
     border-top: 5px solid var(--secondary-color);
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /* Back to Top Button */
 .back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 999;
 }

 .back-to-top.active {
     opacity: 1;
     visibility: visible;
 }

 .back-to-top:hover {
     transform: translateY(-5px);
 }

 /* Container query untuk dotlottie */
.hero-image, .about-image {
    container-type: inline-size;
}

@container (max-width: 400px) {
    dotlottie-wc {
        width: 100%;
        height: 200px;
    }
}

@container (min-width: 401px) and (max-width: 768px) {
    dotlottie-wc {
        width: 100%;
        height: 300px;
    }
}

@container (min-width: 769px) {
    dotlottie-wc {
        width: 600px;
        height: 400px;
    }
} * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-color: #1e3a8a;
     --secondary-color: #3b82f6;
     --accent-color: #60a5fa;
     --text-dark: #1f2937;
     --text-light: #6b7280;
     --bg-light: #f9fafb;
     --white: #ffffff;
     --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     --gradient-white: linear-gradient(135deg, #ffffff 0%, #ebeaeb 100%);
     --nav-height: 80px;
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     line-height: 1.6;
     color: var(--text-dark);
     overflow-x: hidden;
 }

 /* Scrollbar Styling */
 ::-webkit-scrollbar {
     width: 10px;
 }

 ::-webkit-scrollbar-track {
     background: #f1f1f1;
 }

 ::-webkit-scrollbar-thumb {
     background: var(--secondary-color);
     border-radius: 5px;
 }

 /* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     height: var(--nav-height);
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .navbar.scrolled {
     height: 70px;
     background: rgba(255, 255, 255, 0.98);
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 1rem 2rem;
     height: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     align-items: center;
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--primary-color);
     text-decoration: none;
     transition: transform 0.3s ease;
 }

 .logo:hover {
     transform: scale(1.05);
 }

 .logo i {
     margin-right: 0.5rem;
     font-size: 2rem;
     background: var(--gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2rem;
 }

 .nav-link {
     color: var(--text-dark);
     text-decoration: none;
     font-weight: 500;
     position: relative;
     transition: color 0.3s ease;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--secondary-color);
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: 100%;
 }

 .nav-link:hover {
     color: var(--secondary-color);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     z-index: 1001;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background: var(--text-dark);
     margin: 3px 0;
     transition: 0.3s;
 }

 /* Hero Section - FIXED */
 .hero {
     margin-top: var(--nav-height);
     min-height: calc(100vh - var(--nav-height));
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     width: 200%;
     height: 200%;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     animation: float 20s infinite linear;
 }

 @keyframes float {
     0% {
         transform: translate(-50%, -50%) rotate(0deg);
     }

     100% {
         transform: translate(-50%, -50%) rotate(360deg);
     }
 }

 .hero-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 4rem 2rem;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     color: white;
     margin-bottom: 1rem;
     animation: slideInLeft 1s ease;
 }

 .hero-content p {
     font-size: 1.25rem;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 2rem;
     animation: slideInLeft 1s ease 0.2s;
     animation-fill-mode: both;
 }

 .hero-buttons {
     display: flex;
     gap: 1rem;
     animation: slideInLeft 1s ease 0.4s;
     animation-fill-mode: both;
 }

 .btn {
     padding: 1rem 2rem;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-primary {
     background: white;
     color: var(--primary-color);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 }

 .btn-secondary {
     background: transparent;
     color: white;
     border: 2px solid white;
 }

 .btn-secondary:hover {
     background: white;
     color: var(--primary-color);
     transform: translateY(-3px);
 }

 .hero-image {
     position: relative;
     animation: slideInRight 1s ease;
 }

 .hero-image img {
     width: 100%;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 }

 .floating-card {
     position: absolute;
     background: white;
     padding: 1.5rem;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     animation: float-card 3s ease-in-out infinite;
 }

 .floating-card-1 {
     top: -20px;
     right: -20px;
     animation-delay: 0s;
 }

 .floating-card-2 {
     bottom: -20px;
     left: -20px;
     animation-delay: 1.5s;
 }

 @keyframes float-card {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Services Section - FIXED SPACING */
 .services {
     padding: 6rem 2rem;
     background: var(--bg-light);
     position: relative;
     z-index: 10;
 }

 .section-header {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 4rem;
 }

 .section-header h2 {
     font-size: 2.5rem;
     color: var(--text-dark);
     margin-bottom: 1rem;
     position: relative;
     display: inline-block;
 }

 .section-header h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 4px;
     background: var(--gradient);
     border-radius: 2px;
 }

 .section-header p {
     color: var(--text-light);
     font-size: 1.1rem;
     margin-top: 1.5rem;
 }

 .services-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .service-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: var(--gradient);
     transform: scaleX(0);
     transition: transform 0.3s ease;
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .service-icon {
     width: 70px;
     height: 70px;
     background: var(--gradient-white);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-icon {
     transform: rotate(5deg) scale(1.1);
 }

 .service-icon i {
     font-size: 2rem;
     color: white;
 }

 .service-card h3 {
     font-size: 1.5rem;
     color: var(--text-dark);
     margin-bottom: 1rem;
 }

 .service-card p {
     color: var(--text-light);
     line-height: 1.8;
 }

 /* About Section */
 .about {
     padding: 6rem 2rem;
     background: white;
 }

 .about-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .about-image {
     position: relative;
 }

 .about-image img {
     width: 100%;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
 }

 .about-content h2 {
     font-size: 2.5rem;
     color: var(--text-dark);
     margin-bottom: 1.5rem;
 }

 .about-content p {
     color: var(--text-light);
     margin-bottom: 1.5rem;
     line-height: 1.8;
 }

 .stats {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
     margin-top: 2rem;
 }

 .stat-item {
     text-align: center;
     padding: 1.5rem;
     background: var(--bg-light);
     border-radius: 10px;
     transition: transform 0.3s ease;
 }

 .stat-item:hover {
     transform: scale(1.05);
 }

 .stat-number {
     font-size: 2rem;
     font-weight: bold;
     color: var(--secondary-color);
     display: block;
 }

 .stat-label {
     color: var(--text-light);
     font-size: 0.9rem;
     margin-top: 0.5rem;
 }

 /* Why Choose Us */
 .why-choose {
     padding: 6rem 2rem;
     background: var(--bg-light);
 }

 .features-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
 }

 .feature-item {
     text-align: center;
     padding: 2rem;
     background: white;
     border-radius: 15px;
     transition: all 0.3s ease;
 }

 .feature-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
     width: 80px;
     height: 80px;
     margin: 0 auto 1.5rem;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.3s ease;
 }

 .feature-item:hover .feature-icon {
     transform: scale(1.1) rotate(360deg);
 }

 .feature-icon i {
     font-size: 2rem;
     color: white;
 }

 .feature-item h3 {
     font-size: 1.3rem;
     color: var(--text-dark);
     margin-bottom: 1rem;
 }

 .feature-item p {
     color: var(--text-light);
     line-height: 1.6;
 }

 /* Portfolio Section */
 .portfolio {
     padding: 6rem 2rem;
     background: white;
 }

 .portfolio-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .portfolio-item {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
     cursor: pointer;
 }

 .portfolio-item:hover {
     transform: scale(1.05);
 }

 .portfolio-item img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .portfolio-item:hover img {
     transform: scale(1.1);
 }

 .portfolio-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 1.5rem;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .portfolio-item:hover .portfolio-overlay {
     opacity: 1;
 }

 .portfolio-overlay h3 {
     color: white;
     font-size: 1.3rem;
     margin-bottom: 0.5rem;
 }

 .portfolio-overlay p {
     color: rgba(255, 255, 255, 0.9);
     font-size: 0.9rem;
 }

 /* Testimonials */
 .testimonials {
     padding: 6rem 2rem;
     background: var(--bg-light);
 }

 .testimonials-container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
 }

 .testimonial-slider {
     display: flex;
     gap: 2rem;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     padding: 2rem 0;
 }

 .testimonial-card {
     min-width: 350px;
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     scroll-snap-align: center;
     transition: transform 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
 }

 .stars {
     color: #fbbf24;
     margin-bottom: 1rem;
 }

 .testimonial-text {
     color: var(--text-light);
     font-style: italic;
     margin-bottom: 1.5rem;
     line-height: 1.8;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--gradient);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: bold;
     font-size: 1.2rem;
 }

 .author-info h4 {
     color: var(--text-dark);
     margin-bottom: 0.2rem;
 }

 .author-info p {
     color: var(--text-light);
     font-size: 0.9rem;
 }

 /* Contact Section */
 .contact {
     padding: 6rem 2rem;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     position: relative;
 }

 .contact-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .contact-content h2 {
     font-size: 2.5rem;
     color: white;
     margin-bottom: 1.5rem;
 }

 .contact-content p {
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 2rem;
     line-height: 1.8;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     color: white;
 }

 .contact-item i {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .contact-form {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     color: var(--text-dark);
     margin-bottom: 0.5rem;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 0.8rem;
     border: 2px solid #e5e7eb;
     border-radius: 8px;
     font-size: 1rem;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--secondary-color);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .submit-btn {
     width: 100%;
     padding: 1rem;
     background: var(--gradient);
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
 }

 /* Footer */
 .footer {
     background: var(--text-dark);
     color: white;
     padding: 3rem 2rem 1rem;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .footer-section h3 {
     margin-bottom: 1rem;
     color: white;
 }

 .footer-section p,
 .footer-section ul {
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.8;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 0.5rem;
 }

 .footer-section ul li a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section ul li a:hover {
     color: white;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: var(--gradient);
     transform: translateY(-3px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: rgba(255, 255, 255, 0.7);
 }

 /* Responsive Design - FIXED */
 @media (max-width: 992px) {
     .nav-container {
         padding: 1rem;
     }

     .logo {
         font-size: 1.3rem;
     }

     .logo i {
         font-size: 1.8rem;
     }
 }

 @media (max-width: 768px) {
     .nav-menu {
         position: fixed;
         left: -100%;
         top: var(--nav-height);
         flex-direction: column;
         background: white;
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
         padding: 2rem 0;
         height: calc(100vh - var(--nav-height));
         overflow-y: auto;
         z-index: 999;
     }

     .nav-menu.active {
         left: 0;
     }

     .hamburger {
         display: flex;
     }

     .hamburger.active span:nth-child(2) {
         opacity: 0;
     }

     .hamburger.active span:nth-child(1) {
         transform: translateY(9px) rotate(45deg);
     }

     .hamburger.active span:nth-child(3) {
         transform: translateY(-9px) rotate(-45deg);
     }

     .hero-container {
         grid-template-columns: 1fr;
         text-align: center;
         padding: 2rem;
     }

     .hero-content h1 {
         font-size: 2.5rem;
     }

     .hero-buttons {
         justify-content: center;
     }

     .hero-image {
         display: none;
     }

     .about-container,
     .contact-container {
         grid-template-columns: 1fr;
     }

     .services-grid,
     .features-grid,
     .portfolio-grid {
         grid-template-columns: 1fr;
     }

     .stats {
         grid-template-columns: 1fr;
     }

     /* Adjust mobile padding */
     .services,
     .about,
     .why-choose,
     .portfolio,
     .testimonials,
     .contact {
         padding: 4rem 1rem;
     }
 }

 /* Animations on Scroll */
 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Loading Animation */
 .loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: white;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     transition: opacity 0.5s ease;
 }

 .loader.hidden {
     opacity: 0;
     pointer-events: none;
 }

 .spinner {
     width: 50px;
     height: 50px;
     border: 5px solid var(--bg-light);
     border-top: 5px solid var(--secondary-color);
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /* Back to Top Button */
 .back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 999;
 }

 .back-to-top.active {
     opacity: 1;
     visibility: visible;
 }

 .back-to-top:hover {
     transform: translateY(-5px);
 }

 /* Container query untuk dotlottie */
.hero-image, .about-image {
    container-type: inline-size;
}

@container (max-width: 400px) {
    dotlottie-wc {
        width: 100%;
        height: 200px;
    }
}

@container (min-width: 401px) and (max-width: 768px) {
    dotlottie-wc {
        width: 100%;
        height: 300px;
    }
}

@container (min-width: 769px) {
    dotlottie-wc {
        width: 600px;
        height: 400px;
    }
}