/* Pricing Section Styles */
#pricing-wrap {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}
#pricing-wrap .max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    #pricing-wrap .max-w-7xl {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    #pricing-wrap .max-w-7xl {
        padding: 0 2rem;
    }
}
/* Section Title */
#pricing-wrap .text-center h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    #pricing-wrap .text-center h2 {
        font-size: 2.25rem;
    }
}
#pricing-wrap .text-center p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}
/* Pricing Tabs */
#pricing-wrap .flex.justify-center {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
#pricing-wrap .inline-flex.rounded-md.shadow-sm {
    display: inline-flex;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
#pricing-wrap button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
#pricing-wrap button:focus {
    z-index: 10;
    box-shadow: 0 0 0 2px #6366f1;
}
#pricing-wrap #wordpress-pricing-tab {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
#pricing-wrap #nextjs-pricing-tab {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
/* Tab Active/Inactive States - FIXED */
#pricing-wrap button.tab-active {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
    color: white !important;
}
#pricing-wrap button.tab-inactive {
    background: #f3f4f6 !important;
    color: #4b5563 !important;
}
#pricing-wrap button.tab-inactive:hover {
    background: #e5e7eb !important;
}
/* Pricing Grid Container */
#pricing-wrap .mt-16 {
    margin-top: 4rem;
}
#pricing-wrap .space-y-12 > * + * {
    margin-top: 3rem;
}
#pricing-wrap .lg\:space-y-0 > * + * {
    margin-top: 0;
}
#pricing-wrap .lg\:grid {
    display: grid;
}
#pricing-wrap .lg\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 1024px) {
    #pricing-wrap .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
    
    #pricing-wrap .lg\:gap-x-8 {
        column-gap: 2rem;
    }
}
/* Pricing Cards */
.pricing-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 1.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    transform: translate(30%, -50%) rotate(45deg);
    transform-origin: bottom left;
    width: 120px;
    text-align: center;
}
/* Popular Plan Border */
.popular-plan {
    border: 2px solid #8b5cf6;
    position: relative;
    overflow: hidden;
}
/* Pricing Card Header */
.pricing-card .flex.items-center {
    display: flex;
    align-items: center;
}
.pricing-card .flex-shrink-0 {
    flex-shrink: 0;
    background-color: #e0e7ff;
    border-radius: 0.375rem;
    padding: 0.75rem;
}
.pricing-card .fas {
    color: #4f46e5;
    font-size: 1.25rem;
}
.pricing-card .ml-4 {
    margin-left: 1rem;
}
.pricing-card .text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: #111827;
}
/* Pricing Card Price */
.pricing-card .mt-6 {
    margin-top: 1.5rem;
}
.pricing-card .text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 800;
    color: #111827;
}
.pricing-card .mt-2 {
    margin-top: 0.5rem;
    color: #6b7280;
}
/* Pricing Card Features */
.pricing-card .mt-8 {
    margin-top: 2rem;
    flex-grow: 1;
}
.pricing-card .space-y-4 {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.pricing-card .flex.items-start {
    display: flex;
    align-items: flex-start;
}
/* Fix for check icons - remove background and adjust size */
.pricing-card .flex.items-start .flex-shrink-0 {
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0;
    margin-right: 0.75rem;
    width: auto;
    height: auto;
}
.pricing-card .flex.items-start .fas {
    font-size: 1rem;
    line-height: 1.5;
}
.pricing-card .flex.items-start .flex-shrink-0.text-green-500 .fas {
    color: #10b981;
}
.pricing-card .flex.items-start .flex-shrink-0.text-gray-400 .fas {
    color: #9ca3af;
}
.pricing-card .ml-3 {
    margin-left: 0.75rem;
    color: #374151;
}
.pricing-card .text-gray-500 {
    color: #6b7280;
}
/* Pricing Card CTA */
.pricing-card .mt-8:last-child {
    margin-top: auto;
}
.pricing-card .block.w-full {
    display: block;
    width: 100%;
    margin-top: 30px;
}
.pricing-card .bg-gray-100 {
    background-color: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    padding: 0.75rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #4f46e5;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pricing-card .bg-gray-100:hover {
    background-color: #e5e7eb;
}
.pricing-card .btn-primary {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 0.375rem;
    padding: 0.75rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.pricing-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
/* Custom Quote Section */
#pricing-wrap .bg-indigo-50 {
    background-color: #eef2ff;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
}
#pricing-wrap .md\:flex {
    display: flex;
}
@media (min-width: 768px) {
    #pricing-wrap .md\:flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
#pricing-wrap .md\:w-2\/3 {
    width: 100%;
}
@media (min-width: 768px) {
    #pricing-wrap .md\:w-2\/3 {
        width: 66.666667%;
    }
}
#pricing-wrap .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #111827;
}
#pricing-wrap .mt-2 {
    margin-top: 0.5rem;
    color: #4b5563;
}
#pricing-wrap .mt-4 {
    margin-top: 1rem;
}
@media (min-width: 768px) {
    #pricing-wrap .md\:mt-0 {
        margin-top: 0;
    }
}
#pricing-wrap .btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: white;
    transition: all 0.3s ease;
}
#pricing-wrap .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}
.animate-delay-1 {
    animation-delay: 0.2s;
}
.animate-delay-2 {
    animation-delay: 0.4s;
}
.animate-delay-3 {
    animation-delay: 0.6s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Responsive adjustments */
@media (max-width: 767px) {
    #pricing-wrap .lg\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    #pricing-wrap .bg-indigo-50 {
        padding: 1.5rem;
    }
    
    #pricing-wrap .md\:flex {
        flex-direction: column;
    }
    
    #pricing-wrap .md\:w-2\/3 {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    #pricing-wrap .btn-primary {
        width: 100%;
    }
}