/* Package Page Specific Styles */

.package-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.package-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.badge.premium {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.package-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.package-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: white;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price {
    font-size: 3rem;
    font-weight: 800;
}

.period {
    font-size: 1.25rem;
    opacity: 0.8;
}

.best-value {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.package-features {
    padding: var(--section-padding);
    background: var(--surface);
}

.features-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-section {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.feature-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-number {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.feature-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.feature-list {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--success);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.why-choose {
    padding: var(--section-padding);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    margin: 0;
}

.package-process {
    padding: var(--section-padding);
    background: var(--surface);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2.5rem;
    bottom: -2rem;
    width: 2px;
    height: 2rem;
    background: var(--border);
}

.timeline-step .step-number {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
}

.completion-time {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    margin: 2rem auto 0;
}

.package-highlights {
    padding: var(--section-padding);
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.highlights-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlights-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.additional-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.additional-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.additional-features .feature-item i {
    color: #fbbf24;
    width: 1.25rem;
    height: 1.25rem;
}

.highlights-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.highlight-item.package-price {
    background: #10b981;
    color: white;
}

.highlight-item:nth-child(3) {
    background: #3b82f6;
    color: white;
}

.highlight-item:nth-child(4) {
    background: #8b5cf6;
    color: white;
}

.highlight-item:nth-child(5) {
    background: #f59e0b;
    color: white;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.value {
    font-weight: 600;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .package-hero h1 {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        gap: 1rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-step:not(:last-child)::after {
        display: none;
    }
    
    .highlights-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlights-buttons {
        justify-content: center;
    }
}