:root {
            --primary-blue: #2563eb;
            --primary-purple: #9333ea;
            --text-muted: #6b7280;
            --accent-bg: #f8fafc;
        }

        /* Custom gradients */
        .gradient-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        }

        .gradient-text {
            background: linear-gradient(135deg, #60a5fa, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Hero section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('https://get.pxhere.com/photo/women-model-people-girl-photography-physical-fitness-press-up-knee-arm-ball-fitness-professional-abdomen-strength-training-leg-joint-shoulder-sports-thigh-exercise-sports-training-chest-muscle-human-body-competition-event-exercise-equipment-human-leg-sportswear-medicine-ball-sports-equipment-hip-trunk-circuit-training-swiss-ball-individual-sports-yoga-pant-1621392.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            color: white;
        }

        /* Navigation */
        .navbar {
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95) !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.25rem;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        /* Cards */
        .service-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
            z-index: 1;
        }

        .service-card.blue::before {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
        }

        .service-card.green::before {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
        }

        .service-card.orange::before {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
        }

        .service-card .card-content {
            position: relative;
            z-index: 2;
        }

        .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonial-card {
            overflow: hidden;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .testimonial-image {
            aspect-ratio: 1;
            object-fit: cover;
            position: relative;
        }

        .testimonial-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
        }

        /* Pricing cards */
        .pricing-card {
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .pricing-card.popular {
            border: 2px solid var(--primary-blue);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
            position: relative;
        }

        .popular-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            color: white;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Custom sections */
        .section-padding {
            padding: 6rem 0;
        }

        .bg-light-gradient {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
        }

        .star-rating {
            color: #fbbf24;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin: 0 auto 1rem;
        }

        /* Footer */
        .footer {
            background-color: #111827;
            color: #f9fafb;
        }

        .footer a {
            color: rgba(249, 250, 251, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: #f9fafb;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(249, 250, 251, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
            text-decoration: none;
            color: rgba(249, 250, 251, 0.8);
        }

        .social-icon:hover {
            background: rgba(249, 250, 251, 0.2);
            color: #f9fafb;
        }

        /* Form styling */
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        .btn-gradient {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border: none;
            color: white;
            transition: all 0.3s ease;
        }

        .btn-gradient:hover {
            background: linear-gradient(135deg, #1d4ed8, #7c3aed);
            color: white;
            transform: translateY(-1px);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                background-attachment: scroll;
            }
            
            .display-1 {
                font-size: 2.5rem;
            }
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }