
        /* ============================= */
        /*       Pricing Section         */
        /* ============================= */
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(52, 152, 219, 0.03)"/></svg>');
            background-size: cover;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
            border: none;
            transform: translateY(0);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .pricing-card:hover::before {
            opacity: 1;
        }

        .pricing-card.featured {
            transform: scale(1.05) translateY(-10px);
            z-index: 2;
            border: 2px solid var(--secondary);
            box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2);
        }

        .pricing-card.featured::before {
            opacity: 1;
            height: 6px;
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
            box-shadow: 0 35px 70px rgba(52, 152, 219, 0.25);
        }

        .pricing-header {
            padding: 40px 30px 30px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px 20px 0 0;
        }

        .plan-title {
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark);
            font-size: 1.5rem;
            letter-spacing: -0.5px;
        }

        .price-container {
            margin-bottom: 20px;
            position: relative;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1;
            position: relative;
            display: inline-block;
        }

        .price::before {
            content: '$';
            font-size: 1.5rem;
            position: relative;
            top: -0.8em;
            margin-right: 2px;
            font-weight: 600;
        }

        .period {
            font-size: 1rem;
            color: #6c757d;
            display: block;
            margin-top: 5px;
            font-weight: 500;
        }

        .plan-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            padding: 8px 40px;
            font-size: 0.9rem;
            font-weight: 700;
            transform: rotate(45deg);
            width: 160px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .features {
            padding: 30px;
            list-style: none;
            margin: 0;
        }

        .features li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .features li:last-child {
            border-bottom: none;
        }

        .features li:hover {
            background: rgba(52, 152, 219, 0.03);
            padding-left: 10px;
        }

        .features i {
            color: var(--success);
            margin-right: 15px;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 60px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-toggle span {
            font-weight: 600;
            margin: 0 20px;
            color: var(--dark);
            font-size: 1.1rem;
        }

        .form-check-input {
            width: 60px;
            height: 30px;
            background-color: #dee2e6;
            border: none;
        }

        .form-check-input:checked {
            background-color: var(--secondary);
            border-color: var(--secondary);
        }

        .form-check-input:focus {
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
            border-color: var(--secondary);
        }

        .custom-solutions .card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        /* Additional Pricing Styles */
        .service-category {
            margin-bottom: 80px;
            position: relative;
        }

        .service-category h3 {
            color: var(--dark);
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            font-size: 2.2rem;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .service-category h3::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .pricing-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-bottom: 60px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            overflow: hidden;
            background: white;
        }

        .pricing-table th,
        .pricing-table td {
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .pricing-table th {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
        }

        .pricing-table tr:nth-child(even) {
            background: rgba(52, 152, 219, 0.02);
        }

        .pricing-table .feature {
            text-align: left;
            font-weight: 600;
            color: var(--dark);
        }

        .pricing-table .check {
            color: var(--success);
            font-size: 1.4rem;
        }

        .pricing-table .times {
            color: #e74c3c;
            font-size: 1.4rem;
        }

        .comparison-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 80px 0;
            border-radius: 20px;
            margin: 60px 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .comparison-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* Additional service cards */
        .service-addon {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .service-addon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-addon:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .service-addon:hover::before {
            opacity: 1;
        }

        .service-addon i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-addon h4 {
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
            font-size: 1.4rem;
        }

        .service-addon .price {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 20px 0;
            display: block;
        }

        .service-addon .period {
            color: #6c757d;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Feature comparison */
        .feature-comparison {
            margin: 50px 0;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .feature-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-item:hover {
            background: rgba(52, 152, 219, 0.03);
            padding-left: 25px;
        }

        .feature-name {
            font-weight: 600;
            color: var(--dark);
            font-size: 1.1rem;
        }

        .feature-value {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.1rem;
        }

        /* Hero Section */
        .pricing-hero {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 100px 0 80px;
            text-align: center;
            margin-top: 73px;
        }

        .pricing-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Guarantee Section */
        .guarantee-section .card {
            border-radius: 15px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .pricing-card.featured {
                transform: scale(1);
                margin: 30px 0;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-15px);
            }
            
            .price {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 80px 0;
            }
            
            .pricing-table {
                display: block;
                overflow-x: auto;
            }
            
            .pricing-table th,
            .pricing-table td {
                padding: 15px 10px;
                font-size: 0.9rem;
            }
            
            .pricing-toggle {
                flex-direction: column;
                gap: 15px;
                padding: 25px;
            }
            
            .service-category h3 {
                font-size: 1.8rem;
            }
            
            .price {
                font-size: 2.5rem;
            }
            
            .pricing-hero {
                margin-top: 56px;
                padding: 60px 0 40px;
            }
            
            .pricing-hero h1 {
                font-size: 2.2rem;
            }
            
            .pricing-hero p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .pricing-header {
                padding: 30px 20px 20px;
            }
            
            .features {
                padding: 20px;
            }
            
            .features li {
                padding: 10px 0;
            }
            
            .plan-badge {
                right: -40px;
                padding: 6px 35px;
                font-size: 0.8rem;
                width: 150px;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
                padding: 15px;
            }
            
            .comparison-section {
                padding: 50px 0;
            }
            
            .service-addon {
                padding: 25px;
            }
            
            .service-addon i {
                font-size: 2.5rem;
            }
            
            .service-addon h4 {
                font-size: 1.2rem;
            }
            
            .service-addon .price {
                font-size: 1.8rem;
            }
            
            .pricing-hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-badge {
                font-size: 0.9rem;
                padding: 0.6rem 1.4rem;
            }
        }

        /* Animation for pricing cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pricing-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .pricing-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .pricing-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        /* Hover effect for buttons in pricing cards */
        .pricing-card .btn {
            transition: all 0.3s ease;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            margin: 20px;
            display: inline-block;
            width: calc(100% - 40px);
            text-align: center;
        }

        .pricing-card .btn-primary {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border: none;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .pricing-card .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
        }

        .pricing-card .btn-light {
            background: white;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .pricing-card .btn-light:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
        }