/* First add the hero section styles at the top */
.bg-primary.text-white {
    padding: 3rem 0;  /* Increased padding to match other pages */
    margin-bottom: 2rem;
}

.bg-primary.text-white h1.display-4 {
    font-size: 2.5rem;  /* Increased to match other pages */
    margin-bottom: 1rem;
    font-weight: 600;
}

.bg-primary.text-white p.lead {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Rest of the existing styles */
:root {
    --primary: #007bff;  /* Updated to match bootstrap primary */
    --primary-light: #4299e1;
    --secondary: #38a169;
    --warning: #d69e2e;
    --platinum: #718096;
    --dark: #2d3748;
    --light: #f7fafc;
}

.package-card {
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.package-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    padding-top: 2rem;
}

.package-card .card-title {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.price-container {
    text-align: center;
    margin: 0.75rem 0;
    position: relative;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 0.25rem;
    opacity: 0.8;
}

.price {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.duration {
    color: #718096;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.card-text {
    color: var(--dark);
    margin: 0.5rem 0 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
}

.feature-list {
    flex-grow: 1;
    margin-bottom: 1rem;
    padding-left: 0;
}

.feature-item {
    margin-bottom: 0.5rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.3;
    padding: 0.25rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.feature-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.included {
    background-color: rgba(56, 161, 105, 0.1);
    color: var(--secondary);
}

.feature-icon.not-included {
    background-color: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
}

/* New button class for pricing packages */
.btn-package {
    width: 100%;
    padding: 1rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-package.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

.add-ons {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.add-ons strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.add-ons ul li {
    color: #718096;
    font-size: 0.8125rem;
    margin-bottom: 0.25rem;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.add-ons ul li:hover {
    background-color: rgba(0, 0, 0, 0.02);
    padding-left: 0.5rem;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: var(--warning);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 0 0 0.75rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

/* Package-specific styles */
.package-card.free {
    background: linear-gradient(to bottom right, #fff, #f7fafc);
}

.package-card.free .price-container {
    color: var(--dark);
}

.package-card.silver {
    background: linear-gradient(to bottom right, #fff, #edf2f7);
    border: 1px solid #e2e8f0;
}

.package-card.silver .price-container {
    color: var(--primary);
}

.package-card.gold {
    background: linear-gradient(to bottom right, #fff, #fefcbf);
    border: 2px solid var(--warning);
}

.package-card.gold .price-container {
    color: var(--warning);
}

.package-card.platinum {
    background: linear-gradient(to bottom right, #fff, #e6fffa);
    border: 2px solid var(--primary);
}

.package-card.platinum .price-container {
    color: var(--platinum);
}

/* Animation keyframes */

/* Responsive adjustments */
@media (max-width: 992px) {
    .bg-primary.text-white h1.display-4 {
        font-size: 2.25rem;
    }

    .bg-primary.text-white p.lead {
        font-size: 1rem;
    }

    .package-card {
        margin-bottom: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .bg-primary.text-white {
        padding: 2rem 0;
    }

    .pricing-section {
        padding: 1.5rem 0;
    }
    
    .package-card {
        height: auto;
        min-height: 300px;
    }
    
    .price {
        font-size: 2.25rem;
    }
    
    .feature-item {
        font-size: 0.8125rem;
    }

    /* Add padding to container on mobile */
    #package-cards-container {
        padding: 0 0.5rem 1rem;
    }
    
    /* Increase spacing between features */
    .feature-item {
        margin-bottom: 0.75rem;
        padding: 0.5rem;
    }
}
