
        :root {
            --pink: #FF6B9D;
            --purple: #C44569;
            --yellow: #FFC93C;
            --green: #6BCB77;
            --blue: #4D96FF;
            --orange: #FF8C42;
            --dark: #2D3436;
            --light: #F8F9FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 25%, var(--yellow) 50%, var(--green) 75%, var(--blue) 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .floating-shapes {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape1 {
            width: 80px;
            height: 80px;
            background: var(--yellow);
            border-radius: 50%;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape2 {
            width: 120px;
            height: 120px;
            background: var(--green);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape3 {
            width: 100px;
            height: 100px;
            background: var(--blue);
            transform: rotate(45deg);
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(30px) rotate(240deg); }
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-link {
            color: var(--dark) !important;
            font-weight: 600;
            margin: 0 1rem;
            transition: all 0.3s;
            position: relative;
        }

        .nav-link:hover {
            transform: translateY(-2px);
        }

        .btn-creative {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
        }

        .btn-creative:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 6rem 0;
            position: relative;
        }

        .hero-content {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transform: rotate(-2deg);
            transition: transform 0.3s;
        }

        .hero-content:hover {
            transform: rotate(0deg);
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--pink), var(--purple), var(--yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: colorWave 3s ease-in-out infinite;
        }

        @keyframes colorWave {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(30deg); }
        }

        .hero-illustration {
            position: relative;
        }

        .coin {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 201, 60, 0.4);
            animation: bounce 2s infinite;
        }

        .coin1 { top: 10%; left: 20%; animation-delay: 0s; }
        .coin2 { top: 40%; right: 10%; animation-delay: 0.5s; }
        .coin3 { bottom: 20%; left: 30%; animation-delay: 1s; }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Service Cards Creative */
        .service-creative {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-creative::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, var(--pink), transparent);
            transform: rotate(45deg);
            transition: all 0.5s;
            opacity: 0;
        }

        .service-creative:hover::before {
            animation: shine 0.5s ease-in-out;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
        }

        .service-creative:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon-creative {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .service-creative:hover .service-icon-creative {
            transform: rotate(360deg) scale(1.1);
        }

        .icon-pink { background: linear-gradient(135deg, var(--pink), var(--purple)); }
        .icon-yellow { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
        .icon-green { background: linear-gradient(135deg, var(--green), #4CAF50); }
        .icon-blue { background: linear-gradient(135deg, var(--blue), #2196F3); }

        /* Feature Cards */
        .feature-creative {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .feature-creative::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--pink), var(--purple), var(--yellow), var(--green), var(--blue));
            background-size: 200% 100%;
            animation: gradientMove 3s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        .feature-creative:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Testimonial Creative */
        .testimonial-creative {
            background: white;
            border-radius: 25px;
            padding: 2rem;
            margin: 1rem;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .testimonial-creative:hover {
            transform: scale(1.05);
        }

        .testimonial-creative .rating {
            color: var(--yellow);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* FAQ Creative */
        .accordion-creative .accordion-button {
            background: white;
            color: var(--dark);
            font-weight: 600;
            border: none;
            border-radius: 15px !important;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .accordion-creative .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: white;
        }

        .accordion-creative .accordion-item {
            background: transparent;
            border: none;
            margin-bottom: 1rem;
        }

        /* Contact Form Creative */
        .contact-form-creative {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-form-creative::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
            opacity: 0.1;
        }

        .form-control-creative {
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 0.75rem 1rem;
            transition: all 0.3s;
            background: rgba(255,255,255,0.9);
        }

        .form-control-creative:focus {
            border-color: var(--pink);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
        }

        /* Footer Creative */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--pink), var(--purple), var(--yellow), var(--green), var(--blue));
            background-size: 200% 100%;
            animation: gradientMove 3s linear infinite;
        }

        .footer-creative h5 {
            color: var(--yellow);
            margin-bottom: 1.5rem;
        }

        .footer-creative a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-creative a:hover {
            color: var(--pink);
            transform: translateX(5px);
        }

        /* Modal Creative */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

        .modal-header-creative {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: white;
            border: none;
        }

        /* Success Alert */
        .toast-creative {
            background: white !important;
            border-left: 5px solid var(--green) !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }