.header {


    margin: 0;
}

:root {
    --primary: #ffd500;
    --primary-dark: #e6b400;
    --secondary: #ff9a00;
    --accent: #5ce3ba;
    --text-dark: #ee7627;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #222222;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




.pricing-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
    padding: 10px !important;
    border-radius: 0;
}

.pricing-floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 10s infinite ease-in-out;
}

.pricing-floating-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pricing-floating-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.pricing-floating-icon:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Section with Animated Background */
.pricing-hero {

    position: relative;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 50%, #fff3cd 100%);
    min-height: 10vh;
    display: flex;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif; /* Updated from main.css */
    margin-bottom: 0.8em;
    font-weight: 700;


}


.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #fed4002a, transparent 70%);
    animation: rotate 20s linear infinite;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #fee90025, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Removed hero-badge styles */

.pricing-hero-title {

    color: #333333;
    animation: fadeInUp 0.8s ease;
    margin-bottom: 24px;
    
}

.pricing-hero-title span {

    color: #FF9A00;
    animation: fadeInUp 0.8s ease;
   
}



.pricing-hero-description {

    font-size: 1.1rem;
    color: #5C5950;
    max-width: 700px;
    margin: auto 1.5rem;
    animation: fadeInUp 1s ease;
    font-family: 'Roboto';
    font-weight: normal;
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 1rem;
    background: #ffffff;
    position: relative;
    margin-top: -1px;
}

/* Remove the wave divider styles as we're moving it to hero */

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: cardSlideIn 0.6s ease forwards;
    opacity: 0;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Popular Card */
.pricing-card.pricing-popular {
    border: 2px solid var(--secondary);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 154, 0, 0.2);
}

.pricing-card.pricing-popular:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 154, 0, 0.3);
}

.pricing-popular-badge {
    background: linear-gradient(135deg, var(--secondary), #ff6b00);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    position: relative;
    overflow: hidden;
}

.pricing-popular-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Card Header */
.pricing-card-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    position: relative;
}

.pricing-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Price Section */
.pricing-card-price {
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    position: relative;
}

.pricing-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
}

.pricing-was {
    margin-top: 0.4rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
}

.pricing-was-amount {
    font-size: 1.6rem;
    font-weight: 400;
    color: #b0b0b0;
    text-decoration: line-through;
}

.pricing-decimal {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-left: -0.25rem;
}

/* Card Features */
.pricing-card-features {
    padding: 1.5rem;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #4b5563;
    position: relative;
    opacity: 0;
    animation: featureFadeIn 0.5s ease forwards;
}

.pricing-card .pricing-feature-item:nth-child(1) { animation-delay: 0.4s; }
.pricing-card .pricing-feature-item:nth-child(2) { animation-delay: 0.5s; }
.pricing-card .pricing-feature-item:nth-child(3) { animation-delay: 0.6s; }
.pricing-card .pricing-feature-item:nth-child(4) { animation-delay: 0.7s; }
.pricing-card .pricing-feature-item:nth-child(5) { animation-delay: 0.8s; }

@keyframes featureFadeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.pricing-feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(92, 227, 186, 0.1);
    margin-right: 0.75rem;
}

.pricing-feature-icon {
    color: #5ce3ba;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-feature-text {
    flex: 1;
}

/* Card CTA */
.pricing-card-cta {
    padding: 1.5rem;
    margin-top: auto;
    text-align: center;
}

.pricing-btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.pricing-btn-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.pricing-btn-pricing:hover::before {
    left: 100%;
}

.pricing-btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 213, 0, 0.3);
    color: #ffffff;
}

.pricing-card.pricing-popular .pricing-btn-pricing {
    background: linear-gradient(135deg, var(--secondary), #ff6b00);
    color: white;
}

.pricing-card.pricing-popular .pricing-btn-pricing:hover {
    box-shadow: 0 10px 20px rgba(255, 154, 0, 0.4);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 2rem 1rem;
    }

    .pricing-hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .pricing-hero-description {
        font-size: 1rem;
    }

    .pricing-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .pricing-card.pricing-popular {
        transform: scale(1);
    }
}
