﻿
.pricing-section .pricing-card {
    background: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(171, 132, 168, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(171, 132, 168, 0.15);
    border-color: rgba(251, 4, 252, 0.2);
}

.pricing-section .plan-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, rgba(251, 4, 252, 0.1), rgba(171, 132, 168, 0.1));
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-section .silver-icon {
    color: #C0C0C0;
}

.pricing-section .gold-icon {
    color: #FFD700;
}

.pricing-section .diamond-icon {
    color: #B9F2FF;
}

.pricing-section .primary-border {
    border-color: rgba(251, 4, 252, 0.8);
}

.pricing-section .primary-bg-hover:hover {
    background-color: rgba(251, 4, 252, 0.8);
    color: white !important;
}

.pricing-section .rounded-button {
    border-radius: 8px;
}

/* Age Group Section Specific Styles */
.age-group-section .glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
}

    .age-group-section .glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
    }

.age-group-section .icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 4, 252, 0.1), rgba(171, 132, 168, 0.1));
}

.age-group-section .text-dark-purple {
    color: #2E0854;
}
a.cta-button {
    text-decoration: none !important;
}
.age-group-section .cta-button {
    background-color: white;
    color: #000000;
    border: 2px solid #fb04fc;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

    .age-group-section .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(171, 132, 168, 0.4);
    }

.age-group-section .feature-item {
    position: relative;
    padding-left: 1.5rem;
}

    .age-group-section .feature-item:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background-color: rgba(251, 4, 252, 0.8);
        border-radius: 50%;
    }
.age-group-section .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    pointer-events: none;
    animation: ripple 600ms ease-out;
}

@keyframes ripple {
    to {
        transform: scale(40);
        opacity: 0;
    }
}

.hover-scale {
    transition: transform 0.3s ease;
}

    .hover-scale:hover {
        transform: scale(1.05);
    }

.playful-shape {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.bg-gradient-section {
    background: linear-gradient(to bottom, #FEE9D1, #FFDFEF);
}

.bg-gradient-card {
    background: linear-gradient(to right, #FABC3F, #E85C0D);
}

.btn-primary-custom {
    background-color: #821131;
    color: white;
}

    .btn-primary-custom:hover {
        background-color: #C7253E;
    }

.btn-secondary-custom {
    background-color: white;
    color: #821131;
}

    .btn-secondary-custom:hover {
        background-color: #FFE8A3;
    }
:root {
    --primary: #fb04fc;
    --secondary: #ab84a8;
    --dark-purple: #422740;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 4, 252, 0.08);
    box-shadow: 0 8px 32px rgba(66, 39, 64, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .glass-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(251, 4, 252, 0.05), rgba(171, 132, 168, 0.05));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .glass-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(66, 39, 64, 0.2);
        border-color: rgba(251, 4, 252, 0.2);
    }

        .glass-card:hover::before {
            opacity: 1;
        }

.icon-circle {
    background: linear-gradient(135deg, rgba(251, 4, 252, 0.12), rgba(171, 132, 168, 0.12));
    border: 2px solid rgba(251, 4, 252, 0.15);
    position: relative;
    width: 6rem;
    height: 6rem;
}

.icon-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 4, 252, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover .icon-circle {
    transform: scale(1.05) rotate(5deg);
    background: linear-gradient(135deg, rgba(251, 4, 252, 0.15), rgba(171, 132, 168, 0.15));
}

    .glass-card:hover .icon-circle::after {
        opacity: 1;
    }

.cta-button {
    background-color: white;
    color: #000000;
    border: 2px solid #fb04fc;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        transform: translateY(5px);
        box-shadow: 0 4px 12px rgba(251, 4, 252, 0.2);
        background-color: white;
        color: #000000;
        border-color: #9c02a6;
    }

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.feature-item {
    position: relative;
    padding-left: 28px;
    transition: transform 0.3s;
}

    .feature-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        border-radius: 50%;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .feature-item:hover::before {
        transform: translateY(-50%) scale(1.2);
        background: linear-gradient(135deg, #422740, var(--secondary));
    }

    .feature-item::after {
        content: '✓';
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        color: white;
        font-weight: bold;
    }

    .feature-item:hover {
        transform: translateX(8px);
    }

.divider-line {
    width: 6rem;
    height: 0.25rem;
    background-color: #D69ADE;
    border-radius: 0.25rem;
    margin: 0 auto;
}
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}
.cta-button {
    position: relative;
    z-index: 10; 
}
