/* Package Info Section Enhanced Styles */
.package-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .addon-service .price {
        font-size: 1.7rem;
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #f59e0b);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.info-card h3 {
    background: linear-gradient(135deg, #3b82f6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    transition: all 0.2s ease;
}

.info-card ul li:hover {
    color: #1e40af;
    padding-left: 2.2rem;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: #3b82f6;
    font-weight: bold;
    font-size: 0.9rem;
    top: 0.8rem;
}

.info-card ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-card ul li:first-child {
    padding-top: 0.5rem;
}

/* Special styling for included items */
.info-card:first-child ul li::before {
    content: '✓';
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    left: 0;
    top: 0.7rem;
}

/* Special styling for excluded items */
.info-card:nth-child(2) ul li::before {
    content: '✗';
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    left: 0;
    top: 0.7rem;
}

/* Special styling for additional services */
.info-card:last-child ul li::before {
    content: '★';
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    left: 0;
    top: 0.7rem;
}

.addon-service {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.addon-service h4 {
    color: #1e40af;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.addon-service .price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.addon-service p:last-child {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}