/* ===== Pricing - Service Package Cards ===== */
.packages-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

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

.package-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(108, 99, 255, 0.1);
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.package-price {
    margin-bottom: 1rem;
}

.package-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: var(--primary);
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.package-price .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.package-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.package-features li i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
}

.package-footer {
    text-align: center;
}

.package-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.package-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.package-btn.featured-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.package-btn.featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.packages-note {
    text-align: center;
    padding: 2rem;
    background: rgba(108, 99, 255, 0.05);
    border-radius: 16px;
    margin-top: 1rem;
}

.packages-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.packages-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 4rem 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .package-features li {
        font-size: 0.85rem;
    }
}