/* Packages Page Styles */

.stellar-main-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
}

/* Header Section */
.nebula-header-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.nebula-header-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.nebula-header-subtitle {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0;
}

/* Notice Box */
.solar-notice-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    color: #856404;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.solar-notice-box strong {
    color: #d63031;
}

.feature-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Pricing Sections */
.pricing-section {
    text-align: center;
    margin: 50px 0 30px;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-title {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0;
}

/* Pricing Grid */
.quantum-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.celestial-pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.celestial-pricing-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

/* Savings Badge */
.astral-savings-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #28a745;
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.celestial-card-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-top: 10px;
}

.celestial-card-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.celestial-card-price {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1961a0;
    display: block;
}

.celestial-card-details {
    margin-bottom: 30px;
}

.celestial-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.celestial-detail-item:last-child {
    border-bottom: none;
}

.celestial-detail-label {
    color: #666;
    font-weight: 500;
    text-align: left;
}

.celestial-detail-value {
    color: #333;
    font-weight: 600;
    text-align: right;
}

/* CTA Button */
.galactic-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1961a0;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.galactic-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

.meteor-icon {
    margin: 0 8px;
    color: white;
}

/* Final Notice */
.solar-notice-box:last-of-type {
    margin-top: 40px;
    margin-bottom: 0;
    text-align: left;
}

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

@media (max-width: 768px) {
    .stellar-main-container {
        padding: 25px 20px;
        margin: 10px auto;
    }
    
    .nebula-header-title {
        font-size: 2rem;
    }
    
    .nebula-header-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .quantum-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .celestial-pricing-card {
        padding: 25px 20px;
    }
    
    .celestial-card-price {
        font-size: 2.2rem;
    }
    
    .solar-notice-box {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .astral-savings-badge {
        font-size: 0.8rem;
        right: -35px;
        padding: 5px 35px;
    }
}

@media (max-width: 480px) {
    .stellar-main-container {
        padding: 20px 15px;
    }
    
    .nebula-header-title {
        font-size: 1.8rem;
    }
    
    .celestial-card-price {
        font-size: 2rem;
    }
    
    .galactic-cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .celestial-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .celestial-detail-value {
        text-align: left;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.celestial-pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.celestial-pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.celestial-pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}