
        :root {
            --primary-pink: #ff69b4;
            --soft-pink: #ffb6c1;
            --light-pink: #ffe4e1;
            --purple: #da70d6;
            --white-pink: #fff0f5;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--light-pink) 0%, #fdf2f8 100%);
            color: #333;
        }

        /* Navbar Girly */
        .navbar {
            background: linear-gradient(135deg, var(--primary-pink), var(--purple)) !important;
            box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .navbar-brand i {
            color: #fff;
            margin-right: 10px;
            animation: bounce 2s infinite;
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s;
            margin: 0 5px;
        }

        .nav-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        /* ✅ FIXED: Hero Carousel - MOBILE FRIENDLY */
        .carousel-item {
            height: 70vh; /* Dikurangi untuk mobile */
            min-height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* ✅ Caption SEMUA LAYAR - Mobile Optimized */
        .carousel-caption {
            background: rgba(255,255,255,0.98);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            max-width: 90%;
            margin: 0 auto;
            bottom: 20%; /* Posisi fixed */
            left: 5%;
            right: 5%;
            text-align: center;
            border: 2px solid rgba(255,255,255,0.3);
        }

        /* ✅ Mobile Caption */
        @media (max-width: 768px) {
            .carousel-caption {
                bottom: 15%;
                padding: 1.5rem 1rem;
                max-width: 95%;
                left: 2.5%;
                right: 2.5%;
            }
            
            .carousel-caption h1 {
                font-size: 1.8rem !important;
                line-height: 1.2;
            }
            
            .carousel-caption p {
                font-size: 1.1rem !important;
            }
            
            .carousel-caption .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
                margin: 5px;
            }
        }

        /* Desktop Caption */
        @media (min-width: 769px) {
            .carousel-caption h1 {
                font-size: 2.5rem;
            }
        }

        .carousel-caption h1 {
            font-family: 'Dancing Script', cursive;
            color: var(--primary-pink);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .carousel-caption p {
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .btn-girly {
            background: linear-gradient(45deg, var(--primary-pink), var(--purple));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(255,105,180,0.4);
            text-decoration: none;
            display: inline-block;
        }

        .btn-girly:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255,105,180,0.6);
            color: white !important;
        }

        /* Section Headers */
        .section-title {
            font-family: 'Dancing Script', cursive;
            font-size: 3.5rem;
            color: var(--primary-pink);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #666;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        /* Cards Girly */
        .card-girly {
            background: linear-gradient(135deg, white 0%, var(--white-pink) 100%);
            border: none;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(255,105,180,0.2);
            transition: all 0.4s;
            overflow: hidden;
            position: relative;
        }

        .card-girly::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-pink), var(--purple));
        }

        .card-girly:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(255,105,180,0.3);
        }

        /* Artikel Cards */
        .artikel-card {
            background: linear-gradient(135deg, white 0%, var(--light-pink) 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(255,105,180,0.2);
            transition: all 0.4s;
            height: 100%;
            position: relative;
        }

        .artikel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-pink), var(--purple), var(--soft-pink));
        }

        .artikel-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 60px rgba(255,105,180,0.4);
        }

        .artikel-image {
            height: 200px;
            background: linear-gradient(45deg, var(--primary-pink), var(--purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .artikel-image i {
            z-index: 2;
            position: relative;
        }

        .artikel-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.9);
            color: var(--primary-pink);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .artikel-date {
            color: var(--primary-pink);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .artikel-title {
            color: #333;
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .artikel-title:hover {
            color: var(--primary-pink);
        }

        /* Identitas Card */
        .identitas-card {
            background: linear-gradient(135deg, rgba(255,105,180,0.1), rgba(218,112,214,0.1));
            border: 2px dashed var(--primary-pink);
            border-radius: 25px;
            padding: 2.5rem;
        }

        .info-item i {
            color: var(--primary-pink);
            width: 30px;
            font-size: 1.3rem;
        }

        /* Testimonial */
        .testimonial-card {
            background: linear-gradient(135deg, var(--soft-pink), var(--light-pink));
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            margin-bottom: 2rem;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary-pink);
            font-family: serif;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-pink), var(--purple));
            color: white;
            padding: 1rem 0 1rem;
        }

        /* Animations */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .artikel-card:hover .artikel-image {
            animation: float 0.6s ease-in-out;
        }

        /* Responsive map */
        @media (max-width: 768px) {
            .map-container {
                height: 300px;
                margin-bottom: 1.5rem;
            }
            
            .contact-card {
                padding: 2rem 1.5rem;
                margin-bottom: 1.5rem;
            }
        }
